This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a change to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/pulsar.git
from caf161549b5 [fix][broker] PIP-442: Fix race condition in async
semaphore permit updates that causes memory limits to become ineffective
(#25066)
new 08f6c337a7f [fix][broker]Fix incorrect backlog if use multiple
acknowledge types on the same subscription (#25047)
new 438fd83897b [fix][broker]Infinitely failed to delete topic if the
first time failed and enabled transaction (#25073)
new 3f9f9c459d2 [fix][sec] Upgrade Netty to 4.1.130.Final (#25078)
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:
buildtools/pom.xml | 2 +-
distribution/server/src/assemble/LICENSE.bin.txt | 40 +-
distribution/shell/src/assemble/LICENSE.bin.txt | 38 +-
.../bookkeeper/mledger/impl/ManagedCursorImpl.java | 128 ++++---
.../mledger/impl/NonDurableCursorImpl.java | 13 +-
pom.xml | 2 +-
.../broker/service/persistent/PersistentTopic.java | 2 +-
.../transaction/buffer/TransactionBuffer.java | 5 +
.../buffer/impl/InMemTransactionBuffer.java | 5 +
.../buffer/impl/TopicTransactionBuffer.java | 11 +
.../buffer/impl/TopicTransactionBufferState.java | 11 +-
.../buffer/impl/TransactionBufferDisable.java | 5 +
.../broker/admin/v3/AdminApiTransactionTest.java | 30 ++
.../client/api/HybridTypesAcknowledgeTest.java | 422 +++++++++++++++++++++
.../bookkeeper/client/PulsarMockBookKeeper.java | 4 +-
15 files changed, 623 insertions(+), 95 deletions(-)
create mode 100644
pulsar-broker/src/test/java/org/apache/pulsar/client/api/HybridTypesAcknowledgeTest.java