Skip to content

Commit 96a7269

Browse files
committed
fix additional build
1 parent bdbba44 commit 96a7269

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

project/SparkBuild.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ object SparkBuild extends PomBuild {
272272
// Google Mirror of Maven Central, placed first so that it's used instead of flaky Maven Central.
273273
// See https://storage-download.googleapis.com/maven-central/index.html for more info.
274274
"gcs-maven-central-mirror" at "https://maven-central.storage-download.googleapis.com/maven2/",
275+
"parquet-staged-release-mirror" at "https://repository.apache.org/content/repositories/staging/",
275276
DefaultMavenRepository,
276277
Resolver.mavenLocal,
277278
Resolver.file("ivyLocal", file(Path.userHome.absolutePath + "/.ivy2/local"))(Resolver.ivyStylePatterns),

sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3048,7 +3048,8 @@ object SQLConf {
30483048
.stringConf
30493049
.createWithDefault(
30503050
sys.env.getOrElse("DEFAULT_ARTIFACT_REPOSITORY",
3051-
"https://maven-central.storage-download.googleapis.com/maven2/"))
3051+
"https://maven-central.storage-download.googleapis.com/maven2/," +
3052+
"https://repository.apache.org/content/repositories/staging/"))
30523053

30533054
val LEGACY_FROM_DAYTIME_STRING =
30543055
buildConf("spark.sql.legacy.fromDayTimeString.enabled")

0 commit comments

Comments
 (0)