> @@ -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) {

Looking at [this 
comment](https://issues.apache.org/jira/browse/JCLOUDS-391?focusedCommentId=14032527&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14032527),
 this looks like "the patch way" rather than the "proper" solution. That's 
fine, but should we add a comment to indicate that the "more proper" way to 
solve this would be to do X..?

/cc @adriancole

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

Reply via email to