Merge pull request #357 from jangsutsr/6103_enhance_log_protocol_choice_layout

Enhance LOG_AGGREGATOR_PROTOCOL choice options layout
This commit is contained in:
Aaron Tan
2017-08-29 17:02:47 -04:00
committed by GitHub

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