Skip to content

Commit

Permalink
Increase idle time between syncs to 10 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
anvmn committed Aug 3, 2023
1 parent d76871b commit 5e2eb42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,10 +398,10 @@ const getSyncSpeed = function() {
return storageArr;
}

// Idle time between sync is 5 min.
// Idle time between sync is 10 min.
// Sync cicle last 50 milliseconds.
// When offline, we check network state every 30 secons.
return {idle: (5 * 60 * 1000), cycle: 50, offline: (30 * 1000)};
return {idle: (10 * 60 * 1000), cycle: 50, offline: (30 * 1000)};
}

// Start up our Elm app.
Expand Down

0 comments on commit 5e2eb42

Please sign in to comment.