We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec1af9 commit 62f13feCopy full SHA for 62f13fe
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## 0.5.0 (2018-XX-XX)
4
5
+- Fixed passing of subscription queue name to the NATS server, #3
6
+
7
## 0.4.0 (2018-09-24)
8
9
- Use `BytesIO` as read buffer
docker-compose.yml
@@ -1,7 +1,7 @@
1
-version: '3.6'
+version: "3.6"
services:
nats:
- image: nats:1.2.0
+ image: nats:2.0.4
ports:
- 4222:4222
pynats/client.py
@@ -166,7 +166,7 @@ def subscribe(
166
sub = NATSSubscription(
167
sid=self._ssid,
168
subject=subject,
169
- queue="",
+ queue=queue,
170
callback=callback,
171
max_messages=max_messages,
172
)
0 commit comments