clarify that logging username/password is only valid for HTTP/s

This commit is contained in:
Ryan Petrello
2020-04-08 20:11:30 -04:00
committed by Christian Adams
parent 269558876e
commit 8cdd42307c

View File

@@ -667,7 +667,7 @@ register(
allow_blank=True, allow_blank=True,
default='', default='',
label=_('Logging Aggregator Username'), label=_('Logging Aggregator Username'),
help_text=_('Username for external log aggregator (if required).'), help_text=_('Username for external log aggregator (if required; HTTP/s only).'),
category=_('Logging'), category=_('Logging'),
category_slug='logging', category_slug='logging',
required=False, required=False,
@@ -679,7 +679,7 @@ register(
default='', default='',
encrypted=True, encrypted=True,
label=_('Logging Aggregator Password/Token'), label=_('Logging Aggregator Password/Token'),
help_text=_('Password or authentication token for external log aggregator (if required).'), help_text=_('Password or authentication token for external log aggregator (if required; HTTP/s only).'),
category=_('Logging'), category=_('Logging'),
category_slug='logging', category_slug='logging',
required=False, required=False,