This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a change to branch branch-2.9
in repository https://gitbox.apache.org/repos/asf/pulsar.git
from 817e617dd1c [fix][python]Fix generated Python protobuf code not
compatible with latest protobuf package (#15846)
new 0cdf66ab7fc Switch to rely on Netty for Hostname Verification (#15824)
new 50d95028a21 Configure DLog Bookie, Pulsar, and Admin clients via pass
through config (#15818)
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:
.../resources/authentication/tls/broker-cert.pem | 74 ++++++-------
.../test/resources/authentication/tls/cacert.pem | 110 ++++++++++----------
.../resources/authentication/tls/client-cert.pem | 74 ++++++-------
build/regenerate_certs_for_tests.sh | 25 ++---
conf/broker.conf | 14 ++-
conf/functions_worker.yml | 20 ++++
conf/proxy.conf | 4 +
conf/websocket.conf | 4 +
.../pulsar/broker/BookKeeperClientFactoryImpl.java | 16 ++-
.../org/apache/pulsar/broker/PulsarService.java | 29 ++++--
.../pulsar/broker/namespace/NamespaceService.java | 6 ++
.../pulsar/broker/service/BrokerService.java | 21 +++-
.../apache/pulsar/compaction/CompactorTool.java | 6 ++
...kerInternalClientConfigurationOverrideTest.java | 115 +++++++++++++++++++++
.../AuthenticationTlsHostnameVerificationTest.java | 34 ++----
.../PulsarClientConfigurationOverrideTest.java | 56 ++++++++++
.../websocket/proxy/ProxyConfigurationTest.java | 6 ++
.../pulsar/client/admin/PulsarAdminBuilder.java | 23 +++++
.../admin/internal/PulsarAdminBuilderImpl.java | 9 +-
.../admin/internal/http/AsyncHttpConnector.java | 9 +-
.../pulsar/client/internal/PropertiesUtils.java | 64 ++++++++++++
.../org/apache/pulsar/client/impl/ClientCnx.java | 48 ---------
.../org/apache/pulsar/client/impl/HttpClient.java | 1 +
.../client/impl/PulsarChannelInitializer.java | 7 ++
.../util/NettyClientSslContextRefresher.java | 3 +-
.../apache/pulsar/common/util/SecurityUtility.java | 10 ++
.../src/test/resources/test_worker_config.yml | 3 +
.../functions/worker/PulsarWorkerService.java | 12 ++-
.../pulsar/functions/worker/WorkerUtils.java | 45 +++++++-
.../pulsar/functions/worker/WorkerUtilsTest.java | 19 ++++
.../bookkeeper/BookKeeperPackagesStorage.java | 8 ++
.../BookKeeperPackagesStorageConfiguration.java | 4 +
.../core/PackagesStorageConfiguration.java | 6 ++
.../impl/DefaultPackagesStorageConfiguration.java | 5 +
.../pulsar/proxy/server/AdminProxyHandler.java | 7 +-
.../pulsar/proxy/server/DirectProxyHandler.java | 101 +++++++++++++-----
.../pulsar/proxy/server/ProxyConnection.java | 24 +++--
.../proxy/server/ServiceChannelInitializer.java | 66 +-----------
.../proxy/server/ProxyWithAuthorizationTest.java | 70 +++++++------
.../ProxyWithAuthorizationTest/broker-cacert.pem | 110 ++++++++++----------
.../tls/ProxyWithAuthorizationTest/broker-cert.pem | 74 ++++++-------
.../ProxyWithAuthorizationTest/client-cacert.pem | 110 ++++++++++----------
.../tls/ProxyWithAuthorizationTest/client-cert.pem | 74 ++++++-------
.../ProxyWithAuthorizationTest/proxy-cacert.pem | 110 ++++++++++----------
.../tls/ProxyWithAuthorizationTest/proxy-cert.pem | 74 ++++++-------
.../test/resources/authentication/tls/cacert.pem | 110 ++++++++++----------
.../resources/authentication/tls/client-cert.pem | 74 ++++++-------
.../resources/authentication/tls/server-cert.pem | 74 ++++++-------
.../apache/pulsar/websocket/WebSocketService.java | 7 +-
site2/docs/reference-configuration.md | 21 ++++
50 files changed, 1218 insertions(+), 778 deletions(-)
create mode 100644
pulsar-broker/src/test/java/org/apache/pulsar/broker/service/BrokerInternalClientConfigurationOverrideTest.java
create mode 100644
pulsar-broker/src/test/java/org/apache/pulsar/client/impl/PulsarClientConfigurationOverrideTest.java
create mode 100644
pulsar-client-api/src/main/java/org/apache/pulsar/client/internal/PropertiesUtils.java