Skip to content

Commit e3a152d

Browse files
committed
Bump version to 3.7.1 candidate 2
1 parent cfd5c67 commit e3a152d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

build-support/dep-url.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pulsar_cpp_base_url() {
2323
exit 1
2424
fi
2525
VERSION=$1
26-
echo "https://archive.apache.org/dist/pulsar/pulsar-client-cpp-${VERSION}"
26+
echo "https://dist.apache.org/repos/dist/dev/pulsar/pulsar-client-cpp/pulsar-client-cpp-${VERSION}-candidate-2"
2727
}
2828

2929
download_dependency() {

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
pulsar-cpp: 3.7.0
20+
pulsar-cpp: 3.7.1
2121
pybind11: 2.10.1
2222
# The OpenSSL dependency is only used when building Python from source
2323
openssl: 1.1.1q

tests/table_view_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ def test_get(self):
4646
self.assertEqual(table_view.get('key-1'), b'\xba\xd0\xba\xd0')
4747

4848
producer.send('value-1'.encode(), partition_key='key-0')
49-
# TODO: Upgrade to C++ client 3.7.1 to include https://github.com/apache/pulsar-client-cpp/pull/487
50-
#self._wait_for_assertion(lambda: self.assertEqual(table_view.get('key-0'), b'value-1'))
49+
self._wait_for_assertion(lambda: self.assertEqual(table_view.get('key-0'), b'value-1'))
5150

5251
producer.close()
5352
table_view.close()

0 commit comments

Comments
 (0)