Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
32eac6b2
Commit
32eac6b2
authored
4 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
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
!409
Resolve TMSS-261
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/TMSS/client/lib/tmss_http_rest_client.py
+10
-0
10 additions, 0 deletions
SAS/TMSS/client/lib/tmss_http_rest_client.py
with
10 additions
and
0 deletions
SAS/TMSS/client/lib/tmss_http_rest_client.py
+
10
−
0
View file @
32eac6b2
...
@@ -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.
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment