Skip to content

Commit

Permalink
[KYUUBI #2066] fix spelling mistake and appropriate naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaoqingbo committed Mar 9, 2022
1 parent 2b50aaa commit 331c181
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 331c181

Please sign in to comment.