summaryrefslogtreecommitdiffstats
path: root/awx/main/wsrelay.py
diff options
context:
space:
mode:
authorlucas-benedito <55454581+lucas-benedito@users.noreply.github.com>2024-04-16 19:32:34 +0200
committerGitHub <noreply@github.com>2024-04-16 19:32:34 +0200
commit672f1eb7454b490f68cf89994dc55cb93330f6b1 (patch)
tree3631dbe1c4ee4a7e439190ad4889fc351891c025 /awx/main/wsrelay.py
parentSupport Google credentials on Terraform credentials type (diff)
downloadawx-672f1eb7454b490f68cf89994dc55cb93330f6b1.tar.xz
awx-672f1eb7454b490f68cf89994dc55cb93330f6b1.zip
Fixed missing fstring from wsrelay logging (#15094)
Fixed missing fstring from wsrelay logging
Diffstat (limited to '')
-rw-r--r--awx/main/wsrelay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/awx/main/wsrelay.py b/awx/main/wsrelay.py
index 8a1a834295..fdf6d0e454 100644
--- a/awx/main/wsrelay.py
+++ b/awx/main/wsrelay.py
@@ -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")