Skip to content

Commit

Permalink
Merge pull request #137 from pycontw/feature/ticket-2024
Browse files Browse the repository at this point in the history
fix(ods): 2024 kktix-ticket
  • Loading branch information
henry410213028 authored Jun 17, 2024
2 parents e7d7c5e + 4a96fe7 commit ae41bcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dags/ods/kktix_ticket_orders/kktix_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
DEFAULT_ARGS = {
"owner": "davidtnfsh@gmail.com",
"depends_on_past": False,
"start_date": datetime(2023, 6, 14, 0),
"start_date": datetime(2024, 6, 18, 0),
"retries": 2,
"retry_delay": timedelta(minutes=5),
"on_failure_callback": lambda x: "Need to send notification to Discord!",
}
dag = DAG(
"KKTIX_TICKET_ORDERS_V6",
"KKTIX_TICKET_ORDERS_V7",
default_args=DEFAULT_ARGS,
schedule_interval="50 * * * *",
max_active_runs=1,
Expand Down
4 changes: 2 additions & 2 deletions dags/ods/kktix_ticket_orders/kktix_refund_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
DEFAULT_ARGS = {
"owner": "henry410213028@gmail.com",
"depends_on_past": False,
"start_date": datetime(2023, 4, 10, 4),
"start_date": datetime(2024, 6, 18, 0),
"retries": 2,
"retry_delay": timedelta(minutes=5),
"on_failure_callback": lambda x: "Need to send notification to Discord!",
}
dag = DAG(
"KKTIX_TICKET_REFUND_V2",
"KKTIX_TICKET_REFUND_V3",
default_args=DEFAULT_ARGS,
schedule_interval="50 23 * * *", # At 23:50 (everyday)
max_active_runs=1,
Expand Down

0 comments on commit ae41bcc

Please sign in to comment.