Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Test C++ Client v3.4.1-candidate-1
  • Loading branch information
BewareMyPower committed Nov 17, 2023
commit cc79aa478879a57fd30c657bb93833715422d54f
2 changes: 1 addition & 1 deletion build-support/dep-url.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pulsar_cpp_base_url() {
exit 1
fi
VERSION=$1
echo "https://archive.apache.org/dist/pulsar/pulsar-client-cpp-${VERSION}"
echo "https://dist.apache.org/repos/dist/dev/pulsar/pulsar-client-cpp/pulsar-client-cpp-${VERSION}-candidate-1"
}

download_dependency() {
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#

cmake: 3.24.2
pulsar-cpp: 3.3.0
pulsar-cpp: 3.4.1
pybind11: 2.10.1
boost: 1.80.0
protobuf: 3.20.0
Expand Down
2 changes: 1 addition & 1 deletion tests/pulsar_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ def test_auth_junk_params(self):
authentication=Authentication(authPlugin, authParams),
)

with self.assertRaises(pulsar.ConnectError):
with self.assertRaises(pulsar.AuthenticationError):
client.subscribe("my-python-topic-auth-junk-params", "my-sub", consumer_type=ConsumerType.Shared)

def test_message_listener(self):
Expand Down