> @@ -208,10 +208,15 @@ public String putBlob(String container, Blob blob) {
>     @Override
>     public String putBlob(String container, Blob blob, PutOptions options) {
>        if (options.isMultipart()) {
> -         return multipartUploadStrategy.get().execute(container, blob);
> +         String result = multipartUploadStrategy.get().execute(container, 
> blob);
> +         if (result != null) {

This change causes `testMultipartChunkedFileStream` and 
`testMultipartChunkedFileStreamPowerOfTwoSize` to fail since the separate call 
to `setBlobMetadata` changes the ETag (Azure uses a timestamp instead of 
content hash).

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/422/files#r22136571

Reply via email to