From 22c334d91265700337feb99d100a03becae448eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Fri, 11 Oct 2024 09:56:37 +0200 Subject: [PATCH] chore: use defaults for polling and metrics intervals --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b85f73d..5d7adee 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,8 @@ val unleash = DefaultUnleash( unleashConfig = UnleashConfig.newBuilder(appName = "test-android-app") .proxyUrl("https://eu.app.unleash-hosted.com/demo/api/frontend") .clientKey("") - .pollingStrategy.interval(3000) // 3 secs is just for testing purposes, not recommended for production - .metricsStrategy.interval(3000) // 3 secs is just for testing purposes, not recommended for production + .pollingStrategy.interval(60000) + .metricsStrategy.interval(60000) .build() )