Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a0b0f586c87af56c2d97f0be85afc207a216d322?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
4 deletions
@ -80,14 +80,14 @@ namespace NzbDrone.Core.Test.DataAugmentationFixture.Scene
private void AssertNoUpdate ( )
private void AssertNoUpdate ( )
{
{
Mocker . GetMock < ISceneMappingProxy > ( ) . Verify ( c = > c . Fetch ( ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingProxy > ( ) . Verify ( c = > c . Fetch ( ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . Purge ( ) , Times . Never ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . Purge ( It . IsAny < bool > ( ) ) , Times . Never ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . InsertMany ( _fakeMappings ) , Times . Never ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . InsertMany ( _fakeMappings ) , Times . Never ( ) ) ;
}
}
private void AssertMappingUpdated ( )
private void AssertMappingUpdated ( )
{
{
Mocker . GetMock < ISceneMappingProxy > ( ) . Verify ( c = > c . Fetch ( ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingProxy > ( ) . Verify ( c = > c . Fetch ( ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . Purge ( ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . Purge ( It . IsAny < bool > ( ) ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . InsertMany ( _fakeMappings ) , Times . Once ( ) ) ;
Mocker . GetMock < ISceneMappingRepository > ( ) . Verify ( c = > c . InsertMany ( _fakeMappings ) , Times . Once ( ) ) ;
@ -21,6 +21,7 @@ namespace NzbDrone.Core.Instrumentation
{
{
var trimDate = DateTime . UtcNow . AddDays ( - 7 ) . Date ;
var trimDate = DateTime . UtcNow . AddDays ( - 7 ) . Date ;
Delete ( c = > c . Time < = trimDate ) ;
Delete ( c = > c . Time < = trimDate ) ;
Vacuum ( ) ;
}
}
}
}
}
}
@ -30,7 +30,7 @@ namespace NzbDrone.Core.Instrumentation
public void Execute ( ClearLogCommand message )
public void Execute ( ClearLogCommand message )
{
{
_logRepository . Purge ( ) ;
_logRepository . Purge ( vacuum : true ) ;
}
}
}
}
}
}