We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa77a05 commit 6e28468Copy full SHA for 6e28468
archived/historian/historian.py
@@ -230,6 +230,7 @@ def rabbitmq_connect(self):
230
params = pika.URLParameters(self.RABBITMQ_URL)
231
self.connection = pika.BlockingConnection(params) # default, localhost
232
self.channel = self.connection.channel()
233
+ self.channel.exchange_declare(exchange='router.gossip', exchange_type='fanout')
234
plugin.log(f"message queue connected to {params.host}:{params.port}")
235
236
def run(self):
0 commit comments