Skip to content

Commit

Permalink
CH-67 Fix incorrect assignment of singleton
Browse files Browse the repository at this point in the history
  • Loading branch information
condar-metacell committed Sep 27, 2024
1 parent 09d9842 commit e11608f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def init_listener():

global _message_service_singleton
if _message_service_singleton is None:
_message_service_singleton = KeycloakMessageService(settings.PROJECT_NAME).setup_event_service()
_message_service_singleton = KeycloakMessageService(settings.PROJECT_NAME)

_message_service_singleton.setup_event_service()

Expand Down

0 comments on commit e11608f

Please sign in to comment.