Skip to content

Commit

Permalink
Fix kubernetesmgr.py JobStatus bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Feb 18, 2022
1 parent 5317e84 commit cad50d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pman/kubernetesmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_job_info(self, job) -> JobInfo:
message = condition.message
status = JobStatus.finishedWithError
break
if status == 'notstarted':
if status == JobStatus.notstarted:
if completion_time and succeeded:
message = 'finished'
status = JobStatus.finishedSuccessfully
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name = 'pman',
version = '3.5.0',
version = '3.5.1',
description = 'Process Manager',
long_description = readme,
author = 'FNNDSC Developers',
Expand Down

0 comments on commit cad50d4

Please sign in to comment.