Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/571998e70e0b449724b37dc931cead1e3b1a6390
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
10 deletions
@ -16,13 +16,13 @@ namespace NzbDrone.App.Test
public class IISProviderFixture : TestBase
{
[Test]
public void should_ not_set_env_varibles_twice ( )
public void should_ update_pid_env_varibles ( )
{
WithTempAsAppPath ( ) ;
var dummy = StartDummyProcess ( ) ;
Environment . SetEnvironmentVariable ( EnviromentProvider . NZBDRONE_PID , " Test ") ;
Environment . SetEnvironmentVariable ( EnviromentProvider . NZBDRONE_PID , " 0 ") ;
Environment . SetEnvironmentVariable ( EnviromentProvider . NZBDRONE_PATH , "Test" ) ;
Mocker . GetMock < ProcessProvider > ( )
@ -53,15 +53,9 @@ namespace NzbDrone.Providers
startInfo . RedirectStandardError = true ;
startInfo . CreateNoWindow = true ;
if ( ! startInfo . EnvironmentVariables . ContainsKey ( EnviromentProvider . NZBDRONE_PATH ) )
{
startInfo . EnvironmentVariables . Add ( EnviromentProvider . NZBDRONE_PATH , _enviromentProvider . ApplicationPath ) ;
}
if ( ! startInfo . EnvironmentVariables . ContainsKey ( EnviromentProvider . NZBDRONE_PID ) )
{
startInfo . EnvironmentVariables . Add ( EnviromentProvider . NZBDRONE_PID , Process . GetCurrentProcess ( ) . Id . ToString ( ) ) ;
}
startInfo . EnvironmentVariables [ EnviromentProvider . NZBDRONE_PATH ] = _enviromentProvider . ApplicationPath ;
startInfo . EnvironmentVariables [ EnviromentProvider . NZBDRONE_PID ] = Process . GetCurrentProcess ( ) . Id . ToString ( ) ;
try
{