From 3bd1cfbbb8a8d41dc4dc3dd8ddafedbac3849ad3 Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Fri, 13 Jan 2017 15:27:06 +0100 Subject: [PATCH] Raise timeout for runLocally to 300 seconds Similar to other locations this is now also raised to 5 minutes. --- src/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.php b/src/functions.php index f25a2ddae..5a315f1f5 100644 --- a/src/functions.php +++ b/src/functions.php @@ -331,7 +331,7 @@ function run($command) * @return Result Output of command. * @throws \RuntimeException */ -function runLocally($command, $timeout = 60) +function runLocally($command, $timeout = 300) { $command = parse($command);