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 65ec6af1663 [cleanup][ci] Remove documentation label bot (#25469)
new 470b0e69d5f [improve][client][branch-4.0] Deduplicate in-progress
lookup requests also for HttpLookupService (#25017)
new cfa8192198c [fix][sec] Upgrade to async-http-client 2.14.5 to address
CVE-2026-40490 (#25546)
The 2 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:
distribution/server/src/assemble/LICENSE.bin.txt | 6 +-
distribution/shell/src/assemble/LICENSE.bin.txt | 6 +-
pom.xml | 2 +-
.../pulsar/client/api/BrokerServiceLookupTest.java | 7 +-
.../apache/pulsar/client/api/SimpleSchemaTest.java | 6 +-
.../internal/http/AsyncHttpConnectorTest.java | 56 +++++
pulsar-client/pom.xml | 6 +
.../client/impl/BinaryProtoLookupService.java | 206 +++------------
.../org/apache/pulsar/client/impl/HttpClient.java | 72 +++++-
.../pulsar/client/impl/HttpLookupService.java | 14 +-
...rogressDeduplicationDecoratorLookupService.java | 276 +++++++++++++++++++++
.../apache/pulsar/client/impl/LookupService.java | 26 +-
.../pulsar/client/impl/PulsarClientImpl.java | 21 +-
.../client/impl/BinaryProtoLookupServiceTest.java | 21 +-
.../apache/pulsar/client/impl/HttpClientTest.java | 137 ++++++++++
.../pulsar/client/impl/HttpLookupServiceTest.java | 133 ++++++++++
.../proxy/server/ProxyLookupThrottlingTest.java | 3 +-
.../server/ProxyWithExtensibleLoadManagerTest.java | 13 +-
.../pulsar/websocket/LookupProtocolTest.java | 29 +--
19 files changed, 794 insertions(+), 246 deletions(-)
create mode 100644
pulsar-client/src/main/java/org/apache/pulsar/client/impl/InProgressDeduplicationDecoratorLookupService.java
create mode 100644
pulsar-client/src/test/java/org/apache/pulsar/client/impl/HttpClientTest.java
create mode 100644
pulsar-client/src/test/java/org/apache/pulsar/client/impl/HttpLookupServiceTest.java