You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The id field of JobInfo is expecting a str, but the id read from JSON is auto converted to int. This cause the job immediately finished and parsed but not actually running.
The text was updated successfully, but these errors were encountered:
fixesaiidateam#29
The id field of JobInfo is expecting a str. In aiidateam#24 when parsing JSON
output of `hq job list` the json loads will use the int for the id
parsed directly. Wrong type causes the subtle issue that when job is
waiting it not get into QUEUED state, but immediatly finished and get
nothing to parse from output.
fixes#29
The id field of JobInfo is expecting a str. In #24 when parsing JSON
output of `hq job list` the json loads will use the int for the id
parsed directly. Wrong type causes the subtle issue that when job is
waiting it not get into QUEUED state, but immediatly finished and get
nothing to parse from output.
The
id
field ofJobInfo
is expecting a str, but the id read from JSON is auto converted to int. This cause the job immediately finished and parsed but not actually running.The text was updated successfully, but these errors were encountered: