[KYUUBI #4205] Fix typo in TFrontendService

### _Why are the changes needed?_

Duplicate with
5357a0211b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/TFrontendService.scala (L265-L280)
### _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 #4205 from turboFei/fix_typo_log.

Closes #4205

4822cbf96 [fwang12] fix typo
0009e3f7c [fwang12] fix typo

Authored-by: fwang12 <fwang12@ebay.com>
Signed-off-by: fwang12 <fwang12@ebay.com>
This commit is contained in:
fwang12 2023-01-29 11:04:36 +08:00
parent ff7f42386a
commit 09b3f72561
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
#
#
# Script to create a binary distribution for easy deploys of Spark.
# Script to create a binary distribution for easy deploys of Kyuubi.
# The distribution directory defaults to dist/ but can be overridden below.
# The distribution contains fat (assembly) jars that include the Scala library,
# so it is completely self contained.

View File

@ -228,7 +228,7 @@ abstract class TFrontendService(name: String)
resp.setStatus(OK_STATUS)
} catch {
case e: Exception =>
error("Error getting type info: ", e)
error("Error getting info: ", e)
resp.setInfoValue(TGetInfoValue.lenValue(0))
resp.setStatus(KyuubiSQLException.toTStatus(e))
}