Enhance LOG_AGGREGATOR_PROTOCOL choice options layout

This commit is contained in:
Aaron Tan 2017-08-29 11:13:36 -04:00
parent e2d943fd1a
commit 68cccb77a0

View File

@ -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.'),