Skip to content

Commit

Permalink
Pass requestBufferSize from Config to Proxy servlet (#16611)
Browse files Browse the repository at this point in the history
  • Loading branch information
maytasm authored Jun 18, 2024
1 parent be3593f commit 44268e7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ private ServletHolder buildServletHolder(Servlet servlet, DruidHttpClientConfig
sh.setInitParameter("maxConnections", Integer.toString(httpClientConfig.getNumConnections()));
sh.setInitParameter("idleTimeout", Long.toString(httpClientConfig.getReadTimeout().getMillis()));
sh.setInitParameter("timeout", Long.toString(httpClientConfig.getReadTimeout().getMillis()));
sh.setInitParameter("requestBufferSize", Integer.toString(httpClientConfig.getRequestBuffersize()));

return sh;
}
Expand Down

0 comments on commit 44268e7

Please sign in to comment.