> @@ -49,10 +51,21 @@ public void handleError(HttpCommand command, HttpResponse > response) { > exception = new AuthorizationException(exception.getMessage(), > exception); > break; > case 404: > - if (!command.getCurrentRequest().getMethod().equals("DELETE")) { > + String sourcePath = > command.getCurrentRequest().getFirstHeaderOrNull(SwiftHeaders.OBJECT_COPY_FROM); > + Exception oldException = exception;
[minor] Reverse the order of these two lines? The "exception backup" is requires for multiple of the 'if...else' branches, but the "get source path" statement applies only to the first 'if..." branch? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/73/files#r8710001