From 00fbc76e6957fd46bb326830f134e97445e98f9c Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 2 Aug 2016 13:30:26 -0700 Subject: [PATCH] Increase async time limit on tests to 10 seconds. (#16921) --- test/integration/roles/test_binary_modules/tasks/main.yml | 4 ++-- test/integration/test_async.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/roles/test_binary_modules/tasks/main.yml b/test/integration/roles/test_binary_modules/tasks/main.yml index e40ea9ded5c..e7139dbf37e 100644 --- a/test/integration/roles/test_binary_modules/tasks/main.yml +++ b/test/integration/roles/test_binary_modules/tasks/main.yml @@ -28,7 +28,7 @@ - name: Async Hello, World! action: "helloworld_{{ ansible_system|lower }}" - async: 1 + async: 10 poll: 1 when: ansible_system != 'Win32NT' register: async_hello_world @@ -42,7 +42,7 @@ action: "helloworld_{{ ansible_system|lower }}" args: name: Ansible - async: 1 + async: 10 poll: 1 when: ansible_system != 'Win32NT' register: async_hello_ansible diff --git a/test/integration/test_async.yml b/test/integration/test_async.yml index aa6c2467f12..e54ffd3d474 100644 --- a/test/integration/test_async.yml +++ b/test/integration/test_async.yml @@ -4,7 +4,7 @@ # make sure non-JSON data before module output is ignored - name: async ping with invalid locale via ssh ping: - async: 3 + async: 10 poll: 1 register: result - debug: var=result