Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/b0ae87840e6adb0bd2c6da884fc9742947bb2b8b?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
@ -2,6 +2,7 @@
using NUnit.Framework ;
using NUnit.Framework ;
using NzbDrone.Common ;
using NzbDrone.Common ;
using NzbDrone.Common.Messaging ;
using NzbDrone.Common.Messaging ;
using NzbDrone.Core.Datastore ;
using NzbDrone.Core.Download ;
using NzbDrone.Core.Download ;
using NzbDrone.Core.Indexers ;
using NzbDrone.Core.Indexers ;
using NzbDrone.Core.Jobs ;
using NzbDrone.Core.Jobs ;
@ -39,8 +40,10 @@ namespace NzbDrone.App.Test
public void should_resolve_command_executor_by_name ( )
public void should_resolve_command_executor_by_name ( )
{
{
var genericExecutor = typeof ( IExecute < > ) . MakeGenericType ( typeof ( RssSyncCommand ) ) ;
var genericExecutor = typeof ( IExecute < > ) . MakeGenericType ( typeof ( RssSyncCommand ) ) ;
var container = MainAppContainerBuilder . BuildContainer ( ) ;
DbFactory . RegisterDatabase ( container ) ;
var executor = MainAppContainerBuilder . BuildContainer ( ) . Resolve ( genericExecutor ) ;
var executor = container . Resolve ( genericExecutor ) ;
executor . Should ( ) . NotBeNull ( ) ;
executor . Should ( ) . NotBeNull ( ) ;
executor . Should ( ) . BeAssignableTo < IExecute < RssSyncCommand > > ( ) ;
executor . Should ( ) . BeAssignableTo < IExecute < RssSyncCommand > > ( ) ;
@ -11,9 +11,6 @@ namespace NzbDrone.Core.Test.Qualities
public class QualitySizeRepositoryFixture : DbTest < QualitySizeRepository , QualitySize >
public class QualitySizeRepositoryFixture : DbTest < QualitySizeRepository , QualitySize >
{
{
[SetUp]
[SetUp]
public void Setup ( )
public void Setup ( )
{
{