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 e62bfaf + 70206ad commit 77354efCopy full SHA for 77354ef
lib/private/Files/ObjectStore/S3ConnectionTrait.php
@@ -35,6 +35,10 @@ protected function parseParams($params) {
35
throw new \Exception('Bucket has to be configured.');
36
}
37
38
+ if (isset($params['multibucket']) && $params['multibucket'] === true && isset($params['perBucket'][$params['bucket']])) {
39
+ $params = array_merge($params, $params['perBucket'][$params['bucket']]);
40
+ }
41
+
42
$this->id = 'amazon::' . $params['bucket'];
43
44
$this->test = isset($params['test']);
0 commit comments