Skip to content

Commit

Permalink
edit catchup dag param
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbull committed Jun 11, 2024
1 parent 61880c8 commit 47b1ef6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion airflow/dags/sl_data_etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# using environ directly seems to fix it
db_uri = os.environ.get("SUPABASE_PG_URI")

start_date = pendulum.datetime(2024, 2, 6)
start_date = pendulum.datetime(2024, 6, 9)

default_args = {
"owner": "airflow",
Expand All @@ -31,6 +31,7 @@
dag_id="sl_data_etl",
start_date=start_date,
schedule="@daily",
catchup=False,
is_paused_upon_creation=False,
)
def taskflow():
Expand Down
1 change: 0 additions & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ services:
_AIRFLOW_WWW_USER_CREATE: "true"
_AIRFLOW_WWW_USER_USERNAME: ${_AIRFLOW_WWW_USER_USERNAME:-airflow}
_AIRFLOW_WWW_USER_PASSWORD: ${_AIRFLOW_WWW_USER_PASSWORD:-airflow}
SUPABASE_PG_URI: ${SUPABASE_PG_URI:-}
user: "0:0"
volumes:
- ${AIRFLOW_PROJ_DIR:-.}:/sources
Expand Down

0 comments on commit 47b1ef6

Please sign in to comment.