mneethiraj commented on code in PR #518: URL: https://github.com/apache/ranger/pull/518#discussion_r1930021979
########## agents-common/src/main/java/org/apache/ranger/plugin/service/RangerBasePlugin.java: ########## @@ -135,6 +138,55 @@ public RangerBasePlugin(RangerPluginConfig pluginConfig) { setIsFallbackSupported(pluginConfig.getBoolean(pluginConfig.getPropertyPrefix() + ".is.fallback.supported", false)); setServiceAdmins(serviceAdmins); + boolean initKerb = pluginConfig.getBoolean(pluginConfig.getPropertyPrefix() + ".kerberos.initialize", false); Review Comment: Intoduced a variable `kerbPrefix` to minimize repeated configuration prefix. ```` String kerbPrefix = pluginConfig.getPropertyPrefix() + ".kerberos"; ```` -- 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. To unsubscribe, e-mail: dev-unsubscr...@ranger.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org