From ffe561df62d34116b5b745083d793ae27449346f Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 26 Apr 2016 21:08:33 +0300 Subject: [PATCH] Remove pcntl warning for now --- console.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/console.php b/console.php index fc571b03f1e..72f961515d7 100644 --- a/console.php +++ b/console.php @@ -79,10 +79,6 @@ try { exit(1); } - if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) { - echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL; - } - $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest()); $application->loadCommands(new ArgvInput(), new ConsoleOutput()); $application->run();