You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/03/10 09:23:30 UTC

[kyuubi] branch branch-1.7 updated: [KYUUBI #4491] Fix Trino typo

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new ca9c94da4 [KYUUBI #4491] Fix Trino typo
ca9c94da4 is described below

commit ca9c94da470f97136ee8d9dbd4fe5d3ead247cb3
Author: Alex <zo...@kanzhun.com>
AuthorDate: Fri Mar 10 09:16:21 2023 +0000

    [KYUUBI #4491] Fix Trino typo
    
    ### _Why are the changes needed?_
    fix trino typos
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4491 from Kiss736921/fix_trino_typos.
    
    Closes #4491
    
    73eb20f3a [Alex] fix trino typos
    
    Authored-by: Alex <zo...@kanzhun.com>
    Signed-off-by: Cheng Pan <ch...@apache.org>
    (cherry picked from commit 454aed67d743692d6ebd84012cf59462b92f259d)
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 .../src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala b/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala
index e81240a96..a7f2e8178 100644
--- a/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala
+++ b/kyuubi-server/src/main/scala/org/apache/kyuubi/server/KyuubiServer.scala
@@ -157,7 +157,7 @@ class KyuubiServer(name: String) extends Serverable(name) {
         warn("MYSQL frontend protocol is experimental.")
         new KyuubiMySQLFrontendService(this)
       case TRINO =>
-        warn("Trio frontend protocol is experimental.")
+        warn("Trino frontend protocol is experimental.")
         new KyuubiTrinoFrontendService(this)
       case other =>
         throw new UnsupportedOperationException(s"Frontend protocol $other is not supported yet.")