Skip to content

Commit

Permalink
Merge pull request ansible#4293 from chrismeyersfsu/fix-ws_disconnect…
Browse files Browse the repository at this point in the history
…_log

missing f"" on log statement
  • Loading branch information
ryanpetrello authored May 5, 2020
2 parents e9cda0c + ba7e2c9 commit a7ca6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/main/consumers.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async def connect(self):
logger.info(f"client '{self.channel_name}' joined the broadcast group.")

async def disconnect(self, code):
logger.info("client '{self.channel_name}' disconnected from the broadcast group.")
logger.info(f"client '{self.channel_name}' disconnected from the broadcast group.")
await self.channel_layer.group_discard(settings.BROADCAST_WEBSOCKET_GROUP_NAME, self.channel_name)

async def internal_message(self, event):
Expand Down

0 comments on commit a7ca6e2

Please sign in to comment.