diff --git a/awx/main/conf.py b/awx/main/conf.py index b8d47e591e..7b8e5f92db 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -446,7 +446,7 @@ register( register( 'LOG_AGGREGATOR_PROTOCOL', field_class=fields.ChoiceField, - choices=['https', 'tcp', 'udp'], + choices=[('https', 'HTTPS'), ('tcp', 'TCP'), ('udp', 'UDP')], default='https', label=_('Logging Aggregator Protocol'), help_text=_('Protocol used to communicate with log aggregator.'),