mirror of https://github.com/Radarr/Radarr
Merge pull request #206 from Sonarr/osxfullfsync
Changed sqlite to use full fsync on osx
This commit is contained in:
commit
42a3ff2625
|
@ -33,6 +33,11 @@ namespace NzbDrone.Core.Datastore
|
|||
connectionBuilder.Pooling = true;
|
||||
connectionBuilder.Version = 3;
|
||||
|
||||
if (OsInfo.IsOsx)
|
||||
{
|
||||
connectionBuilder.Add("Full FSync", true);
|
||||
}
|
||||
|
||||
return connectionBuilder.ConnectionString;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue