Skip to content

Commit 961dd0c

Browse files
authored
Fix cn aws url (#596)
* Check for China region whenn determining the AWS URL * Fix domain URL * Update version number in preparation for release version tagging
1 parent 3c85815 commit 961dd0c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ val testSparkVersion = sys.props.get("spark.testVersion").getOrElse("3.5.0")
2626
* Tests/jenkins/BumpUpSparkConnectorVersion/run.sh
2727
* in snowflake repository.
2828
*/
29-
val sparkConnectorVersion = "3.1.0"
29+
val sparkConnectorVersion = "3.1.1"
3030

3131
lazy val ItTest = config("it") extend Test
3232

src/main/scala/net/snowflake/spark/snowflake/io/CloudStorageOperations.scala

+7-1
Original file line numberDiff line numberDiff line change
@@ -406,9 +406,15 @@ object CloudStorageOperations {
406406
s3ClientBuilder.withEndpointConfiguration(
407407
new AwsClientBuilder.EndpointConfiguration(stageEndPoint.get, regionName.get))
408408
} else if (useRegionUrl.get.toBoolean) {
409+
val awsDomain: String =
410+
if (regionName.get.toLowerCase().startsWith("cn-")) {
411+
".amazonaws.com.cn"
412+
} else {
413+
".amazonaws.com"
414+
}
409415
s3ClientBuilder.withEndpointConfiguration(
410416
new AwsClientBuilder.EndpointConfiguration(
411-
"s3." + regionName.get + ".amazonaws.com", regionName.get))
417+
"s3." + regionName.get + awsDomain, regionName.get))
412418
} else {
413419
s3ClientBuilder.withRegion(regionName.get)
414420
}

0 commit comments

Comments
 (0)