Skip to content

Commit

Permalink
Mark subscriber not queue_exclusive to allow for consumer restarts
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jan 15, 2025
1 parent e7d56b1 commit 758698e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neon_mq_connector/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def register_subscriber(self, name: str, vhost: str,
on_error=on_error, exchange=exchange,
exchange_type=ExchangeType.fanout.value,
exchange_reset=exchange_reset,
auto_ack=auto_ack, queue_exclusive=True,
auto_ack=auto_ack, queue_exclusive=False,
skip_on_existing=skip_on_existing,
restart_attempts=restart_attempts)

Expand Down

0 comments on commit 758698e

Please sign in to comment.