Skip to content
Snippets Groups Projects
Commit 70bd343d authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-483: added try_schedule_subtask method which puts a subtask-in-error back...

TMSS-483: added try_schedule_subtask method which puts a subtask-in-error back to defined after an unsuccessfull attempt
parent c5a28412
No related branches found
No related tags found
1 merge request!357Resolve TMSS-483
......@@ -327,6 +327,18 @@ class TMSSsession(object):
returns the scheduled subtask upon success, or raises."""
return self.get_path_as_json_object('subtask/%s/schedule' % subtask_id)
def try_schedule_subtask(self, subtask_id: int) -> {}:
"""try to schedule the subtask for the given subtask_id.
returns the scheduled subtask upon success.
resets the subtask's state if it ends up in error state."""
try:
return self.get_path_as_json_object('subtask/%s/schedule' % subtask_id)
except Exception as e:
logger.error(str(e))
subtask = self.get_subtask(subtask_id)
if subtask['state_value'] == 'error':
self.set_subtask_status(subtask_id, 'defined')
def get_subtask_progress(self, subtask_id: int) -> {}:
"""get the progress [0.0, 1.0] of a running subtask.
returns a dict with the 'id' and 'progress', or raises."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment