From: Aaron Schulz Date: Sun, 16 Feb 2014 04:25:08 +0000 (-0800) Subject: Actually write-back the container cache in SwiftFileBackend X-Git-Tag: 1.31.0-rc.0~16901 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=0259fccfe3ac35088510b5e5765750b72d109a35;p=lhc%2Fweb%2Fwiklou.git Actually write-back the container cache in SwiftFileBackend Change-Id: Ia072dd09c1fa5b4dec20a80e69425f7364488362 --- diff --git a/includes/filebackend/SwiftFileBackend.php b/includes/filebackend/SwiftFileBackend.php index caf15aa644..27493ae2c5 100644 --- a/includes/filebackend/SwiftFileBackend.php +++ b/includes/filebackend/SwiftFileBackend.php @@ -1332,6 +1332,7 @@ class SwiftFileBackend extends FileBackendStore { return $stat; } else { $this->containerStatCache->set( $container, 'stat', $stat ); // cache it + $this->setContainerCache( $container, $stat ); // update persistent cache } } elseif ( $rcode === 404 ) { return false;