> @@ -90,13 +94,23 @@
> protected Logger logger = Logger.NULL;
>
> public boolean shouldRetryRequest(HttpCommand command, IOException error)
> {
> - return ifReplayableBackoffAndReturnTrue(command);
> + return isSafeToRetryOnException(command) &&
> ifReplayableBackoffAndReturnTrue(command);what about `isIdempotent(command)` instead of `isSafeToRetryOnException()` ? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/744/files#r30110560
