Skip to content

Commit f1d7cc1

Browse files
committed
update
1 parent d842088 commit f1d7cc1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,7 @@ object KyuubiConf {
18581858
" Note that: Kyuubi supports custom event handlers with the Java SPI." +
18591859
" To register a custom event handler," +
18601860
" the user needs to implement a subclass" +
1861-
" of org.apache.kyuubi.events.handler.CustomEventHandlerProvider" +
1861+
" of `org.apache.kyuubi.events.handler.CustomEventHandlerProvider`" +
18621862
" which has a zero-arg constructor.")
18631863
.version("1.3.0")
18641864
.stringConf
@@ -1921,7 +1921,7 @@ object KyuubiConf {
19211921
buildConf("kyuubi.engine.security.secret.provider")
19221922
.internal
19231923
.doc("The class used to manage the internal security secret. This class must be a " +
1924-
"subclass of EngineSecuritySecretProvider.")
1924+
"subclass of `EngineSecuritySecretProvider`.")
19251925
.version("1.5.0")
19261926
.stringConf
19271927
.createWithDefault(
@@ -2058,8 +2058,8 @@ object KyuubiConf {
20582058
buildConf("kyuubi.session.conf.advisor")
20592059
.doc("A config advisor plugin for Kyuubi Server. This plugin can provide some custom " +
20602060
"configs for different users or session configs and overwrite the session configs before " +
2061-
"open a new session. This config value should be a subclass of " +
2062-
"'org.apache.kyuubi.plugin.SessionConfAdvisor' which has a zero-arg constructor.")
2061+
"opening a new session. This config value should be a subclass of " +
2062+
"`org.apache.kyuubi.plugin.SessionConfAdvisor` which has a zero-arg constructor.")
20632063
.version("1.5.0")
20642064
.stringConf
20652065
.createOptional
@@ -2068,7 +2068,7 @@ object KyuubiConf {
20682068
buildConf("kyuubi.session.group.provider")
20692069
.doc("A group provider plugin for Kyuubi Server. This plugin can provide primary group " +
20702070
"and groups information for different users or session configs. This config value " +
2071-
"should be a subclass of 'org.apache.kyuubi.plugin.GroupProvider' which " +
2071+
"should be a subclass of `org.apache.kyuubi.plugin.GroupProvider` which " +
20722072
"has a zero-arg constructor. Kyuubi provides the following built-in implementations: " +
20732073
"<li>hadoop: delegate the user group mapping to hadoop UserGroupInformation.</li>")
20742074
.version("1.7.0")

0 commit comments

Comments
 (0)