> @@ -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) {
I reimplemented this the proper way in #628, which sets metadata with the
existing `putBlobList` instead of an additional call to `setBlobMetadata`. I
also added a live test.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/422/files#r22138164