You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2020/07/20 20:57:04 UTC

[spark] branch branch-2.4 updated: [SPARK-32367][K8S][TESTS] Correct the spelling of parameter in KubernetesTestComponents

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

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


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new c9c187a  [SPARK-32367][K8S][TESTS] Correct the spelling of parameter in KubernetesTestComponents
c9c187a is described below

commit c9c187a7c00b4a70621760d6cb556409b789e7a6
Author: maruilei <ma...@jd.com>
AuthorDate: Mon Jul 20 13:48:57 2020 -0700

    [SPARK-32367][K8S][TESTS] Correct the spelling of parameter in KubernetesTestComponents
    
    ### What changes were proposed in this pull request?
    
    Correct the spelling of parameter 'spark.executor.instances' in KubernetesTestComponents
    
    ### Why are the changes needed?
    
    Parameter spelling error
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Test is not needed.
    
    Closes #29164 from merrily01/SPARK-32367.
    
    Authored-by: maruilei <ma...@jd.com>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
    (cherry picked from commit ffdca8285ef7c7bd0da2622a81d9c21ada035794)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .../spark/deploy/k8s/integrationtest/KubernetesTestComponents.scala     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/KubernetesTestComponents.scala b/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/KubernetesTestComponents.scala
index 5615d61..3d1cd97 100644
--- a/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/KubernetesTestComponents.scala
+++ b/resource-managers/kubernetes/integration-tests/src/test/scala/org/apache/spark/deploy/k8s/integrationtest/KubernetesTestComponents.scala
@@ -63,7 +63,7 @@ private[spark] class KubernetesTestComponents(defaultClient: DefaultKubernetesCl
       .set("spark.master", s"k8s://${kubernetesClient.getMasterUrl}")
       .set("spark.kubernetes.namespace", namespace)
       .set("spark.executor.cores", "1")
-      .set("spark.executors.instances", "1")
+      .set("spark.executor.instances", "1")
       .set("spark.app.name", "spark-test-app")
       .set("spark.ui.enabled", "true")
       .set("spark.testing", "false")


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org