We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 459efbd commit ae422aeCopy full SHA for ae422ae
sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2.scala
@@ -111,7 +111,7 @@ private[hive] class HiveThriftServer2(hiveContext: HiveContext)
111
112
private def isHTTPTransportMode(hiveConf: HiveConf): Boolean = {
113
val transportMode: String = hiveConf.getVar(ConfVars.HIVE_SERVER2_TRANSPORT_MODE)
114
- transportMode.toLowerCase().equals("http")
+ transportMode.equalsIgnoreCase("http")
115
}
116
117
0 commit comments