We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents daa3f77 + e67c8e7 commit 8a748a7Copy full SHA for 8a748a7
lib/private/Files/ObjectStore/S3ConnectionTrait.php
@@ -34,6 +34,10 @@ protected function parseParams($params) {
34
throw new \Exception('Bucket has to be configured.');
35
}
36
37
+ if (isset($params['multibucket']) && $params['multibucket'] === true && isset($params['perBucket'][$params['bucket']])) {
38
+ $params = array_merge($params, $params['perBucket'][$params['bucket']]);
39
+ }
40
+
41
$this->id = 'amazon::' . $params['bucket'];
42
43
$this->test = isset($params['test']);
0 commit comments