Skip to content

Commit

Permalink
removed debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
Geary-Layne committed Nov 1, 2024
1 parent e1f8238 commit b4ea48f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions python/idsse_common/idsse/common/rabbitmq_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ def _initialize_exchange_and_queue(
exclusive=queue.exclusive,
durable=queue.durable,
auto_delete=queue.auto_delete,
# arguments=queue.arguments
arguments=None
arguments=queue.arguments
)

# Bind queue to exchange with routing_key. May need to support multiple keys in the future
Expand Down Expand Up @@ -218,8 +217,7 @@ def _setup_exch_and_queue(channel: Channel, exch: Exch, queue: Queue):
exclusive=queue.exclusive,
durable=queue.durable,
auto_delete=queue.auto_delete,
# arguments=queue.arguments
arguments=None
arguments=queue.arguments
)
queue_name = result.method.queue
logger.debug('Declared queue: %s', queue_name)
Expand Down

0 comments on commit b4ea48f

Please sign in to comment.