Skip to content

Commit

Permalink
Turned webSocketCompression off by default to hopefully fix connectio…
Browse files Browse the repository at this point in the history
…n bugs
  • Loading branch information
darkfrog26 committed Sep 10, 2019
1 parent 29aa843 commit 4340267
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -32,7 +32,7 @@ import scribe.Execution.global
class UndertowServerImplementation(val server: Server) extends ServerImplementation with UndertowHttpHandler {
val enableHTTP2: Boolean = Server.config("enableHTTP2").opt[Boolean].getOrElse(true)
val persistentConnections: Boolean = Server.config("persistentConnections").as[Boolean](true)
val webSocketCompression: Boolean = Server.config("webSocketCompression").opt[Boolean].getOrElse(true)
val webSocketCompression: Boolean = Server.config("webSocketCompression").opt[Boolean].getOrElse(false) // TODO: Re-enable once more testing can be done - I think this is causing periodic "Invalid frame header"

private var instance: Option[Undertow] = None

Expand Down

0 comments on commit 4340267

Please sign in to comment.