Skip to content

Commit

Permalink
Fixes the connection used for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stheppi committed Sep 20, 2019
1 parent 5776a9d commit ef246ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/kotlin/io/lenses/jdbc4/ProducerSetup.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface ProducerSetup : Logging {

fun conn(): Connection {
LensesDriver()
return DriverManager.getConnection("jdbc:lenses:kafka:https://localhost:3030", "admin", "admin")
return DriverManager.getConnection("jdbc:lenses:kafka:http://localhost:3030", "admin", "admin")
}

fun schemaClient() = CachedSchemaRegistryClient("http://127.0.0.1:8081", 1000)
Expand Down

0 comments on commit ef246ac

Please sign in to comment.