Fix undertow httpClientConnect invoke signature

Issue: SPR-13551
This commit is contained in:
Brian Clozel 2015-10-08 16:23:31 +02:00
parent f489e43d31
commit 6b34fe3dd4
1 changed files with 1 additions and 1 deletions

View File

@ -588,7 +588,7 @@ public class UndertowXhrTransport extends AbstractXhrTransport {
public void httpClientConnect(UndertowClient httpClient, ClientCallback<ClientConnection> listener, URI uri,
XnioWorker worker, OptionMap options) {
ReflectionUtils.invokeMethod(httpClientConnectCallbackMethod, httpClient, listener, uri,
this.undertowBufferPool, worker, options);
worker, this.undertowBufferPool, options);
}
@Override