Skip to content

Commit

Permalink
Merge remote-tracking branch 'emc/develop' into feature/simplify_res
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHuber-NOAA committed Jul 3, 2024
2 parents 112b91b + 8215ae6 commit 791777c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_resource(self, task_name):
native = '--export=NONE'
if task_config['RESERVATION'] != "":
native += '' if task_name in Tasks.SERVICE_TASKS else ' --reservation=' + task_config['RESERVATION']
if task_config['CLUSTERS'] != "":
if task_config['CLUSTERS'] not in ["", '@CLUSTERS@']:
native += ' --clusters=' + task_config['CLUSTERS']

queue = task_config['QUEUE_SERVICE'] if task_name in Tasks.SERVICE_TASKS else task_config['QUEUE']
Expand Down

0 comments on commit 791777c

Please sign in to comment.