From d071f33dd2888bf9bdf59a0b9b3bb626fc6e3a96 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Thu, 8 Oct 2020 11:31:44 -0400 Subject: [PATCH] Update the Ansible::Runner wait_for timeout Drop the wait_for timeout to 10 seconds --- lib/ansible/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/runner.rb b/lib/ansible/runner.rb index e4eadcac333..69130ad8505 100644 --- a/lib/ansible/runner.rb +++ b/lib/ansible/runner.rb @@ -362,7 +362,7 @@ def pid_file(base_dir) File.join(base_dir, "pid") end - def wait_for(path, timeout: 30.seconds) + def wait_for(path, timeout: 10.seconds) require "listen" require "concurrent"