Skip to content

Commit 52f2c22

Browse files
committed
fix(hive): config name matching
1 parent 64fc17c commit 52f2c22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hive/src/HiveConnector.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class HiveConnector : JDBCConnector() {
3333
override val transactionIsolationLevel = Connection.TRANSACTION_READ_UNCOMMITTED
3434

3535
override fun buildConnectionStr(profile: Profile): String {
36-
val endpoint = profile.configs["endpoint"]
37-
val port = profile.configs["port"]
36+
val endpoint = profile.configs["Endpoint"]
37+
val port = profile.configs["Port"]
3838
return "jdbc:hive2://${endpoint}:${port}"
3939
}
4040

0 commit comments

Comments
 (0)