Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
logging stop jobs error in the integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita committed Oct 18, 2023
1 parent 2ef7b2b commit 1301259
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/integration-tests/integration-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,10 @@ def check_jobs_impl() -> Tuple[bool, str, bool]:

for job_id in to_remove:
if stop_on_complete_check:
self.stop_job(jobs[job_id])
try:
self.stop_job(jobs[job_id])
except Exception as err:
return (True, str(err), False)
del jobs[job_id]

msg = "waiting on: %s" % ",".join(
Expand Down

0 comments on commit 1301259

Please sign in to comment.