Updated dependencies and tests

README update
This commit is contained in:
Glenn Renfro
2019-06-06 09:59:53 -04:00
parent 9a0ac2f166
commit 2e8ae1f43c
16 changed files with 30 additions and 30 deletions

View File

@@ -278,7 +278,7 @@ public class TaskStartTests {
Server server = null;
try {
if(defaultServer == null) {
server = Server.createTcpServer("-tcp", "-tcpAllowOthers", "-tcpPort",
server = Server.createTcpServer("-ifNotExists", "-tcp", "-tcpAllowOthers", "-tcpPort",
String.valueOf(randomPort)).start();
defaultServer = server;
}

View File

@@ -192,7 +192,7 @@ public class TaskLauncherSinkTests {
public Server initH2TCPServer() {
Server server;
try {
server = Server.createTcpServer("-tcp", "-tcpAllowOthers", "-tcpPort",
server = Server.createTcpServer("-ifNotExists", "-tcp", "-tcpAllowOthers", "-tcpPort",
String.valueOf(randomPort)).start();
}
catch (SQLException e) {