You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Migration guide
The largest change of this release is switch to fallible API (instead of panics)
the easiest way to use unwrap or expect for all testcontainers operations.
or you can cast error if your tests are already Result based
The Image::exec_after_start method returns a Result, so if you have an implementation of Image that uses exec_after_start, it's important to handle possible errors (e.g required port not found)