add an AWX_ISOLATED_VERBOSITY setting for debugging isolated connections

This commit is contained in:
Ryan Petrello
2018-11-26 17:26:30 -05:00
parent fc0a039097
commit d5c6c589b2
3 changed files with 21 additions and 2 deletions

View File

@@ -197,6 +197,18 @@ register(
category_slug='jobs',
)
register(
'AWX_ISOLATED_VERBOSITY',
field_class=fields.IntegerField,
min_value=0,
max_value=5,
label=_('Verbosity level for isolated node management tasks'),
help_text=_('This can be raised to aid in debugging connection issues for isolated task execution'),
category=_('Jobs'),
category_slug='jobs',
default=0
)
register(
'AWX_ISOLATED_CHECK_INTERVAL',
field_class=fields.IntegerField,