From 1d2da3e43249ac2defcf4e84b4b3fe4429853d54 Mon Sep 17 00:00:00 2001 From: Alexey Kudinkin Date: Wed, 8 May 2024 09:26:23 -0700 Subject: [PATCH] [Dashboard] Bumped default `REPORTER_UPDATE_INTERVAL_MS` to 5s (#45193) Signed-off-by: Alexey Kudinkin --- dashboard/modules/reporter/reporter_consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/modules/reporter/reporter_consts.py b/dashboard/modules/reporter/reporter_consts.py index 369446212ef77..b3254fd3e51e5 100644 --- a/dashboard/modules/reporter/reporter_consts.py +++ b/dashboard/modules/reporter/reporter_consts.py @@ -3,5 +3,5 @@ REPORTER_PREFIX = "RAY_REPORTER:" # The reporter will report its statistics this often (milliseconds). REPORTER_UPDATE_INTERVAL_MS = ray_constants.env_integer( - "REPORTER_UPDATE_INTERVAL_MS", 2500 + "REPORTER_UPDATE_INTERVAL_MS", 5000 )