Skip to content

Commit

Permalink
docs: use defaults for polling and metrics intervals (#92)
Browse files Browse the repository at this point in the history
chore: use defaults for polling and metrics intervals
  • Loading branch information
gastonfournier authored Oct 11, 2024
1 parent 773de31 commit 4e64ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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("<client-side SDK API key>")
.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()
)

Expand Down

0 comments on commit 4e64ba1

Please sign in to comment.