mirror of
https://github.com/ansible/awx.git
synced 2026-02-27 15:58:45 -03: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(
|
||||
'LOG_AGGREGATOR_USERNAME',
|
||||
field_class=fields.CharField,
|
||||
allow_null=True,
|
||||
allow_blank=True,
|
||||
default='',
|
||||
label=_('Logging Aggregator Username'),
|
||||
help_text=_('Username for external log aggregator (if required).'),
|
||||
category=_('Logging'),
|
||||
@@ -268,7 +269,8 @@ register(
|
||||
register(
|
||||
'LOG_AGGREGATOR_PASSWORD',
|
||||
field_class=fields.CharField,
|
||||
allow_null=True,
|
||||
allow_blank=True,
|
||||
default='',
|
||||
encrypted=True,
|
||||
label=_('Logging Aggregator Password/Token'),
|
||||
help_text=_('Password or authentication token for external log aggregator (if required).'),
|
||||
|
||||
Reference in New Issue
Block a user