Fix undertow httpClientConnect invoke signature
Issue: SPR-13551
This commit is contained in:
parent
f489e43d31
commit
6b34fe3dd4
|
|
@ -588,7 +588,7 @@ public class UndertowXhrTransport extends AbstractXhrTransport {
|
||||||
public void httpClientConnect(UndertowClient httpClient, ClientCallback<ClientConnection> listener, URI uri,
|
public void httpClientConnect(UndertowClient httpClient, ClientCallback<ClientConnection> listener, URI uri,
|
||||||
XnioWorker worker, OptionMap options) {
|
XnioWorker worker, OptionMap options) {
|
||||||
ReflectionUtils.invokeMethod(httpClientConnectCallbackMethod, httpClient, listener, uri,
|
ReflectionUtils.invokeMethod(httpClientConnectCallbackMethod, httpClient, listener, uri,
|
||||||
this.undertowBufferPool, worker, options);
|
worker, this.undertowBufferPool, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue