timuralp commented on this pull request.
> @@ -488,23 +498,37 @@ public String putBlob(final String containerName, final > Blob blob) throws IOExce String tmpBlobName = blobKey + "-" + UUID.randomUUID(); File tmpFile = getFileForBlobKey(containerName, tmpBlobName); Path tmpPath = tmpFile.toPath(); - HashingInputStream his = null; + boolean isMpu = false; + if (blob.getMetadata() != null && blob.getMetadata().getETag() != null) + isMpu = blob.getMetadata().getETag().matches(MPU_ETAG_FORMAT); + InputStream inputStream = null; + byte [] eTag = null; Done -- 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/1251#discussion_r227910332