Skip to content

Commit

Permalink
[FIX} Do not delete the Pod to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCinquini committed Mar 4, 2024
1 parent 18b4b4e commit 75e0667
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions airflow/dags/cwl_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
dag_id="cwl-dag",
description="DAG to execute a generic CWL workflow",
tags=["cwl", "unity-sps", "docker"],
is_paused_upon_creation=True,
is_paused_upon_creation=False,
catchup=False,
schedule_interval=None,
max_active_runs=1,
Expand All @@ -66,7 +66,8 @@
cwl_task = KubernetesPodOperator(
namespace=POD_NAMESPACE,
name="cwl-task",
is_delete_operator_pod=True,
# FIXME
is_delete_operator_pod=False,
hostnetwork=False,
startup_timeout_seconds=1000,
get_logs=True,
Expand Down

0 comments on commit 75e0667

Please sign in to comment.