This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new d908a212ef6 [MINOR][BUILD] Rename gprcVersion to grpcVersion in
SparkBuild
d908a212ef6 is described below
commit d908a212ef6144338f075354b4636a13f1172478
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Nov 21 16:07:50 2023 +0900
[MINOR][BUILD] Rename gprcVersion to grpcVersion in SparkBuild
### What changes were proposed in this pull request?
This PR aims to fix a typo.
```
- val gprcVersion = "1.56.0"
+ val grpcVersion = "1.56.0"
```
There are two occurrences.
```
$ git grep gprc
project/SparkBuild.scala: val gprcVersion = "1.56.0"
project/SparkBuild.scala: "io.grpc" % "protoc-gen-grpc-java" %
BuildCommons.gprcVersion asProtocPlugin(),
```
### Why are the changes needed?
To fix a typo.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #43923 from dongjoon-hyun/minor_grpc.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
project/SparkBuild.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 9aaa37c3909..fbf4c630644 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -91,7 +91,7 @@ object BuildCommons {
// SPARK-41247: needs to be consistent with `protobuf.version` in `pom.xml`.
val protoVersion = "3.25.1"
// GRPC version used for Spark Connect.
- val gprcVersion = "1.56.0"
+ val grpcVersion = "1.56.0"
}
object SparkBuild extends PomBuild {
@@ -655,7 +655,7 @@ object SparkConnectCommon {
SbtPomKeys.effectivePom.value.getProperties.get(
"guava.failureaccess.version").asInstanceOf[String]
Seq(
- "io.grpc" % "protoc-gen-grpc-java" % BuildCommons.gprcVersion
asProtocPlugin(),
+ "io.grpc" % "protoc-gen-grpc-java" % BuildCommons.grpcVersion
asProtocPlugin(),
"com.google.guava" % "guava" % guavaVersion,
"com.google.guava" % "failureaccess" % guavaFailureaccessVersion,
"com.google.protobuf" % "protobuf-java" % protoVersion % "protobuf"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]