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

dongjoon 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 5891b20ef492 [SPARK-47186][TESTS][FOLLOWUP] Correct the name of 
spark.test.docker.connectionTimeout
5891b20ef492 is described below

commit 5891b20ef492e3dad31ff851770d9c4f9c7c4de4
Author: Kent Yao <y...@apache.org>
AuthorDate: Wed May 8 21:56:55 2024 -0700

    [SPARK-47186][TESTS][FOLLOWUP] Correct the name of 
spark.test.docker.connectionTimeout
    
    ### What changes were proposed in this pull request?
    
    This PR adds a followup of SPARK-47186 to correct the name of 
spark.test.docker.connectionTimeout
    
    ### Why are the changes needed?
    
    test bugfix
    
    ### Does this PR introduce _any_ user-facing change?
    
    no
    ### How was this patch tested?
    
    existing tests
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    no
    
    Closes #46495 from yaooqinn/SPARK-47186-FF.
    
    Authored-by: Kent Yao <y...@apache.org>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .../scala/org/apache/spark/sql/jdbc/DockerJDBCIntegrationSuite.scala    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/DockerJDBCIntegrationSuite.scala
 
b/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/DockerJDBCIntegrationSuite.scala
index ded7bb3a6bf6..8d17e0b4e36e 100644
--- 
a/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/DockerJDBCIntegrationSuite.scala
+++ 
b/connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/DockerJDBCIntegrationSuite.scala
@@ -115,7 +115,7 @@ abstract class DockerJDBCIntegrationSuite
   protected val startContainerTimeout: Long =
     
timeStringAsSeconds(sys.props.getOrElse("spark.test.docker.startContainerTimeout",
 "5min"))
   protected val connectionTimeout: PatienceConfiguration.Timeout = {
-    val timeoutStr = sys.props.getOrElse("spark.test.docker.conn", "5min")
+    val timeoutStr = 
sys.props.getOrElse("spark.test.docker.connectionTimeout", "5min")
     timeout(timeStringAsSeconds(timeoutStr).seconds)
   }
 


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

Reply via email to