Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Briar Mailbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
briar
Briar Mailbox
Merge requests
!46
Upgrade H2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Upgrade H2
68-upgrade-h2
into
main
Overview
31
Commits
1
Pipelines
2
Changes
2
Merged
Upgrade H2
Sebastian
requested to merge
68-upgrade-h2
into
main
Nov 29, 2021
Overview
31
Commits
1
Pipelines
2
Changes
2
Closes
#68 (closed)
Edited
Nov 29, 2021
by
Torsten Grote
0
0
Merge request reports
Compare
main
version 1
3330a9e4
Nov 29, 2021
main (base)
and
latest version
latest version
3330a9e4
1 commit,
Nov 29, 2021
version 1
3330a9e4
1 commit,
Nov 29, 2021
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
mailbox-core/src/main/java/org/briarproject/mailbox/core/db/H2Database.kt
+
1
−
1
View file @ 3330a9e4
Edit in single-file editor
Open in Web IDE
Show full file
@@ -33,7 +33,7 @@ open class H2Database(
}
private
val
dbPath
:
String
get
()
=
File
(
config
.
getDatabaseDirectory
(),
"db"
).
absolutePath
private
val
url
:
String
=
(
"jdbc:h2:split:$dbPath;
MULTI_THREADED=1;
WRITE_DELAY=0"
)
private
val
url
:
String
=
(
"jdbc:h2:split:$dbPath;WRITE_DELAY=0"
)
override
fun
open
(
listener
:
MigrationListener
?):
Boolean
{
val
dir
=
config
.
getDatabaseDirectory
()
Loading