Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/6fc8ec6cbc1c436380e9630568ac3dc368ddfd0f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
5 deletions
@ -15,7 +15,7 @@ namespace NzbDrone.Common.Instrumentation
public UpdateLogLayoutRenderer ( )
{
_appData = Path . Combine ( new EnvironmentProvider ( ) . GetUpdateLogFolder ( ) , DateTime . Now . ToString ( "yy.MM.d-HH.mm" ) ) ;
_appData = Path . Combine ( new EnvironmentProvider ( ) . GetUpdateLogFolder ( ) , DateTime . Now . ToString ( "yy.MM.d-HH.mm" ) + ".txt" ) ;
}
@ -16,9 +16,7 @@ namespace NzbDrone.Update.Test
{
private const string UPDATE_FOLDER = @"C:\Temp\nzbdrone_update\nzbdrone\" ;
private const string BACKUP_FOLDER = @"C:\Temp\nzbdrone_update\nzbdrone_backup\" ;
private const string SANDBOX_LOG_FOLDER = @"C:\Temp\nzbdrone_update\UpdateLogs\" ;
private const string TARGET_FOLDER = @"C:\NzbDrone\" ;
private const string UPDATE_LOG_FOLDER = @"C:\NzbDrone\UpdateLogs\" ;
Mock < IEnvironmentProvider > _environmentProvider ;
@ -1,5 +1,6 @@
using System ;
using System.IO ;
using System.Linq ;
using NLog ;
using NzbDrone.Common ;
using IServiceProvider = NzbDrone . Common . IServiceProvider ;
@ -45,7 +46,7 @@ namespace NzbDrone.Update.Providers
public virtual void Start ( string targetFolder )
{
Verify ( targetFolder ) ;
AppType appType = AppType . Normal ;
var appType = AppType . Normal ;
logger . Info ( "Stopping all running services" ) ;
@ -64,7 +65,12 @@ namespace NzbDrone.Update.Providers
//TODO:Should be able to restart service if anything beyond this point fails
logger . Info ( "Killing all running processes" ) ;
_processProvider . KillAll ( ProcessProvider . NzbDroneConsoleProcessName ) ;
if ( _processProvider . GetProcessByName ( ProcessProvider . NzbDroneConsoleProcessName ) . Any ( ) )
{
appType = AppType . Console ;
_processProvider . KillAll ( ProcessProvider . NzbDroneConsoleProcessName ) ;
}
_processProvider . KillAll ( ProcessProvider . NzbDroneProcessName ) ;
logger . Info ( "Creating backup of existing installation" ) ;