Skip to content

Commit

Permalink
Fix erroneous cdump addition (#2803)
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Aug 2, 2024
1 parent 4987704 commit b73b1fd
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 @@ -1104,7 +1104,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.cdump}fcst'}
dep_dict = {'type': 'task', '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 b73b1fd

Please sign in to comment.