Closed tsegismont closed 2 weeks ago
Failure when proxying websocket upgrade sent by Firefox:
17:39:24.012 [vert.x-eventloop-thread-0] ERROR io.vertx.core.net.impl.ConnectionBase - Invalid object AdaptivePoolingAllocator$AdaptiveByteBuf(freed)
As a workaround, create an interceptor and change the request connection header:
headers.set(CONNECTION, UPGRADE);
FF is known to send a Connection=keep-alive, Upgrade, that is probably the cause of this issue.
Connection=keep-alive, Upgrade
Fixed by #107
Failure when proxying websocket upgrade sent by Firefox:
As a workaround, create an interceptor and change the request connection header:
FF is known to send a
Connection=keep-alive, Upgrade
, that is probably the cause of this issue.