summaryrefslogtreecommitdiffstats
path: root/awx_collection/plugins/modules/project_update.py
diff options
context:
space:
mode:
authorsean-m-sullivan <ssulliva@redhat.com>2022-04-23 01:54:44 +0200
committerSean Sullivan <ssulliva@redhat.com>2022-05-18 15:57:40 +0200
commitdf649e2c569c8cfbf0460bda3a8d13568dcbe409 (patch)
treed1a5dcd0fae0a1afca6f2a0ead57d0f22af761d2 /awx_collection/plugins/modules/project_update.py
parentAdd help text popovers to /#/applications details fields (#12222) (diff)
downloadawx-df649e2c569c8cfbf0460bda3a8d13568dcbe409.tar.xz
awx-df649e2c569c8cfbf0460bda3a8d13568dcbe409.zip
update awx collection wait interval to 2
Diffstat (limited to 'awx_collection/plugins/modules/project_update.py')
-rw-r--r--awx_collection/plugins/modules/project_update.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/awx_collection/plugins/modules/project_update.py b/awx_collection/plugins/modules/project_update.py
index aa8b97e526..6ccdca1fdb 100644
--- a/awx_collection/plugins/modules/project_update.py
+++ b/awx_collection/plugins/modules/project_update.py
@@ -41,7 +41,7 @@ options:
description:
- The interval to request an update from the controller.
required: False
- default: 1
+ default: 2
type: float
timeout:
description:
@@ -86,7 +86,7 @@ def main():
name=dict(required=True, aliases=['project']),
organization=dict(),
wait=dict(default=True, type='bool'),
- interval=dict(default=1.0, type='float'),
+ interval=dict(default=2.0, type='float'),
timeout=dict(default=None, type='int'),
)