Skip to content

Commit

Permalink
add underscore in task names
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewEichmann-NOAA committed Oct 16, 2024
1 parent ddc5445 commit 8024e5f
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 @@ -670,9 +670,9 @@ def marineanlletkf(self):
ocean_hist_path = self._template_to_rocoto_cycstring(self._base["COM_OCEAN_HISTORY_TMPL"], {'RUN': 'gdas'})

deps = []
dep_dict = {'type': 'metatask', 'name': f'{self.run}fcst', 'offset': f"-{timedelta_to_HMS(self._base['cycle_interval'])}"}
dep_dict = {'type': 'metatask', 'name': f'{self.run}_fcst', 'offset': f"-{timedelta_to_HMS(self._base['cycle_interval'])}"}
deps.append(rocoto.add_dependency(dep_dict))
dep_dict = {'type': 'task', 'name': f'{self.run}prepoceanobs'}
dep_dict = {'type': 'task', 'name': f'{self.run}_prepoceanobs'}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep_condition='and', dep=deps)

Expand Down

0 comments on commit 8024e5f

Please sign in to comment.