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 176308b commit 805b358Copy full SHA for 805b358
reframe/core/schedulers/oar.py
@@ -124,10 +124,6 @@ def submit(self, job):
124
job._submit_time = time.time()
125
126
def cancel(self, job):
127
- time_from_submit = time.time() - job.submit_time
128
- if time_from_submit < OAR_CANCEL_DELAY:
129
- time.sleep(OAR_CANCEL_DELAY - time_from_submit)
130
-
131
_run_strict(f'oardel {job.jobid}', timeout=self._submit_timeout)
132
job._cancelled = True
133
0 commit comments