Skip to content

Commit

Permalink
Modify Rekognition insertion timeouts (#4955)
Browse files Browse the repository at this point in the history
  • Loading branch information
AetherUnbound authored Sep 18, 2024
1 parent 6e9b893 commit 5fdb6e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
default_args={
**DAG_DEFAULT_ARGS,
"retries": 0,
"execution_timeout": timedelta(hours=5),
"execution_timeout": timedelta(days=7),
},
render_template_as_native_obj=True,
)
Expand Down Expand Up @@ -107,7 +107,7 @@ def add_rekognition_labels():
task_id="trigger_batched_update",
trigger_dag_id=BATCHED_UPDATE_DAG_ID,
wait_for_completion=True,
execution_timeout=timedelta(hours=5),
execution_timeout=timedelta(days=1),
retries=0,
conf=constants.BATCHED_UPDATE_CONFIG,
)
Expand Down

0 comments on commit 5fdb6e6

Please sign in to comment.