Rob Seed
Rob Seed
Happy to help, can you share the code or the logs or any error messages? It should log after connecting to nsqd, does it get that far?
Can you share your code to reproduce the problem?
Did you start `nsqlookupd`? https://nsq.io/overview/quick_start.html Your code works for me if both nsqd and nsqlookupd are running.
[Client::stop](https://sproutsocial.github.io/nsq-j/com/sproutsocial/nsq/Client.html#stop-int-) is how you shut everything down cleanly. Try replacing ``` publisher.stop(); subscriber.stop(); ``` with ``` Client.getDefaultClient().stop() ```
@mfirry There is no need to keep track of a client instance or pass it into the constructors, just call `Client.getDefaultClient().stop()` when you shut down.
The only reasons you might need more than one client are rare and specialized -- perhaps 2 independent teams at your company run 2 independent nsq clusters (say, one for...
Sure, I guess it can't do any harm, but once again what you should do is call Client::stop
I had the same problem on a monitor that can't disable its "auto scan" feature and found a workaround using [ddcutil](https://www.ddcutil.com/) First run `ddcutil capabilities` to find the codes that...