Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-10-24 07:17:23 +0300
committerStan Hu <stanhu@gmail.com>2016-10-24 07:35:52 +0300
commit59ed1d3cbbf6c89fde202889af798fc189035313 (patch)
treed23844cbdc785e6871c8c58ff1852d16b3be7e21 /config/mail_room.yml
parenta98ad03ba18da0b1534f36dafafa9a1c644d0bf1 (diff)
Fix reply-by-email not working due to queue name mismatch
mail_room was configured to deliver mail to the `incoming_email` queue while `EmailReceiveWorker` was reading the `email_receiver` queue. Adds a migration that repeats the work of a previous migration to ensure all mails that wound up in the old queue get processed. Closes #23689
Diffstat (limited to 'config/mail_room.yml')
-rw-r--r--config/mail_room.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/mail_room.yml b/config/mail_room.yml
index c639f8260aa..68697bd1dc4 100644
--- a/config/mail_room.yml
+++ b/config/mail_room.yml
@@ -25,7 +25,7 @@
:delivery_options:
:redis_url: <%= config[:redis_url].to_json %>
:namespace: <%= Gitlab::Redis::SIDEKIQ_NAMESPACE %>
- :queue: incoming_email
+ :queue: email_receiver
:worker: EmailReceiverWorker
:arbitration_method: redis