Skip to content

Commit

Permalink
Merge branch 'branch-1.8.0' into 'branch-1.8.0'
Browse files Browse the repository at this point in the history
Disable rest api authentication

See merge request bigdata/kyuubi!61
  • Loading branch information
wForget committed Mar 18, 2024
2 parents f81b049 + b768c96 commit fbf076b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class KyuubiRestFrontendService(override val serverable: Serverable)
val holder = new FilterHolder(new AuthenticationFilter(conf))
contextHandler.addFilter(holder, "/v1/*", EnumSet.allOf(classOf[DispatcherType]))
val authenticationFactory = new KyuubiHttpAuthenticationFactory(conf)
server.addHandler(authenticationFactory.httpHandlerWrapperFactory.wrapHandler(contextHandler))
server.addHandler(contextHandler)

val proxyHandler = ApiRootResource.getEngineUIProxyHandler(this)
server.addHandler(authenticationFactory.httpHandlerWrapperFactory.wrapHandler(proxyHandler))
Expand Down

0 comments on commit fbf076b

Please sign in to comment.