From ef2499c8d7a7bf13d27b4e651b42a380830526f4 Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Sun, 26 Mar 2017 14:17:30 +0700 Subject: [PATCH] Fix args --- src/Executor/ParallelExecutor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Executor/ParallelExecutor.php b/src/Executor/ParallelExecutor.php index 7c6d4f98..f829e177 100644 --- a/src/Executor/ParallelExecutor.php +++ b/src/Executor/ParallelExecutor.php @@ -65,7 +65,7 @@ class ParallelExecutor implements ExecutorInterface $localhost = new Localhost(); $limit = (int)$this->input->getOption('limit') ?: count($hosts); - Storage::persist($hosts, $this->input, $this->output); + Storage::persist($hosts); foreach ($tasks as $task) { $success = true;