From 68cccb77a023b5389a9dd300cd5e0625d6ba15ef Mon Sep 17 00:00:00 2001 From: Aaron Tan Date: Tue, 29 Aug 2017 11:13:36 -0400 Subject: [PATCH] Enhance LOG_AGGREGATOR_PROTOCOL choice options layout --- awx/main/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.'),