>     @Beta
>     protected String putMultipartBlob(String container, Blob blob, PutOptions 
> overrides) {
> -      List<MultipartPart> parts = Lists.newArrayList();
> +      if (overrides.getCustomExecutor() != null) {
> +         return putMultipartBlob(container, blob, overrides, 
> overrides.getCustomExecutor());
> +      } else {
> +         return putMultipartBlob(container, blob, overrides, 
> jcloudsBigBlobUploadTreadPool);
> +      }
> +   }
> +
> +   // copied from BaseBlobStore

We need similar code in `BaseBlobStore` for other providers now that we change 
`PutOptions`.  This will also resolve 
[JCLOUDS-227](https://issues.apache.org/jira/browse/JCLOUDS-227).

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/975/files/0b784d15fa6f35ceb82028e1823e85c31ccf513d#r68281631

Reply via email to