From 4dbae0a7280471df9903c9a4b2a998f915968bc9 Mon Sep 17 00:00:00 2001 From: Chris Wu Date: Thu, 3 Jun 2021 23:01:31 -0700 Subject: [PATCH] Update config version to 3.1.3 This config needs to be backported to branch-3.1. --- .../src/main/scala/org/apache/spark/deploy/k8s/Config.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala b/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala index 2019b7d0353c5..9fceca783ae0c 100644 --- a/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala +++ b/resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala @@ -305,7 +305,7 @@ private[spark] object Config extends Logging { .doc("Time to wait for driver pod to get ready before creating executor pods. This wait " + "only happens on application start. If timeout happens, executor pods will still be " + "created.") - .version("3.2.0") + .version("3.1.3") .timeConf(TimeUnit.SECONDS) .checkValue(value => value > 0, "Allocation driver readiness timeout must be a positive " + "time value.")