Uncomment sendHeaders()

This commit is contained in:
Spencer Gibb
2017-01-17 13:00:55 -07:00
parent 5611b6ad28
commit 9c43fb6af1

View File

@@ -46,7 +46,7 @@ public class RoutingWebHandler implements WebHandler {
return this.httpClient.request(method, url, req ->
req.options(NettyPipeline.SendOptions::flushOnEach)
.headers(httpHeaders)
//.sendHeaders()
.sendHeaders()
.send(request.getBody()
.map(DataBuffer::asByteBuffer)
.map(Unpooled::wrappedBuffer)))