Skip to content
Snippets Groups Projects

Fix multiple rabbitmq consumers receiving all messages

Merged Fabian Seidl requested to merge fix-for-multiple-rabbitmq-consumers into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -110,7 +110,7 @@ func (e *Service) setupQueueConsume(topic string, stopChan chan os.Signal) error
nil,
)
if err != nil {
return &customerrs.AMQPInitFailError{Action: "failed binding to queue to exchange", Err: err}
return &customerrs.AMQPInitFailError{Action: "failed binding queue to exchange", Err: err}
}
msgs, err := e.channel.Consume(
Loading