We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b186419 commit c4c6868Copy full SHA for c4c6868
worker.py
@@ -321,7 +321,10 @@ def run(self):
321
# things like runjob timeouts and makefile errors to be
322
# normal termination and doesn't reschedule the job.
323
elapsed_secs = time.time() - start_time
324
- self.log.info("Success: job %s:%d finished after %d seconds" % (self.job.name, self.job.id, elapsed_secs))
+ self.log.info(
325
+ "Success: job %s:%d finished after %d seconds"
326
+ % (self.job.name, self.job.id, elapsed_secs)
327
+ )
328
329
# Move the job from the live queue to the dead queue
330
# with an explanatory message
0 commit comments