Skip to content

Commit 1ea3cca

Browse files
committed
Add timeout exception log for proxy usage
1 parent edebd60 commit 1ea3cca

File tree

1 file changed

+3
-0
lines changed
  • transports/httpclient/src/main/java/org/commonjava/maven/galley/transport/htcli/internal

1 file changed

+3
-0
lines changed

transports/httpclient/src/main/java/org/commonjava/maven/galley/transport/htcli/internal/AbstractHttpJob.java

+3
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ else if ( !successStatuses.contains( sc ) )
147147
catch ( final NoHttpResponseException | ConnectTimeoutException | SocketTimeoutException |
148148
HttpHostConnectException e )
149149
{
150+
logger.warn(
151+
"Timeout for url: {}, site: {}, could try to access with proxy, tries:{}, doProxy: {}, Reason: {}", url,
152+
site, tries, doProxy, e.getMessage() );
150153
// For those are not in the iad2 tenant egress rules, will throw timeout so use the configured proxy to retry
151154
if ( tries > 0 )
152155
{

0 commit comments

Comments
 (0)