mirror of
https://github.com/ansible/awx.git
synced 2026-03-18 17:37:30 -02:30
default log aggregator username and password to an empty string
other configuration options seem to follow this pattern; the UI code seems to expect that it can send across an empty string see: #5276
This commit is contained in:
@@ -258,7 +258,8 @@ register(
|
|||||||
register(
|
register(
|
||||||
'LOG_AGGREGATOR_USERNAME',
|
'LOG_AGGREGATOR_USERNAME',
|
||||||
field_class=fields.CharField,
|
field_class=fields.CharField,
|
||||||
allow_null=True,
|
allow_blank=True,
|
||||||
|
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).'),
|
||||||
category=_('Logging'),
|
category=_('Logging'),
|
||||||
@@ -268,7 +269,8 @@ register(
|
|||||||
register(
|
register(
|
||||||
'LOG_AGGREGATOR_PASSWORD',
|
'LOG_AGGREGATOR_PASSWORD',
|
||||||
field_class=fields.CharField,
|
field_class=fields.CharField,
|
||||||
allow_null=True,
|
allow_blank=True,
|
||||||
|
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).'),
|
||||||
|
|||||||
Reference in New Issue
Block a user