Skip to content

Commit

Permalink
Fix another dependency bug
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Aug 8, 2024
1 parent e7ebe21 commit 7179c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ def _atmosoceaniceprod(self, component: str):
data = f'{history_path}/{history_file_tmpl}'
dep_dict = {'type': 'data', 'data': data, 'age': 120}
deps.append(rocoto.add_dependency(dep_dict))
dep_dict = {'type': 'task', 'name': f'{self.run}fcst'}
dep_dict = {'type': 'metatask', 'name': f'{self.run}fcst'}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep=deps, dep_condition='or')

Expand Down

0 comments on commit 7179c00

Please sign in to comment.