mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 21:12:44 +03:00
Increase Binary WebSocket Buffer (#1923)
increase buffer of the binary WebSocket connection from 10 to 100
This commit is contained in:
parent
bbffd30c63
commit
77bfeb9149
@ -354,7 +354,11 @@ class MainModule(serverConfig: LanguageServerConfig, logLevel: LogLevel) {
|
||||
new BinaryWebSocketServer(
|
||||
InboundMessageDecoder,
|
||||
BinaryEncoder.empty,
|
||||
new BinaryConnectionControllerFactory(fileManager)
|
||||
new BinaryConnectionControllerFactory(fileManager),
|
||||
BinaryWebSocketServer.Config(
|
||||
outgoingBufferSize = 100,
|
||||
lazyMessageTimeout = 10.seconds
|
||||
)
|
||||
)
|
||||
log.trace("Created Binary WebSocket Server [{}].", binaryServer)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user