Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 4 additions & 2 deletions pulsar-client-cpp.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
CPP_CLIENT_BASE_URL=https://archive.apache.org/dist/pulsar/pulsar-client-cpp-3.7.0
CPP_CLIENT_VERSION=3.7.0
CPP_CLIENT_BASE_URL=https://dist.apache.org/repos/dist/dev/pulsar/pulsar-client-cpp/pulsar-client-cpp-3.8.0-candidate-4
CPP_CLIENT_VERSION=3.8.0


1 change: 1 addition & 0 deletions tests/producer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
expect(response.statusCode).toBe(204);
const producer = await client.createProducer({
topic,
messageRouter: (message, topicMetadata) => {

Check warning on line 209 in tests/producer.test.js

View workflow job for this annotation

GitHub Actions / Run unit tests (3.10)

'topicMetadata' is defined but never used

Check warning on line 209 in tests/producer.test.js

View workflow job for this annotation

GitHub Actions / Run unit tests (3.10)

'message' is defined but never used
throw new Error('Custom error in message router');
},
messageRoutingMode: 'CustomPartition',
Expand Down Expand Up @@ -261,6 +261,7 @@
// 1. Setup Producer with batching enabled and size limit
producer = await client.createProducer({
topic: topicName,
messageRoutingMode: 'UseSinglePartition',
compressionType: 'LZ4',
batchingEnabled: true,
batchingMaxMessages: 10000,
Expand Down
Loading