Merge pull request #7076 from nextcloud/s3-valid-bucket-name

Better error message for invalid bucket names
This commit is contained in:
Morris Jobke 2017-11-06 16:16:28 +01:00 committed by GitHub
commit 5ed05219d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -90,8 +90,8 @@ trait S3ConnectionTrait {
}
$this->connection = new S3Client($options);
if (!S3Client::isBucketDnsCompatible($this->bucket)) {
throw new \Exception("The configured bucket name is invalid.");
if (!$this->connection->isBucketDnsCompatible($this->bucket)) {
throw new \Exception("The configured bucket name is invalid: " . $this->bucket);
}
if (!$this->connection->doesBucketExist($this->bucket)) {