Remove unnecessary DB_CLOSE_ON_EXIT parameter.

This commit is contained in:
akwizgran
2017-11-09 14:51:35 +00:00
parent cf54360a93
commit 90e395506f
3 changed files with 4 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ class H2Database extends JdbcDatabase {
File dir = config.getDatabaseDirectory();
String path = new File(dir, "db").getAbsolutePath();
url = "jdbc:h2:split:" + path + ";CIPHER=AES;MULTI_THREADED=1"
+ ";WRITE_DELAY=0;DB_CLOSE_ON_EXIT=false";
+ ";WRITE_DELAY=0";
}
@Override