4
0
Fork 0

exchange name configurable

This commit is contained in:
Pünkösd Marcell 2020-04-29 23:30:07 +02:00
parent e2a7249394
commit 80331175e0
2 changed files with 3 additions and 2 deletions

View File

@ -41,7 +41,7 @@ def main():
queue_declare_result = channel.queue_declare(queue='', exclusive=True)
queue_name = queue_declare_result.method.queue
channel.queue_bind(exchange='wave-extract', queue=queue_name)
channel.queue_bind(exchange=os.environ['PIKA_EXCHANGE_NAME'], queue=queue_name)
channel.basic_consume(queue=queue_name, on_message_callback=message_callback, auto_ack=True)
logging.info("Connection complete! Listening to messages...")

View File

@ -9,4 +9,5 @@ data:
SENTRY_DSN: https://6d243347cf9f4fc6a54759c3eb34e864@sentry.kmlabz.com/8
RELEASE_ID: luna-k8s
RELEASEMODE: release
PIKA_URL: amqp://user:1wZVQnP5vy@birb-rabbitmq:5672/
PIKA_URL: amqp://user:1wZVQnP5vy@birb-rabbitmq:5672/
PIKA_EXCHANGE_NAME: "wave"