Skip to content

Commit

Permalink
#1115 bashoperator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwol committed Dec 17, 2024
1 parent 2b19c9a commit 86668b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dags/log_cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
AIRFLOW_TASKS_LIB = os.path.join(AIRFLOW_TASKS, 'lib')

from airflow.configuration import conf
from airflow.operators.bash_operator import BashOperator
from airflow.operators.bash import BashOperator
from airflow.models import Variable

dag_name = 'log_cleanup'
Expand Down
2 changes: 1 addition & 1 deletion dags/pull_interventions_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pendulum
from airflow import DAG
from datetime import timedelta
from airflow.operators.bash_operator import BashOperator
from airflow.operators.bash import BashOperator
from airflow.models import Variable

repo_path = os.path.abspath(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
Expand Down

0 comments on commit 86668b5

Please sign in to comment.