Skip to content

Commit

Permalink
[KYUUBI #2066] fix spelling mistake and appropriate naming
Browse files Browse the repository at this point in the history
### _Why are the changes needed?_

fix #2066

### _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

- [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request

Closes #2067 from jiaoqingbo/2066.

Closes #2066

331c181 [jiaoqingbo] [KYUUBI #2066] fix spelling mistake and appropriate naming

Authored-by: jiaoqingbo <1178404354@qq.com>
Signed-off-by: Kent Yao <yao@apache.org>
  • Loading branch information
jiaoqingbo authored and yaooqinn committed Mar 9, 2022
1 parent dde8381 commit caeb6a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -30,7 +30,7 @@ import org.apache.kyuubi.util.SignalRegister
class HiveSQLEngine extends Serverable("HiveSQLEngine") {
override val backendService: AbstractBackendService = new HiveBackendService(this)
override val frontendServices: Seq[AbstractFrontendService] =
Seq(new HiveTBinaryFrontend(this))
Seq(new HiveTBinaryFrontendService(this))

override def start(): Unit = {
super.start()
Expand Down
Expand Up @@ -20,7 +20,7 @@ package org.apache.kyuubi.engine.hive
import org.apache.kyuubi.ha.client.{EngineServiceDiscovery, ServiceDiscovery}
import org.apache.kyuubi.service.{Serverable, Service, TBinaryFrontendService}

class HiveTBinaryFrontend(override val serverable: Serverable)
class HiveTBinaryFrontendService(override val serverable: Serverable)
extends TBinaryFrontendService("HiveTBinaryFrontend") {

override lazy val discoveryService: Option[Service] = {
Expand Down
Expand Up @@ -37,7 +37,7 @@ import org.apache.kyuubi.session.SessionHandle
import org.apache.kyuubi.util.{KyuubiHadoopUtils, NamedThreadFactory}

/**
* Apache Thrift based hive-service-prc base class
* Apache Thrift based hive-service-rpc base class
* 1. http
* 2. binary
*/
Expand Down

0 comments on commit caeb6a4

Please sign in to comment.