Skip to content

Commit 3eade80

Browse files
committed
feat: add account_password_reset_request message queue
1 parent 2cb905c commit 3eade80

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/development/stack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ services:
110110
# You cannot access the database-to-AMQP bridge directly.
111111
environment:
112112
AMQP_URI_FILE: /run/secrets/pg-amqp-bridge_amqp-uri
113-
BRIDGE_CHANNELS: account_register:account_register,invite:invite
113+
BRIDGE_CHANNELS: account_password_reset_request:account_password_reset_request,account_register:account_register,invite:invite
114114
DELIVERY_MODE: PERSISTENT
115115
POSTGRESQL_URI_FILE: /run/secrets/pg-amqp-bridge_postgresql-uri
116116
RUST_LOG: info

src/production/configurations/rabbitmq/definitions.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"queues": [
3+
{
4+
"name": "account_password_reset_request",
5+
"vhost": "/",
6+
"durable": true,
7+
"auto_delete": false,
8+
"arguments": {
9+
"x-queue-type": "classic"
10+
}
11+
},
312
{
413
"name": "account_register",
514
"vhost": "/",

0 commit comments

Comments
 (0)