Skip to content

Commit

Permalink
Merge pull request #2 from babylonlabs-io/update-local-rabbitmq-usern…
Browse files Browse the repository at this point in the history
…ame-pass

chore: keep the local env rabbitmq credentials aligned with other ser…
  • Loading branch information
jrwbabylonlab authored Aug 7, 2024
2 parents bacf563 + 071e703 commit e5006f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions config/config-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ btc:
rpc-user: rpcuser
rpc-pass: rpcpass
queue:
queue_user: guest # can be replaced by values in .env file
queue_password: guest
queue_user: user # can be replaced by values in .env file
queue_password: password
url: "localhost:5672"
processing_timeout: 5 # 5 second
msg_max_retry_attempts: 10
Expand Down
4 changes: 2 additions & 2 deletions config/config-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ btc:
rpc-user: rpcuser
rpc-pass: rpcpass
queue:
queue_user: guest # can be replaced by values in .env file
queue_password: guest
queue_user: user # can be replaced by values in .env file
queue_password: password
url: "localhost:5672"
processing_timeout: 5 # 5 second
msg_max_retry_attempts: 3
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- "5672:5672" # AMQP protocol port
- "15672:15672" # Management UI port
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
RABBITMQ_DEFAULT_USER: user
RABBITMQ_DEFAULT_PASS: password
volumes:
- "./rabbitmq_data:/var/lib/rabbitmq"
4 changes: 2 additions & 2 deletions tests/config-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ btc:
rpc-user: rpcuser
rpc-pass: rpcpass
queue:
queue_user: guest # can be replaced by values in .env file
queue_password: guest
queue_user: user # can be replaced by values in .env file
queue_password: password
url: "localhost:5672"
processing_timeout: 60 # 5 second
msg_max_retry_attempts: 2
Expand Down

0 comments on commit e5006f3

Please sign in to comment.