This commit is contained in:
2026-08-18 22:35:53 +07:00
parent 843d53587c
commit 1c9d482310
+1 -1
View File
@@ -342,7 +342,7 @@ NATS.publish(conn, "test.topic", message_envelope_json_str; reply_to="test.reply
NATS.drain(conn)
# OR using request-reply pattern
reply = NATS.request(conn, "test.topic", message_envelope_json_str, timeout=10)
reply = NATS.request(conn, "test.topic", message_envelope_json_str; timeout=10)
```
#### Receive Messages (Publish - Subscribe Pattern)