Skip to content

Commit

Permalink
Fixed client ids on stan bench
Browse files Browse the repository at this point in the history
Fixes #119
  • Loading branch information
Stephen Asbury committed Mar 26, 2019
1 parent 429dd5a commit 0552e47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Version 2.1.4

* [Fixed] - #121 - Set protobuf dependency to 3.6.1 to avoid breaking version.
* [Fixed] - #119 - Fixed issue with client ids in stan bench when multiple subscribers are used.

## Version 2.1.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public void runSubscriber() throws Exception {
.natsConn(nc)
.build();

final StreamingConnection sc = NatsStreaming.connect(clusterId, clientId, opts);
final StreamingConnection sc = NatsStreaming.connect(clusterId, this.workerClientId, opts);
final SubscriptionOptions sopts;

if (ignoreOld) {
Expand Down

0 comments on commit 0552e47

Please sign in to comment.