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:55:58 UTC

[spark] branch branch-3.0 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-3.0
in repository https://gitbox.apache.org/repos/asf/spark.git


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

commit 2d9438601896bfeddd601b08efe0e2497f2417ca
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 4cfda8a..af980f0 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
@@ -69,7 +69,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(IS_TESTING.key, "false")
       .set(UI_ENABLED.key, "true")


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