mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
Fixed missing fstring from wsrelay logging (#15094)
Fixed missing fstring from wsrelay logging
This commit is contained in:
parent
199507c6f1
commit
672f1eb745
@ -242,7 +242,7 @@ class WebSocketRelayManager(object):
|
||||
# In this case, we'll be sharing a redis, no need to relay.
|
||||
if payload.get("hostname") == self.local_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
|
||||
|
||||
action = payload.get("action")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user