Skip to content

Commit

Permalink
fixed marker being saved under wrong key in marker cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Decard6 authored and gaul committed Jul 10, 2023
1 parent 79e2189 commit cf4db28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/gaul/s3proxy/S3ProxyHandler.java
Expand Up @@ -1491,7 +1491,7 @@ private void handleBlobList(HttpServletRequest request,
StorageMetadata sm = Streams.findLast(set.stream()).orElse(null);
if (sm != null) {
lastKeyToMarker.put(Maps.immutableEntry(containerName,
sm.getName()), nextMarker);
encodeBlob(encodingType, nextMarker)), nextMarker);
}
}
} else {
Expand Down

0 comments on commit cf4db28

Please sign in to comment.