Skip to content

Commit

Permalink
fix: suppress stream object compaction error (#939)
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Han <[email protected]>
  • Loading branch information
superhx authored Feb 21, 2024
1 parent 7a26b6c commit 31a3f61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public void compactStreamObject0(boolean onlyCleanup) {
}
try {
compacting = true;
StreamObjectCompactor task = StreamObjectCompactor.builder().objectManager(objectManager).stream(stream)
StreamObjectCompactor task = StreamObjectCompactor.builder().objectManager(objectManager).stream(this)
.s3Operator(s3Operator).maxStreamObjectSize(config.streamObjectCompactionMaxSizeBytes()).build();
if (onlyCleanup) {
task.cleanup();
Expand Down

0 comments on commit 31a3f61

Please sign in to comment.