Skip to content

Commit

Permalink
fix: fixed default value for session timeout in millis for web platfo…
Browse files Browse the repository at this point in the history
…rm to 30 mins
  • Loading branch information
Desu Sai Venkat committed Dec 7, 2023
1 parent 9e1fc4e commit 3c0cca0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class Constants {
// default duration for inactivity is 5 minutes or 300000 milliseconds for Mobile Platforms
static const int DEFAULT_SESSION_TIMEOUT_MOBILE = 300000;

// default duration for inactivity is 10 minutes or 600000 milliseconds for Web Platforms
static const int DEFAULT_SESSION_TIMEOUT_WEB = 600000;
// default duration for inactivity is 30 minutes or 1800000 milliseconds for Web Platforms
static const int DEFAULT_SESSION_TIMEOUT_WEB = 1800000;

// default timeout for event flush
// if events are registered and flushQueueSize is not reached
Expand Down

0 comments on commit 3c0cca0

Please sign in to comment.