Skip to content

Commit

Permalink
Merge pull request #71 from mingshewhe/bug_52
Browse files Browse the repository at this point in the history
feat: ApigwHttpClientServiceImpl增加CloseableHttpClient构造方法 #52
  • Loading branch information
mingshewhe authored Sep 18, 2023
2 parents 8b1415a + c2ef90a commit a1468eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ext {
set("junitVersion", "5.4.2")

if (System.getProperty("snapshot") == "true") {
set('iamVersion', "1.0.36-SNAPSHOT")
set('iamVersion', "1.0.37-SNAPSHOT")
} else {
set('iamVersion', "1.0.0")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class DefaultApacheHttpClientBuilder implements ApacheHttpClientBuilder {
private int soTimeout = 60000;
private int idleConnTimeout = 60000;
private int checkWaitTime = 60000;
private int maxConnPerHost = 10;
private int maxConnPerHost = 50;
private int maxTotalConn = 50;
private String userAgent;
private HttpRequestRetryHandler httpRequestRetryHandler = new HttpRequestRetryHandler() {
Expand Down

0 comments on commit a1468eb

Please sign in to comment.