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:
Athanasius 2022-03-12 11:14:27 +00:00
parent d4db13cbd0
commit 9920bcc222

View File

@ -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()