vert.x icon indicating copy to clipboard operation
vert.x copied to clipboard

route BodyHandler before ProxyHandler, response [ERROR] [2024-04-17 18:57:27] ?.?(?) | Connection was closed

Open cloudAndMonkey opened this issue 1 year ago • 0 comments

Questions

HttpClientOptions clientOptions = new HttpClientOptions(); HttpClient proxyClient = VERTX.createHttpClient(clientOptions); HttpProxy proxy = HttpProxy.reverseProxy(proxyClient); proxy.originSelector(request -> Future.succeededFuture(resolveOriginAddress(request)));

mainHttpRouter.route().handler(BodyHandler.create()).handler(ProxyHandler.create(proxy));

image postman loading long time, console return error [ERROR] [2024-04-17 18:57:27] ?.?(?) | Connection was closed

Version

4.5.7

cloudAndMonkey avatar Apr 17 '24 11:04 cloudAndMonkey