Yikun edited a comment on pull request #35557:
URL: https://github.com/apache/spark/pull/35557#issuecomment-1045990765


   @dongjoon-hyun Thanks for invistigation.
   
   Yes, this might has some behavior changes(especially when specified 
`spark.kubernetes.context`, did you set it? otherwise, it just only can 
`autoConfigure(config, null)` twice).
   
   
https://github.com/fabric8io/kubernetes-client/blob/677884ca88f3911f9b41ec919db152d441ad2cdd/kubernetes-client-api/src/main/java/io/fabric8/kubernetes/client/Config.java#L236-L245
   
   ```java
   // v5.12.0
   public static Config autoConfigure(String context) {
     config.autoConfigure = Boolean.TRUE;
     autoConfigure(config, null);
     return autoConfigure(config, context);
   }
   
   // v5.12.1
   public static Config autoConfigure(String context) {
     return autoConfigure(config, context);
   }
   ```
   
   I saw you revert this change, so we have time to take a deeper look.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



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

Reply via email to