mirror of
https://github.com/ansible/awx.git
synced 2026-05-09 02:17:37 -02:30
Fixed missing fstring from wsrelay logging (#15094)
Fixed missing fstring from wsrelay logging
This commit is contained in:
@@ -242,7 +242,7 @@ class WebSocketRelayManager(object):
|
|||||||
# In this case, we'll be sharing a redis, no need to relay.
|
# In this case, we'll be sharing a redis, no need to relay.
|
||||||
if payload.get("hostname") == self.local_hostname:
|
if payload.get("hostname") == self.local_hostname:
|
||||||
hostname = payload.get("hostname")
|
hostname = payload.get("hostname")
|
||||||
logger.debug("Received a heartbeat request for {hostname}. Skipping as we use redis for local host.")
|
logger.debug(f"Received a heartbeat request for {hostname}. Skipping as we use redis for local host.")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
action = payload.get("action")
|
action = payload.get("action")
|
||||||
|
|||||||
Reference in New Issue
Block a user