Open
Conversation
c08d6eb to
e59cad6
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #448 +/- ##
==========================================
+ Coverage 76.24% 76.48% +0.23%
==========================================
Files 53 53
Lines 9325 9317 -8
==========================================
+ Hits 7110 7126 +16
+ Misses 2215 2191 -24 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mostly cleanup, with subtle inner API call changes that shouldn't affect users
Major changes
7d730eb harmonize behavior when has/hasnot_event
When
have_eventsisFalse, after reaching timeout, the previous code callsKillon the filteredcurrent_vms = failed_domains(current_vms)current_vms = failed_domains(current_vms), whereas if it isTrueit callsKillon allthis_round_domains.The commit harmonises this behavior to always filter.
This slightly changes the API calls, as seen in the modified utests.
a37814a cleanup dead code around
args.waitThe current code does
From this point onward, if
not args.wait, either we exited viaerror, orremaining_domainsis empty (and then wereturnimmediately after).This makes most following code depending on
args.waitobsolete.Minor changes
7d730eb use a single asyncio interface for both cases where we do and don't have events
c08d6eb add utests
Note: this particular commit is mostly GenAI. Tests were reviewed manually.