-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using multi=True on ZeroMQSubscriber #265
Comments
Hi! thanks for reporting. Can you provide a minimal (as isolated as possible) example that reproduces this? It would make it much easier to pin-point and investigate. Thanks! |
Client: `from logbook.queues import ZeroMQSubscriber my_handler = StderrHandler() controller.stop() Server: `from logbook import Logger log = Logger('cloud_server') |
any progress? |
Sorry, I've been a bit swamped lately so didn't get to investigate it. Any help would be greatly appreciated. |
Hi,
I'm running my project on Aws instance using the zeroMQhandler to send logs to the client. When running on the local computer everything works fine and I'm able to receive the logs, however once I change to to the instance address
subscriber = ZeroMQSubscriber(uri="tcp://20.20.20.20:5000", multi=True)
I get the following errorzmq.error.ZMQError: Can't assign requested address
. I opened all Inbound/ outbound connections in AWS and was able to run a pure zeromq code (using PUSH/PULL) and there was a connection, so I presume that the issue is on your side.The text was updated successfully, but these errors were encountered: