Merge pull request #6101 from cbartz/patch-1

Missing array assignment in Swift.php
This commit is contained in:
Lukas Reschke 2017-08-15 18:17:58 +02:00 committed by GitHub
commit f698aa11e7
1 changed files with 1 additions and 6 deletions

View File

@ -74,11 +74,6 @@ class Swift extends \OC\Files\Storage\Common {
/** @var string */
private $id;
/**
* @var array
*/
private static $tmpFiles = array();
/**
* Key value cache mapping path to data object. Maps path to
* \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject for existing
@ -617,7 +612,7 @@ class Swift extends \OC\Files\Storage\Common {
$fileData = fopen($tmpFile, 'r');
$this->getContainer()->uploadObject($path, $fileData);
// invalidate target object to force repopulation on fetch
$this->objectCache->remove(self::$tmpFiles[$tmpFile]);
$this->objectCache->remove($path);
unlink($tmpFile);
}