Skip to content

Commit adf4e9a

Browse files
committed
Move internal up above booleanConf
1 parent f0db5a7 commit adf4e9a

File tree

1 file changed

+2
-2
lines changed
  • resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s

1 file changed

+2
-2
lines changed

resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,17 +488,17 @@ private[spark] object Config extends Logging {
488488
.doc("If Spark should poll Kubernetes for executor pod status. " +
489489
"You should leave this enabled unless you're encountering issues with your etcd.")
490490
.version("3.4.0")
491-
.booleanConf
492491
.internal()
492+
.booleanConf
493493
.createWithDefault(true)
494494

495495
val KUBERNETES_EXECUTOR_ENABLE_API_WATCHER =
496496
ConfigBuilder("spark.kubernetes.executor.enableApiWatcher")
497497
.doc("If Spark should create watchers for executor pod status. " +
498498
"You should leave this enabled unless you're encountering issues with your etcd.")
499499
.version("3.4.0")
500-
.booleanConf
501500
.internal()
501+
.booleanConf
502502
.createWithDefault(true)
503503

504504

0 commit comments

Comments
 (0)