Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/bb47e4aba08a9d4821e3ba0fe949e8fc038693bd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
7 deletions
@ -78,12 +78,6 @@ namespace NzbDrone.Core.Datastore
return dataMapper ;
} ) ;
if ( migrationType = = MigrationType . Main )
{
db . Vacuum ( ) ;
}
return db ;
}
}
@ -4,6 +4,7 @@ using NLog;
using NzbDrone.Core.Lifecycle ;
using NzbDrone.Core.Messaging.Commands ;
using NzbDrone.Core.Messaging.Events ;
using NzbDrone.Core.Datastore ;
namespace NzbDrone.Core.Housekeeping
{
@ -11,11 +12,13 @@ namespace NzbDrone.Core.Housekeeping
{
private readonly IEnumerable < IHousekeepingTask > _housekeepers ;
private readonly Logger _logger ;
private readonly IDatabase _mainDb ;
public HousekeepingService ( IEnumerable < IHousekeepingTask > housekeepers , Logger logger )
public HousekeepingService ( IEnumerable < IHousekeepingTask > housekeepers , Logger logger , IDatabase mainDb )
{
_housekeepers = housekeepers ;
_logger = logger ;
_mainDb = mainDb ;
}
private void Clean ( )
@ -33,6 +36,10 @@ namespace NzbDrone.Core.Housekeeping
_logger . ErrorException ( "Error running housekeeping task: " + housekeeper . GetType ( ) . FullName , ex ) ;
}
}
// Vacuuming the log db isn't needed since that's done hourly at the TrimLogCommand.
_logger . Debug ( "Compressing main database after housekeeping" ) ;
_mainDb . Vacuum ( ) ;
}
public void Execute ( HousekeepingCommand message )