Browse Source

minor fix

Avik Datta 4 years ago
parent
commit
7da0bc35fd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dags/dag8_copy_ongoing_seqrun.py

+ 2 - 2
dags/dag8_copy_ongoing_seqrun.py

@@ -126,7 +126,7 @@ def copy_seqrun_manifest_file(**context):
     raise
 
 
-def check_and_reset_manifest_file(**context):
+def reset_manifest_file(**context):
   """
   A function for checking existing files and resetting the manifest json with new files
   """
@@ -337,7 +337,7 @@ with dag:
                 'run_index_number':i,
                 'seqrun_id_pull_task_ids':'generate_seqrun_list',
                 'local_seqrun_path':Variable.get('hpc_seqrun_path')},
-        python_callable=check_and_reset_manifest_file)
+        python_callable=reset_manifest_file)
     ## TASK
     decide_copy_branch = \
       BranchPythonOperator(