mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
New: Max DB Size is now 512MB (was 256MB)
This commit is contained in:
parent
653a0864c3
commit
c2a1df61f6
3 changed files with 4 additions and 4 deletions
|
@ -32,7 +32,7 @@ namespace NzbDrone.Core.Datastore
|
|||
{
|
||||
get
|
||||
{
|
||||
return GetConnectionString(_environmentProvider.GetNzbDronoeDbFile());
|
||||
return GetConnectionString(_environmentProvider.GetNzbDroneDbFile());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,7 @@ namespace NzbDrone.Core.Datastore
|
|||
|
||||
public static string GetConnectionString(string path)
|
||||
{
|
||||
return String.Format("Data Source={0}", path);
|
||||
return String.Format("Data Source=\"{0}\"; Max Database Size = 512;", path);
|
||||
}
|
||||
|
||||
public IDatabase GetMainPetaPocoDb(Boolean profiled = true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue