Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/1600d5170711a91d64f2f64a10d114bac9c3a12d You should set ROOT_URL correctly, otherwise the web may not work correctly.

updated path for integration test

pull/4/head
kay.one 12 years ago
parent eab6c3a4b5
commit 1600d51707

@ -57,10 +57,18 @@ namespace NzbDrone.Integration.Test
{
AppDate = Path.Combine(Directory.GetCurrentDirectory(), "_intg_" + DateTime.Now.Ticks);
Start("..\\..\\..\\..\\_output\\NzbDrone.Console.exe");
if (BuildInfo.IsDebug)
{
Start("..\\..\\..\\..\\_output\\NzbDrone.Console.exe");
}
else
{
Start("bin\\NzbDrone.Console.exe");
}
while (RestClient.Get(new RestRequest("system/status")).ResponseStatus != ResponseStatus.Completed)
{
Thread.Sleep(1000);
}
}

Loading…
Cancel
Save