Set task retry delay to zero (#21690)

This commit is contained in:
Eric Liang 2022-01-19 23:41:35 -08:00 committed by GitHub
parent e3357eb9e5
commit 5065156dd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -301,7 +301,7 @@ RAY_CONFIG(uint64_t, local_gc_min_interval_s, 10)
RAY_CONFIG(uint64_t, global_gc_min_interval_s, 30)
/// Duration to wait between retries for failed tasks.
RAY_CONFIG(uint32_t, task_retry_delay_ms, 5000)
RAY_CONFIG(uint32_t, task_retry_delay_ms, 0)
/// Duration to wait between retrying to kill a task.
RAY_CONFIG(uint32_t, cancellation_retry_ms, 2000)