summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/ObjectStore/SwiftFactory.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-03-12 19:59:33 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-03-14 13:57:14 +0100
commitd3e7996e808fa50071cd0b5397bd5b21fb9f2d2f (patch)
tree34459dcfe1ee0b040495c7a1bb9bb8488ba30ff9 /lib/private/Files/ObjectStore/SwiftFactory.php
parent23a02eaf141647c12f964651ba86299966a2d108 (diff)
downloadnextcloud-server-d3e7996e808fa50071cd0b5397bd5b21fb9f2d2f.tar.gz
nextcloud-server-d3e7996e808fa50071cd0b5397bd5b21fb9f2d2f.zip
Fix bucket and container usage
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Files/ObjectStore/SwiftFactory.php')
-rw-r--r--lib/private/Files/ObjectStore/SwiftFactory.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/ObjectStore/SwiftFactory.php b/lib/private/Files/ObjectStore/SwiftFactory.php
index eab3441ff2c..7bb76782a82 100644
--- a/lib/private/Files/ObjectStore/SwiftFactory.php
+++ b/lib/private/Files/ObjectStore/SwiftFactory.php
@@ -77,7 +77,7 @@ class SwiftFactory {
$this->params['container'] = $this->params['bucket'];
}
if (!isset($this->params['container'])) {
- $this->params['container'] = 'owncloud';
+ $this->params['container'] = 'nextcloud';
}
if (!isset($this->params['autocreate'])) {
// should only be true for tests
@@ -95,7 +95,7 @@ class SwiftFactory {
$this->params['tenantName'] = $this->params['tenant'];
}
- $cacheKey = $userName . '@' . $this->params['url'] . '/' . $this->params['bucket'];
+ $cacheKey = $userName . '@' . $this->params['url'] . '/' . $this->params['container'];
$token = $this->getCachedToken($cacheKey);
$hasToken = is_array($token) && (new \DateTimeImmutable($token['expires_at'])) > (new \DateTimeImmutable('now'));
if ($hasToken) {