Skip to content

Commit af91703

Browse files
brido4125jhpark816
authored andcommitted
FIX: Change BKeyObject constructor in BopGetResultImpl
1 parent 611e612 commit af91703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/spy/memcached/internal/result/BopGetResultImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public Map<K, Element<V>> getDecodedValue() {
5252
CachedData cachedData = entry.getValue();
5353
if (isByteBKey) {
5454
temp.put(bKey, BTreeUtil.makeBTreeElement(
55-
new BKeyObject((ByteArrayBKey) bKey), cachedData, transcoder));
55+
new BKeyObject(((ByteArrayBKey) bKey).getBytes()), cachedData, transcoder));
5656
} else {
5757
temp.put(bKey, BTreeUtil.makeBTreeElement(
5858
new BKeyObject((Long) bKey), cachedData, transcoder));

0 commit comments

Comments
 (0)