Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/b60633882e1d7862baa952c464b2c481179c0fd0 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Only vacuum the main db on startup

pull/67/head
Mark McDowall 11 years ago
parent e4de87c0ad
commit b60633882e

@ -15,7 +15,6 @@ namespace NzbDrone.Core.Datastore
IDatabase Create(MigrationType migrationType = MigrationType.Main);
}
public class DbFactory : IDbFactory
{
private readonly IMigrationController _migrationController;
@ -79,8 +78,11 @@ namespace NzbDrone.Core.Datastore
return dataMapper;
});
db.Vacuum();
if (migrationType == MigrationType.Main)
{
db.Vacuum();
}
return db;
}

Loading…
Cancel
Save