Skip to content

Commit

Permalink
Merge pull request #39282 from geoand/#39265-followup
Browse files Browse the repository at this point in the history
Add missing headers configuration for InputStream handling
  • Loading branch information
cescoffier authored Mar 11, 2024
2 parents d2b6b87 + 797c72a commit 0dc9a58
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ public void handle(AsyncResult<AsyncFile> openedAsyncFile) {
MultivaluedMap<String, String> headerMap = requestContext.getRequestHeaders()
.asMap();
updateRequestHeadersFromConfig(requestContext, headerMap);
setVertxHeaders(httpClientRequest, headerMap);
Future<HttpClientResponse> sent = httpClientRequest.send(
new InputStreamReadStream(
Vertx.currentContext().owner(), (InputStream) requestContext.getEntity().getEntity(),
Expand Down

0 comments on commit 0dc9a58

Please sign in to comment.