We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a75d424 + a57a9e2 commit 8d7bcc0Copy full SHA for 8d7bcc0
src/main/java/org/elasticsearch/gateway/s3/S3Gateway.java
@@ -68,6 +68,8 @@ public S3Gateway(Settings settings, ThreadPool threadPool, ClusterService cluste
68
region = "us-west-1";
69
} else if ("us-west-1".equals(regionSetting.toLowerCase())) {
70
71
+ } else if ("us-west-2".equals(regionSetting.toLowerCase())) {
72
+ region = "us-west-2";
73
} else if ("ap-southeast".equals(regionSetting.toLowerCase())) {
74
region = "ap-southeast-1";
75
} else if ("ap-southeast-1".equals(regionSetting.toLowerCase())) {
0 commit comments