Commit 12d05213 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Adjust default socket ping and pong timings.

parent 33a0e55d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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.
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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:       "",