Skip to content

Commit

Permalink
poll_interval updated in dags
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatajagannath committed Jun 24, 2024
1 parent 8a6e2ee commit b5e60bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ submit_anyscale_job = SubmitAnyscaleJob(
requirements=["requests", "pandas", "numpy", "torch"],
max_retries=1,
job_timeout_seconds=3000,
poll_interval=120,
poll_interval=10,
dag=dag,
)

Expand Down Expand Up @@ -155,7 +155,7 @@ deploy_anyscale_service = RolloutAnyscaleService(
in_place=False,
canary_percent=None,
service_rollout_timeout_seconds=600,
poll_interval=120,
poll_interval=10,
dag=dag,
)

Expand Down
2 changes: 1 addition & 1 deletion example_dags/anyscale_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
requirements=["requests", "pandas", "numpy", "torch"],
max_retries=1,
job_timeout_seconds=3000,
poll_interval=120,
poll_interval=10,
dag=dag,
)

Expand Down
2 changes: 1 addition & 1 deletion example_dags/anyscale_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
in_place=False,
canary_percent=None,
service_rollout_timeout_seconds=600,
poll_interval=120,
poll_interval=10,
dag=dag,
)

Expand Down

0 comments on commit b5e60bb

Please sign in to comment.