Skip to content

Commit

Permalink
Fix ocnpost detection for gfs free-forecast
Browse files Browse the repository at this point in the history
The task list for the free-forecast was checking against a list of
apps that did not include S2SA to determine whether ocnpost is
included. That check is now changed to check on do_ocean rather than
looking at the app directly.

Refs: #1593
  • Loading branch information
WalterKolczynski-NOAA committed Jun 27, 2023
1 parent 05b7304 commit 086333a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/applications/gfs_forecast_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_task_names(self):
if self.do_atm:
tasks += ['post']

if self.model_app in ['S2S', 'S2SW', 'S2SWA', 'NG-GODAS']:
if self.do_ocean:
tasks += ['ocnpost']

if self.do_atm:
Expand Down

0 comments on commit 086333a

Please sign in to comment.