diff --git a/docs/deployment/settings.md b/docs/deployment/settings.md
index cb1679f88..4779dbd2a 100644
--- a/docs/deployment/settings.md
+++ b/docs/deployment/settings.md
@@ -192,7 +192,7 @@ kyuubi\.frontend
\.worker\.keepalive\.time|
false
|Set to true if the zookeeper ensemble is kerberized
|boolean
|1.0.0
-kyuubi\.ha\.zookeeper
\.acl\.engine\.enabled|false
|Set to true if the zookeeper ensemble is kerberized at engine side.
|boolean
|1.4.0
+kyuubi\.ha\.zookeeper
\.acl\.engine\.enabled|false
|Set to true if the zookeeper ensemble is kerberized at engine side.
|boolean
|1.3.1
kyuubi\.ha\.zookeeper
\.connection\.base\.retry
\.wait|1000
|Initial amount of time to wait between retries to the zookeeper ensemble
|int
|1.0.0
kyuubi\.ha\.zookeeper
\.connection\.max
\.retries|3
|Max retry times for connecting to the zookeeper ensemble
|int
|1.0.0
kyuubi\.ha\.zookeeper
\.connection\.max\.retry
\.wait|30000
|Max amount of time to wait between retries for BOUNDED_EXPONENTIAL_BACKOFF policy can reach, or max time until elapsed for UNTIL_ELAPSED policy to connect the zookeeper ensemble
|int
|1.0.0
diff --git a/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala b/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala
index 932c2559b..1a5d2d459 100644
--- a/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala
+++ b/kyuubi-ha/src/main/scala/org/apache/kyuubi/ha/HighAvailabilityConf.scala
@@ -51,7 +51,7 @@ object HighAvailabilityConf {
val HA_ZK_ACL_ENGINE_ENABLED: ConfigEntry[Boolean] =
buildConf("ha.zookeeper.acl.engine.enabled")
.doc("Set to true if the zookeeper ensemble is kerberized at engine side.")
- .version("1.4.0")
+ .version("1.3.1")
.booleanConf
.createWithDefault(false)