Skip to content

Commit

Permalink
[hotfix] 30->60s
Browse files Browse the repository at this point in the history
  • Loading branch information
poriz committed Mar 4, 2024
1 parent 913b81e commit 7bcad64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dags/glue/live_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def upload_rendered_script_to_s3(
run_id=run_glue_job.output,
aws_conn_id="aws_conn_id",
)
wait_30_seconds = TimeDeltaSensor(
wait_60_seconds = TimeDeltaSensor(
task_id= 'wait_30_seconds',
delta=timedelta(seconds=30),
delta=timedelta(seconds=60),
)

run_glue_job >> wait_for_job >> wait_30_seconds
run_glue_job >> wait_for_job >> wait_60_seconds

0 comments on commit 7bcad64

Please sign in to comment.