Skip to content

Commit

Permalink
Revert inadvertent cycledef change for prep and atmanlinit
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Sep 17, 2024
1 parent a940946 commit f6141f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def prep(self):
dependencies = rocoto.create_dependency(dep_condition='and', dep=deps)

cycledef = self.run
if self.run in ['gfs'] and gfs_enkf and self.interval_gfs == 6:
if self.run in ['gfs'] and gfs_enkf and self.interval_gfs != 6:
cycledef = 'gdas'

resources = self.get_resource('prep')
Expand Down Expand Up @@ -339,7 +339,7 @@ def atmanlinit(self):
gfs_enkf = True if self.app_config.do_hybvar and 'gfs' in self.app_config.eupd_runs else False

cycledef = self.run
if self.run in ['gfs'] and gfs_enkf and interval_gfs == 6:
if self.run in ['gfs'] and gfs_enkf and interval_gfs != 6:
cycledef = 'gdas'

resources = self.get_resource('atmanlinit')
Expand Down

0 comments on commit f6141f8

Please sign in to comment.