Skip to content

Commit

Permalink
Fix lib common tests
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-traverse committed Dec 8, 2024
1 parent 36d2434 commit c52d2c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ protected ChannelHandler http2PrimaryHandler() {
}

@Override
protected ChannelHandler wsPrimaryHandler() {
return ws.get();
protected WebSocketServerProtocolConfig wsProtocolConfig(HttpRequest upgradeRequest) {
return WebSocketServerProtocolConfig.newBuilder().build();
}

@Override
protected WebSocketServerProtocolConfig wsProtocolConfig() {
return WebSocketServerProtocolConfig.newBuilder().build();
protected ChannelHandler wsPrimaryHandler() {
return ws.get();
}
}

Expand Down

0 comments on commit c52d2c4

Please sign in to comment.