Skip to content

Commit

Permalink
Issue #21 - remove unneeded logic from partition check
Browse files Browse the repository at this point in the history
  • Loading branch information
KateFriedman-NOAA committed Mar 25, 2020
1 parent 4acc80f commit f4ee509
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ush/rocoto/setup_expt.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def edit_baseconfig():
account = 'GFS-DEV'
queue = 'dev'
queue_arch = 'dev_transfer'
if partition is not None and partition in ['3p5']:
if partition in ['3p5']:
queue = 'dev2'
queue_arch = 'dev2_transfer'
elif machine is 'WCOSS_C':
Expand Down
2 changes: 1 addition & 1 deletion ush/rocoto/setup_expt_fcstonly.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def edit_baseconfig():
account = 'GFS-DEV'
queue = 'dev'
queue_arch = 'dev_transfer'
if partition is not None and partition in ['3p5']:
if partition in ['3p5']:
queue = 'dev2'
queue_arch = 'dev2_transfer'
elif machine is 'WCOSS_C':
Expand Down

0 comments on commit f4ee509

Please sign in to comment.