This is an automated email from the ASF dual-hosted git repository. lhotari pushed a change to branch branch-3.3 in repository https://gitbox.apache.org/repos/asf/pulsar.git
from 81f3f7df6a2 [fix][build] Use amazoncorretto:21-alpine3.20 JDK build for Alpine 3.20 (#23898) new e778e8ad0e7 [fix][broker] Fix repeatedly acquired pending reads quota (#23869) new 2998307abea [fix][test] Fix flaky DelayedDeliveryTest.testEnableTopicDelayedDelivery (#23893) new adc54057373 [fix][broker Fix bug in RangeCache where different instance of the key wouldn't ever match (#23903) The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../mledger/impl/cache/PendingReadsManager.java | 8 +- .../mledger/impl/cache/RangeEntryCacheImpl.java | 26 +- .../apache/bookkeeper/mledger/util/RangeCache.java | 109 ++++++-- .../impl/InflightReadsLimiterIntegrationTest.java | 231 +++++++++++++++++ .../mledger/impl/ManagedLedgerBkTest.java | 115 ++++++++- .../impl/cache/PendingReadsManagerTest.java | 2 +- .../bookkeeper/mledger/util/RangeCacheTest.java | 19 +- .../broker/auth/MockedPulsarServiceBaseTest.java | 5 + .../service/persistent/DelayedDeliveryTest.java | 4 +- .../api/KeySharedSubscriptionBrokerCacheTest.java | 285 +++++++++++++++++++++ pulsar-broker/src/test/resources/log4j2.xml | 9 + .../coordinator/impl/TxnLogBufferedWriterTest.java | 9 + .../coordinator/test/MockedBookKeeperTestCase.java | 6 +- 13 files changed, 778 insertions(+), 50 deletions(-) create mode 100644 managed-ledger/src/test/java/org/apache/bookkeeper/mledger/impl/InflightReadsLimiterIntegrationTest.java create mode 100644 pulsar-broker/src/test/java/org/apache/pulsar/client/api/KeySharedSubscriptionBrokerCacheTest.java