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
Problem manifest in aiidateam/aiida-hyperqueue#30
When the job_id of JobInfo is in int format, the job in joblist is not parsed into correct state. The job in QUEUED is not wait but continuously moving to finish state.
The bug came from job_id is cast into str in _get_jobs_with_scheduler which return List[str] for job_id list but in _get_jobs_from_scheduler may have job_id in any hashable type.
The text was updated successfully, but these errors were encountered:
Problem manifest in aiidateam/aiida-hyperqueue#30
When the
job_id
ofJobInfo
is in int format, the job in joblist is not parsed into correct state. The job in QUEUED is not wait but continuously moving to finish state.The bug came from job_id is cast into
str
in_get_jobs_with_scheduler
which returnList[str]
for job_id list but in_get_jobs_from_scheduler
may havejob_id
in any hashable type.The text was updated successfully, but these errors were encountered: