Skip to content

Commit

Permalink
change environment variables in hoppy (#2163)
Browse files Browse the repository at this point in the history
  • Loading branch information
msnwatson authored Oct 31, 2023
1 parent db1248d commit 09ccdea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/lib-hoppy/hoppy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

RABBITMQ_CONFIG = {
"host": os.environ.get("RABBITMQ_PLACEHOLDERS_HOST") or "localhost",
"username": os.environ.get("RABBITMQ_PLACEHOLDERS_USERNAME") or "guest",
"password": os.environ.get("RABBITMQ_PLACEHOLDERS_USERPASSWORD") or "guest",
"username": os.environ.get("RABBITMQ_USERNAME") or "guest",
"password": os.environ.get("RABBITMQ_PASSWORD") or "guest",
"port": int(os.environ.get("RABBITMQ_PORT") or 5672),
"retry_limit": int(os.environ.get("RABBITMQ_RETRY_LIMIT") or 3),
"timeout": int(os.environ.get("RABBITMQ_TIMEOUT") or 60 * 60 * 3), # 3 hours
Expand Down

0 comments on commit 09ccdea

Please sign in to comment.