Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/39be4c567dc78ad6331a4d74407feee9fd252c53?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
16 additions and
7 deletions
@ -57,6 +57,12 @@ namespace NzbDrone.Common
return process ;
return process ;
}
}
public virtual void WaitForExit ( Process process )
{
Logger . Trace ( "Waiting for process {0} to exit." , process . ProcessName ) ;
process . WaitForExit ( ) ;
}
public virtual void Kill ( int processId )
public virtual void Kill ( int processId )
{
{
if ( processId = = 0 | | ! Process . GetProcesses ( ) . Any ( p = > p . Id = = processId ) )
if ( processId = = 0 | | ! Process . GetProcesses ( ) . Any ( p = > p . Id = = processId ) )
@ -2,6 +2,7 @@
using System ;
using System ;
using System.Diagnostics ;
using System.Diagnostics ;
using System.IO ;
using System.IO ;
using FizzWare.NBuilder ;
using FluentAssertions ;
using FluentAssertions ;
using Moq ;
using Moq ;
using NUnit.Framework ;
using NUnit.Framework ;
@ -86,8 +86,10 @@ namespace NzbDrone.Core.Jobs
Arguments = string . Format ( "{0} {1}" , _enviromentProvider . NzbDroneProcessIdFromEnviroment , _configFileProvider . Guid )
Arguments = string . Format ( "{0} {1}" , _enviromentProvider . NzbDroneProcessIdFromEnviroment , _configFileProvider . Guid )
} ;
} ;
_processProvider . Start ( startInfo ) ;
var process = _processProvider . Start ( startInfo ) ;
notification . CurrentMessage = "Update in progress. NzbDrone will restart shortly." ;
notification . CurrentMessage = "Update in progress. NzbDrone will restart shortly." ;
_processProvider . WaitForExit ( process ) ;
}
}
}
}
}
}