diff --git a/config/config.go b/config/config.go index 2e7aee60..ccb73587 100644 --- a/config/config.go +++ b/config/config.go @@ -337,7 +337,7 @@ func (s *SQLite) Validate() error { } func (s *SQLite) ConnectionString() (string, error) { - return s.DBFile, nil + return fmt.Sprintf("%s?_pragma=journal_mode(wal)", s.DBFile), nil } // MySQL is the config entry for the mysql section