Skip to content

Commit

Permalink
[fix] fixed passing of subscription queue name to the NATS server (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gr1N committed Aug 27, 2019
1 parent 1ec1af9 commit 62f13fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 0.5.0 (2018-XX-XX)

- Fixed passing of subscription queue name to the NATS server, #3

## 0.4.0 (2018-09-24)

- Use `BytesIO` as read buffer
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.6'
version: "3.6"

services:
nats:
image: nats:1.2.0
image: nats:2.0.4
ports:
- 4222:4222
2 changes: 1 addition & 1 deletion pynats/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def subscribe(
sub = NATSSubscription(
sid=self._ssid,
subject=subject,
queue="",
queue=queue,
callback=callback,
max_messages=max_messages,
)
Expand Down

0 comments on commit 62f13fe

Please sign in to comment.