-
Notifications
You must be signed in to change notification settings - Fork 437
chore: robustly ensure containers are stopped #5489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: robustly ensure containers are stopped #5489
Conversation
|
🍕 Here are the new binary sizes!
|
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## mainline #5489 +/- ##
============================================
+ Coverage 70.00% 70.01% +0.01%
============================================
Files 302 302
Lines 46124 46137 +13
Branches 309 309
============================================
+ Hits 32287 32301 +14
Misses 12264 12264
+ Partials 1573 1572 -1 ☔ View full report in Codecov by Sentry. |
dannyrandall
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks great! just a small nit 😊
Made a mistake in #5489 that causes an error message to falsely appear when stopping `run local` because it would call `docker inspect` when it only needed to call `docker ps`. This introduces another function that only runs the latter function, rather than running both, fixing the issue. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the Apache 2.0 License.
Uses
docker psto ensure that the containers are stopped, instead of waiting 1 second and assuming that's enough time to stop them.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the Apache 2.0 License.