mirror of https://github.com/apache/jclouds.git
Merge pull request #385 from milkmansrevenge/master
Issue 848 - logging levels in BackoffLimitedRetryHandler
This commit is contained in:
commit
630c3925c7
|
@ -106,10 +106,10 @@ public class BackoffLimitedRetryHandler implements HttpRetryHandler, IOException
|
||||||
command.incrementFailureCount();
|
command.incrementFailureCount();
|
||||||
|
|
||||||
if (!command.isReplayable()) {
|
if (!command.isReplayable()) {
|
||||||
logger.warn("Cannot retry after server error, command is not replayable: %1$s", command);
|
logger.error("Cannot retry after server error, command is not replayable: %1$s", command);
|
||||||
return false;
|
return false;
|
||||||
} else if (command.getFailureCount() > retryCountLimit) {
|
} else if (command.getFailureCount() > retryCountLimit) {
|
||||||
logger.warn("Cannot retry after server error, command has exceeded retry limit %1$d: %2$s", retryCountLimit,
|
logger.error("Cannot retry after server error, command has exceeded retry limit %1$d: %2$s", retryCountLimit,
|
||||||
command);
|
command);
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue