We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89d322 commit 8e91e94Copy full SHA for 8e91e94
reframe/core/schedulers/slurm.py
@@ -432,7 +432,8 @@ def _cancel_if_pending_too_long(self, job):
432
if t_pending >= job.max_pending_time:
433
self.log(f'maximum pending time for job exceeded; cancelling it')
434
self.cancel(job)
435
- job._exception = JobError('maximum pending time exceeded', job.jobid)
+ job._exception = JobError('maximum pending time exceeded',
436
+ job.jobid)
437
438
def _cancel_if_blocked(self, job, reasons=None):
439
if (job.is_cancelling or not slurm_state_pending(job.state)):
0 commit comments