This commit is contained in:
Julius Unverfehrt 2022-02-15 09:43:45 +01:00
parent b6411de6b2
commit b9258de347

View File

@ -33,7 +33,7 @@ def main():
parameters = init_params() parameters = init_params()
connection = pika.BlockingConnection(parameters) connection = pika.BlockingConnection(parameters)
channel = connection.channel() channel = connection.channel()
#channel.queue_declare(queue=CONFIG.rabbitmq.queues.output, durable=True) # channel.queue_declare(queue=CONFIG.rabbitmq.queues.output, durable=True)
while True: while True:
try: try:
@ -52,8 +52,6 @@ def main():
continue continue
if __name__ == "__main__": if __name__ == "__main__":
logging_level = CONFIG.service.logging_level logging_level = CONFIG.service.logging_level
logging.basicConfig(level=logging_level) logging.basicConfig(level=logging_level)