Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nomad-lab
nomad-FAIR
Commits
bb63ebe1
Commit
bb63ebe1
authored
Mar 15, 2019
by
Markus Scheidgen
Browse files
Added to string methods for processing classes. [skip ci]
parent
53ef0289
Pipeline
#45318
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
nomad/processing/data.py
View file @
bb63ebe1
...
...
@@ -290,6 +290,9 @@ class Calc(Proc):
log_data
.
update
(
log_size
=
self
.
upload_files
.
archive_log_file_object
(
self
.
calc_id
).
size
)
def
__str__
(
self
):
return
'calc proc calc_id=%s upload_id%s'
%
(
self
.
calc_id
,
self
.
upload_id
)
class
Upload
(
Proc
):
"""
...
...
@@ -641,3 +644,6 @@ class Upload(Proc):
logger
.
info
(
'prepared user metadata'
)
return
result
def
__str__
(
self
):
return
'upload proc upload_id%s'
%
self
.
upload_id
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment