Do not setup the default FS on normal routes

This should help with load times hopefully. Only initialize the FS if we
actually ned it.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2020-10-31 15:10:48 +01:00
parent 404785dd2b
commit 48d843858d
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with 1 additions and 1 deletions

View File

@ -134,6 +134,7 @@ class ViewController extends Controller {
* @throws \OCP\Files\NotFoundException * @throws \OCP\Files\NotFoundException
*/ */
protected function getStorageInfo() { protected function getStorageInfo() {
\OC_Util::setupFS();
$dirInfo = \OC\Files\Filesystem::getFileInfo('/', false); $dirInfo = \OC\Files\Filesystem::getFileInfo('/', false);
return \OC_Helper::getStorageInfo('/', $dirInfo); return \OC_Helper::getStorageInfo('/', $dirInfo);

View File

@ -1006,7 +1006,6 @@ class OC {
OC_App::loadApps(['filesystem', 'logging']); OC_App::loadApps(['filesystem', 'logging']);
OC_App::loadApps(); OC_App::loadApps();
} }
OC_Util::setupFS();
OC::$server->getRouter()->match(\OC::$server->getRequest()->getRawPathInfo()); OC::$server->getRouter()->match(\OC::$server->getRequest()->getRawPathInfo());
return; return;
} catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) {