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

TMSS-261: logging on setting subtask status. Added method get_subtasks_in_same_scheduling_unit

parent 3bff9928
No related branches found
No related tags found
1 merge request!409Resolve TMSS-261
...@@ -130,11 +130,13 @@ class TMSSsession(object): ...@@ -130,11 +130,13 @@ class TMSSsession(object):
if status == 'cancelling': if status == 'cancelling':
json_doc['do_cancel'] = json_doc['stop_time'] json_doc['do_cancel'] = json_doc['stop_time']
logger.debug("setting subtask id=%s to status=%s", subtask_id, status)
response = self.session.patch(url='%s/subtask/%s/' % (self.api_url, subtask_id), response = self.session.patch(url='%s/subtask/%s/' % (self.api_url, subtask_id),
json=json_doc, json=json_doc,
params={'format':'json'}) params={'format':'json'})
if response.status_code >= 200 and response.status_code < 300: if response.status_code >= 200 and response.status_code < 300:
logger.info("updated subtask id=%s to status=%s status_code=%s url=%s", subtask_id, status, response.status_code, response.url)
return json.loads(response.content.decode('utf-8')) return json.loads(response.content.decode('utf-8'))
content = response.content.decode('utf-8') content = response.content.decode('utf-8')
...@@ -332,6 +334,14 @@ class TMSSsession(object): ...@@ -332,6 +334,14 @@ class TMSSsession(object):
returns a dict with the 'id' and 'progress', or raises.""" returns a dict with the 'id' and 'progress', or raises."""
return self.get_path_as_json_object('subtask/%s/get_progress' % subtask_id) return self.get_path_as_json_object('subtask/%s/get_progress' % subtask_id)
def get_subtasks_in_same_scheduling_unit(self, subtask: dict) -> []:
"""get all subtasks in the same scheduling_unit for the given subtask.
returns a list of subtask-dicts upon success, or raises."""
task_blueprint = self.get_url_as_json_object(subtask['task_blueprint'])
scheduling_unit_blueprint = self.get_url_as_json_object(task_blueprint['scheduling_unit_blueprint'])
subtasks = self.get_url_as_json_object(full_url=scheduling_unit_blueprint['url'].rstrip('/') + '/subtasks')
return subtasks
def get_setting(self, setting_name: str) -> {}: def get_setting(self, setting_name: str) -> {}:
"""get the value of a TMSS setting. """get the value of a TMSS setting.
returns the setting value upon success, or raises.""" returns the setting value upon success, 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