Skip to content

Commit

Permalink
Fixes #1840: Increase Robo Executor Time Out or Make it configurable. (
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash authored Jul 31, 2017
1 parent cdd5e8a commit 5cb972f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Robo/Common/Executor.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public function waitForUrlAvailable($url) {
* @throws \Exception
*/
public function wait(callable $callable, array $args, $message = '') {
$maxWait = 15 * 1000;
$maxWait = 60 * 1000;
$checkEvery = 1 * 1000;
$start = microtime(TRUE) * 1000;
$end = $start + $maxWait;
Expand Down

0 comments on commit 5cb972f

Please sign in to comment.