From 76ba3635135dbee29db6590b40b3dd6da0dd92a1 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 4 Aug 2020 08:59:45 -0400 Subject: [PATCH] mark PRIMARY_GALAXY_USERNAME and PRIMARY_GALAXY_PASSWORD as deprecated --- awx/main/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/awx/main/conf.py b/awx/main/conf.py index 5517a438f6..8d091894d6 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -458,7 +458,8 @@ register( required=False, allow_blank=True, label=_('Primary Galaxy Server Username'), - help_text=_('For using a galaxy server at higher precedence than the public Ansible Galaxy. ' + help_text=_('(This setting is deprecated and will be removed in a future release) ' + 'For using a galaxy server at higher precedence than the public Ansible Galaxy. ' 'The username to use for basic authentication against the Galaxy instance, ' 'this is mutually exclusive with PRIMARY_GALAXY_TOKEN.'), category=_('Jobs'), @@ -472,7 +473,8 @@ register( required=False, allow_blank=True, label=_('Primary Galaxy Server Password'), - help_text=_('For using a galaxy server at higher precedence than the public Ansible Galaxy. ' + help_text=_('(This setting is deprecated and will be removed in a future release) ' + 'For using a galaxy server at higher precedence than the public Ansible Galaxy. ' 'The password to use for basic authentication against the Galaxy instance, ' 'this is mutually exclusive with PRIMARY_GALAXY_TOKEN.'), category=_('Jobs'),