From fc70d8b321a97b3594bff0a2820e1410da4c7792 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 30 Sep 2019 12:17:46 -0400 Subject: [PATCH] Adjust help message; we're no longer using the insights client --- awx/main/management/commands/gather_analytics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/management/commands/gather_analytics.py b/awx/main/management/commands/gather_analytics.py index eac52d1ef3..8f66b6f12a 100644 --- a/awx/main/management/commands/gather_analytics.py +++ b/awx/main/management/commands/gather_analytics.py @@ -12,7 +12,7 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument('--ship', dest='ship', action='store_true', - help='Enable to ship metrics via insights-client') + help='Enable to ship metrics to the Red Hat Cloud') def init_logging(self): self.logger = logging.getLogger('awx.main.analytics')