> + return multipartUploadStrategy.execute(container, blob); > + } else { > + return putBlob(container, blob); > + } > + } > + > + @Override > + public BlobMetadata blobMetadata(String container, String name) { > + return > objectToBlobMetadata.apply(api.getObjectApi().getObject(container, name)); > + } > + > + @Override > + public Blob getBlob(String container, String name, > org.jclouds.blobstore.options.GetOptions options) { > + PayloadEnclosingImpl impl = api.getObjectApi().download(container, > name); > + try { > + Thread.sleep(1000);
We cannot have random sleeps in the code. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/48/files#r17210172