From 9c6e42fd1b9bf283963e08f7e475747356cfea29 Mon Sep 17 00:00:00 2001 From: chris meyers Date: Mon, 13 Apr 2020 09:37:32 -0400 Subject: [PATCH] fix spelling mistake in wsbroadcast status output --- awx/main/management/commands/run_wsbroadcast.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/management/commands/run_wsbroadcast.py b/awx/main/management/commands/run_wsbroadcast.py index 219987a5a8..5b94bed1e0 100644 --- a/awx/main/management/commands/run_wsbroadcast.py +++ b/awx/main/management/commands/run_wsbroadcast.py @@ -52,7 +52,7 @@ class Command(BaseCommand): @classmethod def get_connection_status(cls, me, hostnames, data): - host_stats = [('hostame', 'state', 'start time', 'duration (sec)')] + host_stats = [('hostname', 'state', 'start time', 'duration (sec)')] for h in hostnames: connection_color = '91' # red h = safe_name(h) @@ -77,7 +77,7 @@ class Command(BaseCommand): @classmethod def get_connection_stats(cls, me, hostnames, data): - host_stats = [('hostame', 'total', 'per minute')] + host_stats = [('hostname', 'total', 'per minute')] for h in hostnames: h = safe_name(h) prefix = f'awx_{h}'