diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-09-29 15:53:35 -0400 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-09-29 15:53:35 -0400 |
| commit | 72edf5b555cada453b25867612128e5273c7ce69 (patch) | |
| tree | b6945f4c21f3c5005277557f8a61fc1fe8d3c7a8 /Emby.Server.Implementations/Data/BaseSqliteRepository.cs | |
| parent | d64005df40c535b3495d61b3f3319adae38f2d26 (diff) | |
Change PRAGMA mode from WAL to TRUNCATE
Diffstat (limited to 'Emby.Server.Implementations/Data/BaseSqliteRepository.cs')
| -rw-r--r-- | Emby.Server.Implementations/Data/BaseSqliteRepository.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Data/BaseSqliteRepository.cs b/Emby.Server.Implementations/Data/BaseSqliteRepository.cs index a5bb47afb..5184a10b1 100644 --- a/Emby.Server.Implementations/Data/BaseSqliteRepository.cs +++ b/Emby.Server.Implementations/Data/BaseSqliteRepository.cs @@ -53,10 +53,10 @@ namespace Emby.Server.Implementations.Data protected virtual int? CacheSize => null; /// <summary> - /// Gets the journal mode. + /// Gets the journal mode. https://www.sqlite.org/pragma.html#pragma_journal_mode /// </summary> /// <value>The journal mode.</value> - protected virtual string JournalMode => "WAL"; + protected virtual string JournalMode => "TRUNCATE"; /// <summary> /// Gets the page size. |
