Skip to content

Commit

Permalink
Properly set PoolOptions for REST Client
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand authored and danielsoro committed Sep 20, 2024
1 parent 96c0a7c commit 81298e1
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 81298e1

Please sign in to comment.