Skip to content

Commit

Permalink
Merge pull request #392 from lebonez/patch-2
Browse files Browse the repository at this point in the history
SLURM_NOOP should be a bool
  • Loading branch information
aebruno authored Apr 27, 2022
2 parents ca05f7e + 879b874 commit 38e0424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coldfront/config/plugins/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
]

SLURM_SACCTMGR_PATH = ENV.str('SLURM_SACCTMGR_PATH', default='/usr/bin/sacctmgr')
SLURM_NOOP = ENV.str('SLURM_NOOP', False)
SLURM_NOOP = ENV.bool('SLURM_NOOP', False)
SLURM_IGNORE_USERS = ENV.list('SLURM_IGNORE_USERS', default=['root'])
SLURM_IGNORE_ACCOUNTS = ENV.list('SLURM_IGNORE_ACCOUNTS', default=[])

0 comments on commit 38e0424

Please sign in to comment.