Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public S3BlobStore(Settings settings, AmazonS3 client, String bucket, @Nullable
while (retry <= maxRetries) {
try {
if (!client.doesBucketExist(bucket)) {
deprecationLogger.deprecated("Auto creation of the bucket for an s3 backed repository is deprecated" +
" and will be removed in 6.0.");
CreateBucketRequest request = null;
if (region != null) {
request = new CreateBucketRequest(bucket, region);
Expand Down