Skip to content

Commit

Permalink
bugfix: 长时间运行后,file-worker下载第三方文件源文件失败 TencentBlueKing#1346
Browse files Browse the repository at this point in the history
更新日志级别
  • Loading branch information
jsonwan committed Sep 23, 2022
1 parent ee46068 commit 24367e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public HttpClientConnection get(long timeout,
HttpClientConnection connection = delegate.get(timeout, timeUnit);
if (connection instanceof ManagedHttpClientConnection) {
ManagedHttpClientConnection manageConnection = (ManagedHttpClientConnection) connection;
log.info("get connection success:id={}", manageConnection.getId());
log.debug("get connection success:id={}", manageConnection.getId());
}
return connection;
} catch (Exception e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class WatchableManagedHttpClientConnectionFactory extends ManagedHttpClie
@Override
public ManagedHttpClientConnection create(final HttpRoute route, final ConnectionConfig config) {
ManagedHttpClientConnection connection = super.create(route, config);
log.info("created connection,route={},id={}", route, connection.getId());
log.debug("created connection,route={},id={}", route, connection.getId());
return connection;
}
}

0 comments on commit 24367e0

Please sign in to comment.