Skip to content

Commit

Permalink
Fix incorrect ocean history tmpl during workflow generation (#1533)
Browse files Browse the repository at this point in the history
The trailing '_TMPL' was accidentally ommited from the ocean history
template used during workflow generation.

Refs: #1532
  • Loading branch information
WalterKolczynski-NOAA authored Apr 26, 2023
1 parent 789ae97 commit b5d173f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/workflow_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def ocnanalprep(self):

dump_suffix = self._base["DUMP_SUFFIX"]
dmpdir = self._base["DMPDIR"]
ocean_hist_path = self._template_to_rocoto_cycstring(self._base["COM_OCEAN_HISTORY"])
ocean_hist_path = self._template_to_rocoto_cycstring(self._base["COM_OCEAN_HISTORY_TMPL"])

deps = []
data = f'{ocean_hist_path}/gdas.t@Hz.ocnf009.nc'
Expand Down

0 comments on commit b5d173f

Please sign in to comment.