fix mysql test

This commit is contained in:
Anton Popov 2020-04-22 23:09:07 +03:00
parent 6ebf9911ab
commit 47213ebfe1

View File

@ -41,7 +41,7 @@ class JavaConnectorTest {
}
}
String jdbcUrl = String.format("jdbc:mysql://%s:%s/%s", host, port, database);
String jdbcUrl = String.format("jdbc:mysql://%s:%s/%s?useSSL=false", host, port, database);
Connection conn = null;
Statement stmt = null;