nats.py
nats.py copied to clipboard
Calling `stream_info()` returns a `nats.errors.TimeoutError: nats: timeout` (invalid stream name issue)
I have been able to run the NATS server, with the -js option for streams. I try to create a stream if one does not already exist and I get the timout error, as per the issue. Not sure what this is happening.
# Persist messages on the subjects.
await self.nc.add_stream(
name=STREAM_NAME,
subjects=[SUBSCRIPTION_SUBJECT, PUBLISH_SUBJECT],
retention=RetentionPolicy.WORK_QUEUE
)
raise errors.TimeoutError
nats.errors.TimeoutError: nats: timeout
Seems like it's totally broken. All streams kv and other js operations are timing out...