File tree 2 files changed +8
-2
lines changed
src/main/scala/net/snowflake/spark/snowflake/io
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ val testSparkVersion = sys.props.get("spark.testVersion").getOrElse("3.5.0")
26
26
* Tests/jenkins/BumpUpSparkConnectorVersion/run.sh
27
27
* in snowflake repository.
28
28
*/
29
- val sparkConnectorVersion = " 3.1.0 "
29
+ val sparkConnectorVersion = " 3.1.1 "
30
30
31
31
lazy val ItTest = config(" it" ) extend Test
32
32
Original file line number Diff line number Diff line change @@ -406,9 +406,15 @@ object CloudStorageOperations {
406
406
s3ClientBuilder.withEndpointConfiguration(
407
407
new AwsClientBuilder .EndpointConfiguration (stageEndPoint.get, regionName.get))
408
408
} 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
+ }
409
415
s3ClientBuilder.withEndpointConfiguration(
410
416
new AwsClientBuilder .EndpointConfiguration (
411
- " s3." + regionName.get + " .amazonaws.com " , regionName.get))
417
+ " s3." + regionName.get + awsDomain , regionName.get))
412
418
} else {
413
419
s3ClientBuilder.withRegion(regionName.get)
414
420
}
You can’t perform that action at this time.
0 commit comments