mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
Merge pull request #6677 from chrismeyersfsu/fix-spelling
fix spelling mistake in wsbroadcast status output Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -52,7 +52,7 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_connection_status(cls, me, hostnames, data):
|
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:
|
for h in hostnames:
|
||||||
connection_color = '91' # red
|
connection_color = '91' # red
|
||||||
h = safe_name(h)
|
h = safe_name(h)
|
||||||
@@ -77,7 +77,7 @@ class Command(BaseCommand):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_connection_stats(cls, me, hostnames, data):
|
def get_connection_stats(cls, me, hostnames, data):
|
||||||
host_stats = [('hostame', 'total', 'per minute')]
|
host_stats = [('hostname', 'total', 'per minute')]
|
||||||
for h in hostnames:
|
for h in hostnames:
|
||||||
h = safe_name(h)
|
h = safe_name(h)
|
||||||
prefix = f'awx_{h}'
|
prefix = f'awx_{h}'
|
||||||
|
|||||||
Reference in New Issue
Block a user