We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a9ac4c commit 37392d8Copy full SHA for 37392d8
1 file changed
libraries/cloudharness-common/cloudharness/workflows/operations.py
@@ -310,8 +310,8 @@ def execute(self, timeout=None):
310
time.sleep(POLLING_WAIT_SECONDS)
311
log.debug(f"Polling argo workflow {self.persisted.name}")
312
self.persisted = argo.get_workflow(self.persisted.name)
313
- log.debug(f"Polling succeeded for {
314
- self.persisted.name}. Current phase: {self.persisted.status}")
+ log.debug(f"Polling succeeded for \
+ {self.persisted.name}. Current phase: {self.persisted.status}")
315
if timeout and time.time() - start_time > timeout:
316
log.error("Timeout exceeded while polling for results")
317
return self.persisted
0 commit comments