From ef246acc9e3a9e16ca93983c80d09936793c6418 Mon Sep 17 00:00:00 2001 From: stefan bocutiu Date: Fri, 20 Sep 2019 22:41:14 +0100 Subject: [PATCH] Fixes the connection used for unit tests --- src/test/kotlin/io/lenses/jdbc4/ProducerSetup.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/io/lenses/jdbc4/ProducerSetup.kt b/src/test/kotlin/io/lenses/jdbc4/ProducerSetup.kt index b50e876..d0da604 100644 --- a/src/test/kotlin/io/lenses/jdbc4/ProducerSetup.kt +++ b/src/test/kotlin/io/lenses/jdbc4/ProducerSetup.kt @@ -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)