diff --git a/src/Commands/core/RunserverCommands.php b/src/Commands/core/RunserverCommands.php index 92c97479b6..e57faa0a45 100644 --- a/src/Commands/core/RunserverCommands.php +++ b/src/Commands/core/RunserverCommands.php @@ -75,6 +75,7 @@ public function runserver($uri = null, $options = ['default-server' => self::REQ $router = Path::join(DRUSH_BASE_PATH, '/misc/d8-rs-router.php'); $php = $this->getConfig()->get('php', 'php'); $process = $this->processManager()->process([$php, '-S', $addr . ':' . $uri['port'], $router]); + $process->setTimeout(null); $process->setWorkingDirectory(Drush::bootstrapManager()->getRoot()); $process->setTty(Tty::isTtySupported()); if ($options['quiet']) {