mirror of
https://github.com/OMGeeky/flucto-heisskleber.git
synced 2025-12-27 06:29:32 +01:00
fixed mixed up publisher subscriber addresses
This commit is contained in:
@@ -46,8 +46,8 @@ def zmq_broker(config: BrokerConf) -> None:
|
||||
xsub = ctx.socket(zmq.XSUB)
|
||||
|
||||
try:
|
||||
bind_socket(xpub, config.publisher_address, "publisher", config.verbose)
|
||||
bind_socket(xsub, config.subscriber_address, "subscriber", config.verbose)
|
||||
bind_socket(xpub, config.subscriber_address, "publisher", config.verbose)
|
||||
bind_socket(xsub, config.publisher_address, "subscriber", config.verbose)
|
||||
create_proxy(xpub, xsub, config.verbose)
|
||||
except BrokerBindingError as e:
|
||||
print(e)
|
||||
|
||||
Reference in New Issue
Block a user