Skip to content

Commit 6b34fe3

Browse files
committed
Fix undertow httpClientConnect invoke signature
Issue: SPR-13551
1 parent f489e43 commit 6b34fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-websocket/src/main/java/org/springframework/web/socket/sockjs/client/UndertowXhrTransport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ public void closePooledResource(Object pooled) {
588588
public void httpClientConnect(UndertowClient httpClient, ClientCallback<ClientConnection> listener, URI uri,
589589
XnioWorker worker, OptionMap options) {
590590
ReflectionUtils.invokeMethod(httpClientConnectCallbackMethod, httpClient, listener, uri,
591-
this.undertowBufferPool, worker, options);
591+
worker, this.undertowBufferPool, options);
592592
}
593593

594594
@Override

0 commit comments

Comments
 (0)