New: Max DB Size is now 512MB (was 256MB)

This commit is contained in:
Mark McDowall 2012-08-14 11:51:25 -07:00
commit c2a1df61f6
3 changed files with 4 additions and 4 deletions

View file

@ -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)