mirror of
https://github.com/ansible/awx.git
synced 2026-05-20 23:37:39 -02:30
Add ability to disable global job timeout.
This commit is contained in:
@@ -148,9 +148,9 @@ class JobOptions(BaseModel):
|
||||
allow_simultaneous = models.BooleanField(
|
||||
default=False,
|
||||
)
|
||||
timeout = models.PositiveIntegerField(
|
||||
timeout = models.IntegerField(
|
||||
blank=True,
|
||||
default=0,
|
||||
default=0,
|
||||
)
|
||||
|
||||
extra_vars_dict = VarsDictProperty('extra_vars', True)
|
||||
|
||||
Reference in New Issue
Block a user