Skip to content

Commit

Permalink
change DAG config
Browse files Browse the repository at this point in the history
  • Loading branch information
cayod committed Dec 12, 2023
1 parent 0545cae commit 74c2076
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dags/js_library_update_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,15 @@
dag = DAG(
"js_library_update_dag",
default_args=get_default_dag_args(),
start_date=datetime(2015, 9, 30),
start_date=datetime(2023, 1, 1),
description="This DAG updates the js library from bower-js-stellar-base repo.",
schedule_interval="0 17 * * *", # Daily 11 AM UTC
render_template_as_native_obj=True,
params={
"alias": "js_library",
},
user_defined_filters={"fromjson": lambda s: loads(s)},
catchup=True,
max_active_runs=1,
catchup=False,
)

repo = "{{ var.value.stellar_base_js_repositoy_name }}"
Expand Down

0 comments on commit 74c2076

Please sign in to comment.