Skip to content

Commit

Permalink
Avoid opening TCP port while migrating metastore
Browse files Browse the repository at this point in the history
  • Loading branch information
aaime committed Apr 20, 2021
1 parent 2237199 commit 1aff21a
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,7 @@ private File getDefaultH2Path(File root) {
private String getDefaultJDBCURL(File root) {
String path = root.getPath() + File.separator + "meta_jdbc_h2";
String jdbcString =
"jdbc:h2:file:"
+ path
+ File.separator
+ "gwc_metastore"
+ ";TRACE_LEVEL_FILE=0;AUTO_SERVER=TRUE";
"jdbc:h2:file:" + path + File.separator + "gwc_metastore" + ";TRACE_LEVEL_FILE=0";
return jdbcString;
}
}

0 comments on commit 1aff21a

Please sign in to comment.