From e0a9e5b9b67078ef6e14f46a6cd64aef3ade2860 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Fri, 2 Aug 2024 04:04:58 -0500 Subject: [PATCH] Fix erroneous cdump insertion When the cdump conversion to run was merged into #2784, a new self.cdump added in that PR was not updated. --- workflow/rocoto/gfs_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/rocoto/gfs_tasks.py b/workflow/rocoto/gfs_tasks.py index b2b121ebc1..960a7548ab 100644 --- a/workflow/rocoto/gfs_tasks.py +++ b/workflow/rocoto/gfs_tasks.py @@ -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')