Loading lib/galaxy/jobs/handler.py +2 −2 Original line number Diff line number Diff line Loading @@ -614,8 +614,8 @@ class JobHandlerQueue(Monitors): if started is not None and finished is not None: time_spent += finished - started else: log.warning( f"Unable to calculate time spent for job {job.id}; started: {started}, finished: {finished}") log.warning("Unable to calculate time spent for job %s; started: %s, finished: %s", job.id, started, finished) if time_spent > self.app.job_config.limits.total_walltime["delta"]: return JOB_USER_OVER_TOTAL_WALLTIME, job_destination Loading Loading
lib/galaxy/jobs/handler.py +2 −2 Original line number Diff line number Diff line Loading @@ -614,8 +614,8 @@ class JobHandlerQueue(Monitors): if started is not None and finished is not None: time_spent += finished - started else: log.warning( f"Unable to calculate time spent for job {job.id}; started: {started}, finished: {finished}") log.warning("Unable to calculate time spent for job %s; started: %s, finished: %s", job.id, started, finished) if time_spent > self.app.job_config.limits.total_walltime["delta"]: return JOB_USER_OVER_TOTAL_WALLTIME, job_destination Loading