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.
1 parent e89a8d8 commit 2ab29a6Copy full SHA for 2ab29a6
lib/private/Files/ObjectStore/S3ConnectionTrait.php
@@ -39,6 +39,10 @@ protected function parseParams($params) {
39
throw new \Exception('Bucket has to be configured.');
40
}
41
42
+ if (isset($params['multibucket']) && $params['multibucket'] === true && isset($params['perBucket'][$params['bucket']])) {
43
+ $params = array_merge($params, $params['perBucket'][$params['bucket']]);
44
+ }
45
+
46
$this->id = 'amazon::' . $params['bucket'];
47
48
$this->test = isset($params['test']);
0 commit comments