Skip to content

Commit

Permalink
Add ISO dag [#26]
Browse files Browse the repository at this point in the history
  • Loading branch information
danijanos committed Sep 20, 2019
1 parent b9793a8 commit 4cb07f1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion airflow/dags/osa-av-workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,20 @@ def retrigger_dag(context, dag_run_obj):
return None


# DAGS
# DAGS:
osa_av_workflow = DAG(
dag_id='osa-av-workflow',
description='Main DAG for the AV preservation workflow',
default_args=default_args,
schedule_interval=None,
catchup=False)

osa_av_workflow_for_isos = DAG(
dag_id='osa-av-workflow-isos',
description='Main DAG for the AV preservation workflow with iso files',
default_args=default_args,
schedule_interval=None,
catchup=False)

# Tasks
collect_files = PythonOperator(
Expand Down

0 comments on commit 4cb07f1

Please sign in to comment.