Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/aee7019ed22d0177b813111c7ea760147de9c18b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
15 additions and
7 deletions
@ -34,7 +34,7 @@ namespace NzbDrone.Common
private static List < Process > GetProcessesByName ( string name )
{
var monoProcesses = Process . GetProcessesByName ( "mono" )
. Where ( process = > process . Modules . Cast < ProcessModule > ( ) . Any ( module = > module . ModuleName . ToLower ( ) = = name + ".exe" ) ) ;
. Where ( process = > process . Modules . Cast < ProcessModule > ( ) . Any ( module = > module . ModuleName . ToLower ( ) = = name . ToLower ( ) + ".exe" ) ) ;
return Process . GetProcessesByName ( name )
. Union ( monoProcesses ) . ToList ( ) ;
}
@ -1,8 +1,6 @@
using System ;
using System.ComponentModel ;
using System.Diagnostics ;
using System.IO ;
using System.Threading ;
using NLog ;
using NLog.Config ;
using NLog.Targets ;
using NUnit.Framework ;
using NzbDrone.Api.Commands ;
using NzbDrone.Api.RootFolders ;
@ -27,10 +25,20 @@ namespace NzbDrone.Integration.Test
private NzbDroneRunner _runner ;
public IntegrationTest ( )
{
new StartupArguments ( ) ;
LogManager . Configuration = new LoggingConfiguration ( ) ;
var consoleTarget = new ConsoleTarget { Layout = "${level}: ${message} ${exception}" } ;
LogManager . Configuration . AddTarget ( consoleTarget . GetType ( ) . Name , consoleTarget ) ;
LogManager . Configuration . LoggingRules . Add ( new LoggingRule ( "*" , LogLevel . Trace , consoleTarget ) ) ;
}
[SetUp]
public void SmokeTestSetup ( )
{
new StartupArguments ( ) ;
_runner = new NzbDroneRunner ( ) ;
_runner . KillAll ( ) ;