timuralp commented on this pull request.


> @@ -373,7 +376,13 @@ public Blob getBlob(final String container, final String 
> key) {
                if (attributes.contains(XATTR_CONTENT_MD5)) {
                   ByteBuffer buf = 
ByteBuffer.allocate(view.size(XATTR_CONTENT_MD5));
                   view.read(XATTR_CONTENT_MD5, buf);
-                  hashCode = HashCode.fromBytes(buf.array());
+                  byte [] etagBytes = buf.array();
+                  if (etagBytes.length == 16) {
+                     hashCode = HashCode.fromBytes(buf.array());
+                     eTag = String.format("\"%s\"", hashCode.toString());
+                  } else {
+                     eTag = new String(etagBytes);

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_r227910171

Reply via email to