Skip to content

Commit 98872a8

Browse files
committed
fix: cancel EXCLUSIVE mode on sqlite3
because it will result in failure to get admin's info
1 parent ce4a295 commit 98872a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/bootstrap/db.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func InitDB() {
5151
if !(strings.HasSuffix(database.DBFile, ".db") && len(database.DBFile) > 3) {
5252
log.Fatalf("db name error.")
5353
}
54-
dB, err = gorm.Open(sqlite.Open(fmt.Sprintf("%s?_journal=WAL&_locking=EXCLUSIVE&_vacuum=incremental",
54+
dB, err = gorm.Open(sqlite.Open(fmt.Sprintf("%s?_journal=WAL&_vacuum=incremental",
5555
database.DBFile)), gormConfig)
5656
}
5757
case "mysql":

0 commit comments

Comments
 (0)