JCLOUDS-1182: Added Seoul and Mumbai regions to AWS This commit addresses test failures in AWSS3ServiceIntegrationLiveTest#testGetAssignableLocations.
Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/bc97afc0 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/bc97afc0 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/bc97afc0 Branch: refs/heads/master Commit: bc97afc0c153f1c9593b44ef5d6e5d750e5d2eb0 Parents: 7826d22 Author: Andrew Gaul <[email protected]> Authored: Tue Oct 18 21:06:15 2016 -0700 Committer: Andrew Gaul <[email protected]> Committed: Tue Oct 18 21:06:15 2016 -0700 ---------------------------------------------------------------------- .../integration/AWSS3ServiceIntegrationLiveTest.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/bc97afc0/providers/aws-s3/src/test/java/org/jclouds/aws/s3/blobstore/integration/AWSS3ServiceIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/providers/aws-s3/src/test/java/org/jclouds/aws/s3/blobstore/integration/AWSS3ServiceIntegrationLiveTest.java b/providers/aws-s3/src/test/java/org/jclouds/aws/s3/blobstore/integration/AWSS3ServiceIntegrationLiveTest.java index 19a6779..00b926f 100644 --- a/providers/aws-s3/src/test/java/org/jclouds/aws/s3/blobstore/integration/AWSS3ServiceIntegrationLiveTest.java +++ b/providers/aws-s3/src/test/java/org/jclouds/aws/s3/blobstore/integration/AWSS3ServiceIntegrationLiveTest.java @@ -32,7 +32,18 @@ public class AWSS3ServiceIntegrationLiveTest extends S3ServiceIntegrationLiveTes @Override protected Set<String> getIso3166Codes() { - return ImmutableSet.<String> of("US", "US-CA", "US-OR", "BR-SP", "DE-HE", "IE", "SG", "AU-NSW", "JP-13"); + return ImmutableSet.<String> of( + "AU-NSW", + "BR-SP", + "DE-HE", + "IE", + "IN-MH", + "JP-13", + "KR-11", + "SG", + "US", + "US-CA", + "US-OR"); } // Amazon returns null instead of us-standard in some situations
