From 004a4e041aa05b1b73d77cb2c780bc842303c112 Mon Sep 17 00:00:00 2001 From: Emiliano Sanchez Date: Mon, 11 May 2026 16:34:41 -0300 Subject: [PATCH] Updated default telemetry refresh rate from 600s to 3600s --- client/src/main/java/io/split/client/SplitClientConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/java/io/split/client/SplitClientConfig.java b/client/src/main/java/io/split/client/SplitClientConfig.java index 3a38fccd..cc569cdf 100644 --- a/client/src/main/java/io/split/client/SplitClientConfig.java +++ b/client/src/main/java/io/split/client/SplitClientConfig.java @@ -486,7 +486,7 @@ public static final class Builder { private String _authServiceURL = AUTH_ENDPOINT; private String _streamingServiceURL = STREAMING_ENDPOINT; private String _telemetryURl = TELEMETRY_ENDPOINT; - private int _telemetryRefreshRate = 600; + private int _telemetryRefreshRate = 3600; private final int _uniqueKeysRefreshRateInMemory = 900; private final int _uniqueKeysRefreshRateRedis = 300; private final int _filterUniqueKeysRefreshRate = 86400;