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

added logging to nzbdrone runner.

pull/3113/head
kay.one 12 years ago
parent 4a41ce7f29
commit bfa817922e

@ -38,7 +38,6 @@ namespace NzbDrone.Integration.Test
while (true)
{
_nzbDroneProcess.Refresh();
if (_nzbDroneProcess.HasExited)
@ -70,6 +69,8 @@ namespace NzbDrone.Integration.Test
private void OnOutputDataReceived(string data)
{
Console.WriteLine(data);
if (data.Contains("Press enter to exit"))
{
_nzbDroneProcess.StandardInput.WriteLine(" ");

Loading…
Cancel
Save