Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jabolina committed Aug 22, 2020
1 parent 4bb137a commit 0d99c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/relt/rabbitmq.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (c *core) declarations() error {
log.Fatalf("error declaring exchange %s: %v", c.configuration.Exchange, err)
}

_, err = ch.QueueDeclare(c.configuration.Name, false, true, true, false, nil)
_, err = ch.QueueDeclare(c.configuration.Name, true, false, true, false, nil)
if err != nil {
return err
}
Expand Down

0 comments on commit 0d99c86

Please sign in to comment.