|
@@ -55,6 +55,7 @@ class CommandConsumer implements ConsumerInterface
|
|
|
$consolePath = $this->serviceContainer->get('kernel')->getRootDir() . '/../bin/console';
|
|
|
$command = $name . ' ' . implode(' ', $input);
|
|
|
$process = new Process("{$consolePath} {$command}");
|
|
|
+ $process->setTimeout(0);
|
|
|
$process->run();
|
|
|
$content = $process->getOutput();
|
|
|
echo $content;
|