Skip to content

Commit

Permalink
making sure H2 is not writing to disk
Browse files Browse the repository at this point in the history
  • Loading branch information
arcuri82 committed Jan 23, 2023
1 parent 6b4246d commit a8bd345
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public ExternalEvoMasterController(int controllerPort, String jarLocation, int s
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_cwa_verification/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public ExternalEvoMasterController(int controllerPort, String jarLocation, int s
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_market/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public ExternalEvoMasterController(int controllerPort, String jarLocation, int s
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_catwatch/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public ExternalEvoMasterController(int controllerPort, String jarLocation, int s
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_features_service/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public ExternalEvoMasterController(int controllerPort, String jarLocation, int s
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_news/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public ExternalEvoMasterController(int controllerPort, String jarLocation, int s
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_proxyprint/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public ExternalEvoMasterController(int controllerPort,
private String dbUrl( ) {

String url = "jdbc";
url += ":h2:tcp://localhost:" + dbPort + "/./temp/tmp_scout_api/testdb_" + dbPort;
url += ":h2:tcp://localhost:" + dbPort + "/mem:testdb_" + dbPort;

return url;
}
Expand Down

0 comments on commit a8bd345

Please sign in to comment.