Skip to content

Commit

Permalink
Correct prod dependency
Browse files Browse the repository at this point in the history
Missed updating one of the dependencies from task to metatask.
  • Loading branch information
WalterKolczynski-NOAA committed Aug 7, 2024
1 parent b376646 commit 7de7759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/gefs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def _atmosoceaniceprod(self, component: str):
if component in ['ocean']:
dep_dict = {'type': 'data', 'data': data, 'age': 120}
deps.append(rocoto.add_dependency(dep_dict))
dep_dict = {'type': 'task', 'name': 'fcst_mem#member#'}
dep_dict = {'type': 'metatask', 'name': 'fcst_mem#member#'}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep=deps, dep_condition='or')
elif component in ['ice']:
Expand Down

0 comments on commit 7de7759

Please sign in to comment.