Skip to content

Commit

Permalink
Decrease status polling interval to 4s
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiokot committed Nov 30, 2023
1 parent 6f5e122 commit 21e4d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/tunnel-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default readable(null, (set) => {
/**
* @type {NodeJS.Timeout}
*/
let updateInterval = setInterval(updateValue, 5000);
let updateInterval = setInterval(updateValue, 4000);

return () => clearInterval(updateInterval);
})

0 comments on commit 21e4d16

Please sign in to comment.