Skip to content

Commit

Permalink
🐛 fix(queue): decode broker settings BE
Browse files Browse the repository at this point in the history
  • Loading branch information
dannil76 committed Sep 2, 2024
1 parent 8e82042 commit 965fe7b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ def get_message_queue() -> IMessageQueue:
return MessageBroker.create(broker_type=settings.APP_MESSAGE_BROKER_TYPE,
redis_host=settings.APP_MESSAGE_BROKER_HOST,
redis_port=settings.APP_MESSAGE_BROKER_PORT,
redis_password=settings.APP_MESSAGE_BROKER_PASSWORD,
redis_username=settings.APP_MESSAGE_BROKER_USERNAME,)
redis_password=settings.APP_MESSAGE_BROKER_PASSWORD.get_secret_value(),
redis_username=settings.APP_MESSAGE_BROKER_USERNAME.get_secret_value())

0 comments on commit 965fe7b

Please sign in to comment.