Skip to content

Commit

Permalink
Remove unused references to tulflow tasks (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
sensei100 authored Dec 18, 2023
1 parent 3a4d317 commit 080d450
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion cob_datapipeline/boundwith_move_alma_sftp_to_s3_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from datetime import datetime, timedelta
import logging
import pendulum
from tulflow import tasks
import airflow
from airflow.models import Variable
from airflow.providers.sftp.hooks.sftp import SFTPHook
Expand Down
3 changes: 1 addition & 2 deletions cob_datapipeline/catalog_move_alma_sftp_to_s3_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from datetime import datetime, timedelta
import logging
import pendulum
from tulflow import tasks
import airflow
from airflow.models import Variable
from airflow.providers.sftp.hooks.sftp import SFTPHook
Expand All @@ -27,7 +26,7 @@
"on_failure_callback": [slackpostonfail],
"on_success_callback": [slackpostonsuccess],
"email_on_retry": False,
"on_failure_callback": tasks.execute_slackpostonfail,
"on_failure_callback": [slackpostonfail],
"retries": 5,
"retry_delay": timedelta(minutes=5),
}
Expand Down
2 changes: 1 addition & 1 deletion cob_datapipeline/dspace_harvest_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from datetime import datetime, timedelta
import os
import pendulum
from tulflow import harvest, tasks
from tulflow import harvest
from cob_datapipeline import helpers
from airflow.hooks.base import BaseHook
from airflow.models import Variable
Expand Down

0 comments on commit 080d450

Please sign in to comment.