This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.4 by this push:
     new 0fd150112fc7 [MINOR][BUILD] Rename gprcVersion to grpcVersion in 
SparkBuild
0fd150112fc7 is described below

commit 0fd150112fc7c16f09a491c1269eaedaf3ba06a8
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Tue Nov 21 16:07:50 2023 +0900

    [MINOR][BUILD] Rename gprcVersion to grpcVersion in SparkBuild
    
    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(),
    ```
    
    To fix a typo.
    
    No.
    
    Pass the CIs.
    
    No.
    
    Closes #43923 from dongjoon-hyun/minor_grpc.
    
    Authored-by: Dongjoon Hyun <dh...@apple.com>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
    (cherry picked from commit 18bcd020118a8efb49c03546ec501be6f0fc0852)
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 project/SparkBuild.scala | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 91b31856a28a..31263eaa4c8d 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -90,7 +90,7 @@ object BuildCommons {
   // SPARK-41247: needs to be consistent with `protobuf.version` in `pom.xml`.
   val protoVersion = "3.21.12"
   // GRPC version used for Spark Connect.
-  val gprcVersion = "1.47.0"
+  val grpcVersion = "1.47.0"
 }
 
 object SparkBuild extends PomBuild {
@@ -674,7 +674,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"
@@ -753,7 +753,7 @@ object SparkConnect {
         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: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to