Increase timeout value for composer install command

This commit is contained in:
DariusIII
2019-02-20 15:16:14 +01:00
parent 23539f5ce1
commit 253cbfffe0
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -1,4 +1,5 @@
2019-02-20 DariusIII
* Chg: Increase timeout value for composer install command
* Chg: Move certain user functions (api accessed and logged in) into specific events
* Chg: Do some small code simplification
* Chg: Add table to track failed jobs
@@ -65,6 +65,7 @@ class UpdateNNTmuxComposer extends Command
}
$this->output->writeln('<comment>Running composer install process...</comment>');
$process = new Process($command);
$process->setTimeout(360);
$process->run(function ($type, $buffer) {
if (Process::ERR === $type) {
echo $buffer;