Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/5236#discussion_r27792453
  
    --- Diff: 
network/common/src/main/java/org/apache/spark/network/util/TransportConf.java 
---
    @@ -68,7 +71,9 @@ public int numConnectionsPerPeer() {
       public int sendBuf() { return conf.getInt("spark.shuffle.io.sendBuffer", 
-1); }
     
       /** Timeout for a single round trip of SASL token exchange, in 
milliseconds. */
    -  public int saslRTTimeoutMs() { return 
conf.getInt("spark.shuffle.sasl.timeout", 30) * 1000; }
    +  public int saslRTTimeoutMs() {
    +    return (int) 
JavaUtils.timeStringAsS(conf.get("spark.shuffle.sasl.timeout", "30s")) * 1000;
    --- End diff --
    
    Same here and in the next change.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to