Skip to content

Commit

Permalink
Merge pull request quarkusio#42823 from geoand/quarkusio#42778
Browse files Browse the repository at this point in the history
Properly set PoolOptions for REST Client
  • Loading branch information
geoand authored Aug 28, 2024
2 parents b70a720 + 45d0d25 commit dc07fa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public Vertx get() {
options.setShared(true);
}

var httpClientBuilder = this.vertx.httpClientBuilder().with(options);
var httpClientBuilder = this.vertx.httpClientBuilder().with(options).with(options.getPoolOptions());
AdvancedRedirectHandler advancedRedirectHandler = configuration.getFromContext(AdvancedRedirectHandler.class);
if (advancedRedirectHandler != null) {
httpClientBuilder.withRedirectHandler(new WrapperVertxAdvancedRedirectHandlerImpl(advancedRedirectHandler));
Expand Down

0 comments on commit dc07fa6

Please sign in to comment.