Skip to content

Commit

Permalink
fix typo (#199)
Browse files Browse the repository at this point in the history
* update hive_datasource.conf

* fix typo
  • Loading branch information
bojackli authored Apr 17, 2024
1 parent f93b584 commit 085769e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ case class UserConfigEntry(user: String, password: String) {
case class ConnectionConfigEntry(timeout: Int, retry: Int) {
require(timeout > 0 && retry > 0, "connection timeout or retry must be larger than 0")

override def toString: String = s"cConnectionConfigEntry:{timeout:$timeout, retry:$retry}"
override def toString: String = s"ConnectionConfigEntry:{timeout:$timeout, retry:$retry}"
}

/**
Expand Down

0 comments on commit 085769e

Please sign in to comment.