mirror of
https://github.com/EDCD/EDDN.git
synced 2025-04-25 20:52:13 +03:00
Gateway: zmq's PUB is *only* in the main module now
But we still need to `import zmq.green as zmq` so use: ```python from zmq import PUB as ZMQ_PUB ```
This commit is contained in:
parent
e9397b46e2
commit
3a55f6b005
@ -21,6 +21,7 @@ import zmq.green as zmq
|
||||
from bottle import Bottle, request, response
|
||||
from gevent import monkey
|
||||
from pkg_resources import resource_string
|
||||
from zmq import PUB as ZMQ_PUB
|
||||
|
||||
from eddn.conf.Settings import Settings, load_config
|
||||
from eddn.core.Validator import ValidationSeverity, Validator
|
||||
@ -47,7 +48,7 @@ logger.info('Made logger')
|
||||
|
||||
# This socket is used to push market data out to the Announcers over ZeroMQ.
|
||||
zmq_context = zmq.Context()
|
||||
sender = zmq_context.socket(zmq.PUB)
|
||||
sender = zmq_context.socket(ZMQ_PUB)
|
||||
|
||||
validator = Validator()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user