dongjoon-hyun commented on a change in pull request #32406:
URL: https://github.com/apache/spark/pull/32406#discussion_r624081888
##########
File path:
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/KubernetesUtils.scala
##########
@@ -75,11 +86,13 @@ private[spark] object KubernetesUtils extends Logging {
}
}
+ @Since("2.3.0")
def requireNandDefined(opt1: Option[_], opt2: Option[_], errMessage:
String): Unit = {
opt1.foreach { _ => require(opt2.isEmpty, errMessage) }
opt2.foreach { _ => require(opt1.isEmpty, errMessage) }
}
+ @Since("3.2.0")
def loadPodFromTemplate(
Review comment:
As I mentioned in the PR title, the signature is change recently,
@attilapiros .
I know that because I changed it. :)
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]