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

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


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

commit 18bcd020118a8efb49c03546ec501be6f0fc0852
Author: Dongjoon Hyun <dh...@apple.com>
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 <dh...@apple.com>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 project/SparkBuild.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 75a0650b5fac..79b58deafde5 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.23.4"
   // GRPC version used for Spark Connect.
-  val gprcVersion = "1.56.0"
+  val grpcVersion = "1.56.0"
 }
 
 object SparkBuild extends PomBuild {
@@ -694,7 +694,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: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to