Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuram authored Nov 10, 2022
2 parents 50942d3 + 871bcea commit 505cd32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion balsam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from balsam.util import config_root_logger

__version__ = "0.7.0.a18"
__version__ = "0.7.0.a19"
config_root_logger()
2 changes: 1 addition & 1 deletion balsam/_api/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was auto-generated via /Users/turam/opt/miniconda3/bin/python balsam/schemas/api_generator.py
# [git rev 8578c92]
# [git rev 3fcc4a5]
# Do *not* make changes to the API by changing this file!

import datetime
Expand Down
2 changes: 2 additions & 0 deletions balsam/platform/scheduler/pbs_sched.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ def _parse_status_output(raw_output: str) -> Dict[int, SchedulerJobStatus]:
for jobidstr, job in j["Jobs"].items():
status = {}
try:
# array jobs can have a trailing "[]"; remove this
jobidstr = jobidstr.replace("[]", "")
jobid = int(jobidstr.split(".")[0])
status["scheduler_id"] = jobid
except ValueError:
Expand Down

0 comments on commit 505cd32

Please sign in to comment.