-
Notifications
You must be signed in to change notification settings - Fork 94
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
Don't delay reload of active tasks. #1835
Conversation
5044375
to
61f7950
Compare
61f7950
to
f1daaf3
Compare
@@ -821,7 +844,6 @@ def job_submission_failed(self): | |||
msg = "submission failed, %s (after %s)" % (delay_msg, timeout_str) | |||
self.log(INFO, "job(%02d) " % self.submit_num + msg) | |||
self.summary['latest_message'] = msg | |||
self.summary['waiting for reload'] = self.reconfigure_me |
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.
not used
34e562f
to
f146028
Compare
a5f11df
to
5e02e58
Compare
Tests pass here. @matthewrmshin - please review/assign. |
Looks OK. Tests OK (with and without global configuration) in my environment. @arjclark please review. |
Looks OK to me. No problems from the test-battery in my environment. @matthewrmshin informs me he's done some manual testing too to confirm change is working. |
Close #1818 - simplify reload logic by not delaying reload of active tasks. Instead just log a warning that the job is already active under the old settings.
Now preserves task outputs across the reload, so there's no need for the delayed reload any more even if task outputs are changed in the reloaded suite definition.