Skip to content

Commit

Permalink
Fix wavepostbndpntbll data dependency (NOAA-EMC#1888)
Browse files Browse the repository at this point in the history
Update the data dependency path for the wavepostbndpntbll
job to use the ATMOS/atmos subfolder instead of WAVE/wave
for the atm.logf file it needs to fire off.

Refs NOAA-EMC#1887
  • Loading branch information
KateFriedman-NOAA authored Sep 26, 2023
1 parent bb1e561 commit e886e8a
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 @@ -658,8 +658,8 @@ def wavepostbndpnt(self):

def wavepostbndpntbll(self):
deps = []
wave_hist_path = self._template_to_rocoto_cycstring(self._base["COM_WAVE_HISTORY_TMPL"])
data = f'{wave_hist_path}/{self.cdump}[email protected]'
atmos_hist_path = self._template_to_rocoto_cycstring(self._base["COM_ATMOS_HISTORY_TMPL"])
data = f'{atmos_hist_path}/{self.cdump}[email protected]'
dep_dict = {'type': 'data', 'data': data}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep=deps)
Expand Down

0 comments on commit e886e8a

Please sign in to comment.