Skip to content

Commit

Permalink
Fix default session timeout values to 30 minutes everywhere (close #542)
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Aug 29, 2022
1 parent f749a44 commit 56181f8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -74,8 +74,8 @@ public static class TrackerBuilder {
DevicePlatform devicePlatform = DevicePlatform.Mobile; // Optional
LogLevel logLevel = LogLevel.OFF; // Optional
boolean sessionContext = false; // Optional
long foregroundTimeout = 600; // Optional - 10 minutes
long backgroundTimeout = 300; // Optional - 5 minutes
long foregroundTimeout = 1800; // Optional - 30 minutes
long backgroundTimeout = 1800; // Optional - 30 minutes
@NonNull Runnable[] sessionCallbacks = new Runnable[]{}; // Optional
int threadCount = 10; // Optional
TimeUnit timeUnit = TimeUnit.SECONDS; // Optional
Expand Down

0 comments on commit 56181f8

Please sign in to comment.