mirror of
https://github.com/ansible/awx.git
synced 2026-05-17 22:37:41 -02:30
Set default value is 0 for idle_timeout
This commit is contained in:
@@ -412,9 +412,12 @@ register(
|
||||
'DEFAULT_JOB_IDLE_TIMEOUT',
|
||||
field_class=fields.IntegerField,
|
||||
min_value=0,
|
||||
default=600,
|
||||
default=0,
|
||||
label=_('Default Job Idle Timeout'),
|
||||
help_text=_('If no output is detected from ansible in this number of seconds the execution will be terminated.'),
|
||||
help_text=_(
|
||||
'If no output is detected from ansible in this number of seconds the execution will be terminated. '
|
||||
'Use value of 0 to used default idle_timeout is 600s.'
|
||||
),
|
||||
category=_('Jobs'),
|
||||
category_slug='jobs',
|
||||
unit=_('seconds'),
|
||||
|
||||
Reference in New Issue
Block a user