Skip to content

Commit

Permalink
import airflow.operators.python
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jul 1, 2024
1 parent bae2b19 commit f04ad26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions echo-side/dags/monitor.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from airflow import DAG
# from airflow.operators.docker_operator import DockerOperator
from airflow.providers.cncf.kubernetes.operators.pod import KubernetesPodOperator
from airflow.utils.dates import days_ago
from airflow.models import Variable
from datetime import timedelta
from airflow.operators.python_operator import PythonOperator
from airflow.operators.python import PythonOperator

from kubernetes.client import models
from datetime import datetime
Expand Down Expand Up @@ -68,6 +67,7 @@ def compare_csv_file_lists(log_folder):
task_id='compare_csv_file_lists',
python_callable=compare_csv_file_lists,
dag=dag,
op_args=['/lsst-backup-logs'],
)

# Set the task sequence
Expand Down

0 comments on commit f04ad26

Please sign in to comment.