coderzc commented on code in PR #19577:
URL: https://github.com/apache/pulsar/pull/19577#discussion_r1118557857
##########
pulsar-broker/src/main/java/org/apache/pulsar/broker/delayed/bucket/BucketDelayedDeliveryTracker.java:
##########
@@ -306,7 +308,19 @@ private synchronized CompletableFuture<Void>
asyncMergeBucketSnapshot() {
minIndex = i;
}
}
- return asyncMergeBucketSnapshot(values.get(minIndex),
values.get(minIndex + 1));
+ ImmutableBucket immutableBucketA = values.get(minIndex);
+ ImmutableBucket immutableBucketB = values.get(minIndex + 1);
+ log.info("[{}] Merging bucket snapshot, bucketAKey: {}, bucketBKey:
{}", dispatcher.getName(),
Review Comment:
Ok.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]