diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-09-08 01:34:03 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-09-08 14:15:41 +0200 |
commit | 644755df663e8dc295e92700da208a28c13cbaab (patch) | |
tree | ed9299c6e9d5091248c57907827721b15b70a82e /apps/files/command | |
parent | 637cff68ac2944d6029eb015640bbbd0e686641b (diff) | |
download | nextcloud-server-644755df663e8dc295e92700da208a28c13cbaab.tar.gz nextcloud-server-644755df663e8dc295e92700da208a28c13cbaab.zip |
Use bigger transactions when doing explicit file system scans
Diffstat (limited to 'apps/files/command')
-rw-r--r-- | apps/files/command/scan.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/command/scan.php b/apps/files/command/scan.php index 3412cf80dea..e4d719a8b4b 100644 --- a/apps/files/command/scan.php +++ b/apps/files/command/scan.php @@ -46,7 +46,7 @@ class Scan extends Command { } protected function scanFiles($user, OutputInterface $output) { - $scanner = new \OC\Files\Utils\Scanner($user); + $scanner = new \OC\Files\Utils\Scanner($user, \OC::$server->getDatabaseConnection()); $scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function ($path) use ($output) { $output->writeln("Scanning <info>$path</info>"); }); |