You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@kyuubi.apache.org by "bowenliang123 (via GitHub)" <gi...@apache.org> on 2023/04/25 10:03:40 UTC

[GitHub] [kyuubi] bowenliang123 commented on a diff in pull request #4771: [KYUUBI #4770][1.7] Compilation fails with AdminResourceSuite

bowenliang123 commented on code in PR #4771:
URL: https://github.com/apache/kyuubi/pull/4771#discussion_r1176294937


##########
kyuubi-server/src/test/scala/org/apache/kyuubi/server/api/v1/AdminResourceSuite.scala:
##########
@@ -32,12 +32,16 @@ import org.apache.kyuubi.ha.HighAvailabilityConf
 import org.apache.kyuubi.ha.client.DiscoveryClientProvider.withDiscoveryClient
 import org.apache.kyuubi.ha.client.DiscoveryPaths
 import org.apache.kyuubi.plugin.PluginLoader
+import org.apache.kyuubi.server.KyuubiRestFrontendService
 import org.apache.kyuubi.server.http.authentication.AuthenticationHandler.AUTHORIZATION_HEADER
 
 class AdminResourceSuite extends KyuubiFunSuite with RestFrontendTestHelper {
 
   private val engineMgr = new KyuubiApplicationManager()
 
+  val encodeAuthorization =
+    new String(Base64.getEncoder.encode(s"${Utils.currentUser}:".getBytes()), "UTF-8")

Review Comment:
   ```suggestion
       new String(Base64.getEncoder.encode(s"${Utils.currentUser}:".getBytes()), StandardCharsets.UTF_8)
   ```
   Prevent magic value, as as the same way in master branch.



-- 
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: notifications-unsubscribe@kyuubi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@kyuubi.apache.org
For additional commands, e-mail: notifications-help@kyuubi.apache.org