Skip to content

Commit

Permalink
Adjust default socket ping and pong timings.
Browse files Browse the repository at this point in the history
  • Loading branch information
zyro committed May 1, 2019
1 parent 33a0e55 commit 12d0521
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
## [Unreleased]
### Changed
- Storage object get operations now also return the user ID if the owner is the root user.
- Adjust default socket ping and pong timings.

### Fixed
- Correctly display counters on console status page.
Expand All @@ -15,6 +16,8 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Correctly update wallet on console user details page.
- Correctly display custom ID, email, and verification time on console user details page.
- Add missing placeholder text to fields on console user details page.
- Console status page no longer refreshes if server is not reachable.
- Correctly refresh console storage page when deleting records.

## [2.5.0] - 2019-04-25
### Added
Expand Down
4 changes: 2 additions & 2 deletions server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ func NewSocketConfig() *SocketConfig {
WriteTimeoutMs: 10 * 1000,
IdleTimeoutMs: 60 * 1000,
WriteWaitMs: 5000,
PongWaitMs: 13000,
PingPeriodMs: 8000,
PongWaitMs: 25000,
PingPeriodMs: 15000,
PingBackoffThreshold: 20,
OutgoingQueueSize: 64,
SSLCertificate: "",
Expand Down

0 comments on commit 12d0521

Please sign in to comment.