|
|
|
@ -139,9 +139,10 @@ class Scanner extends PublicEmitter { |
|
|
|
$this->triggerPropagator($storage, $path); |
|
|
|
}); |
|
|
|
|
|
|
|
$storage->getPropagator()->beginBatch(); |
|
|
|
$propagator = $storage->getPropagator(); |
|
|
|
$propagator->beginBatch(); |
|
|
|
$scanner->backgroundScan(); |
|
|
|
$storage->getPropagator()->commitBatch(); |
|
|
|
$propagator->commitBatch(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -190,14 +191,15 @@ class Scanner extends PublicEmitter { |
|
|
|
$this->db->beginTransaction(); |
|
|
|
} |
|
|
|
try { |
|
|
|
$storage->getPropagator()->beginBatch(); |
|
|
|
$propagator = $storage->getPropagator(); |
|
|
|
$propagator->beginBatch(); |
|
|
|
$scanner->scan($relativePath, \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG | \OC\Files\Cache\Scanner::REUSE_SIZE); |
|
|
|
$cache = $storage->getCache(); |
|
|
|
if ($cache instanceof Cache) { |
|
|
|
// only re-calculate for the root folder we scanned, anything below that is taken care of by the scanner
|
|
|
|
$cache->correctFolderSize($relativePath); |
|
|
|
} |
|
|
|
$storage->getPropagator()->commitBatch(); |
|
|
|
$propagator->commitBatch(); |
|
|
|
} catch (StorageNotAvailableException $e) { |
|
|
|
$this->logger->error('Storage ' . $storage->getId() . ' not available'); |
|
|
|
$this->logger->logException($e); |
|
|
|
|