Github user heary-cao commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20516#discussion_r167137766
  
    --- Diff: core/src/main/scala/org/apache/spark/util/Utils.scala ---
    @@ -2222,7 +2222,7 @@ private[spark] object Utils extends Logging {
        */
       def portMaxRetries(conf: SparkConf): Int = {
         val maxRetries = conf.getOption("spark.port.maxRetries").map(_.toInt)
    -    if (conf.contains("spark.testing")) {
    +    if (isTesting || conf.contains("spark.testing")) {
    --- End diff --
    
    Sorry, may I have this understanding of one-sided point. It is not just in 
the test call. But when we need to get the default value for 
spark.port.maxRetries is 100.  still need to set the `'spark.testing` .
    Or in the Spark unit test set test sign. so I added it to here. thanks.


---

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

Reply via email to