Merge pull request #4489 from rish4bhn/develop
[fix] Allow capital letters in bucket name for S3 Backup DocType
This commit is contained in:
commit
bb813c7fd5
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class S3BackupSettings(Document):
|
|||
aws_secret_access_key=self.get_password('secret_access_key'),
|
||||
)
|
||||
|
||||
bucket_lower = str(self.bucket).lower()
|
||||
bucket_lower = str(self.bucket)
|
||||
|
||||
try:
|
||||
conn.list_buckets()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue