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

Don't log error on the shutdown the command execution pipeline.

closes 
pull/2005/head
Taloth Saldono 8 years ago
parent afcf136c4f
commit ab49afe116

@ -51,6 +51,10 @@ namespace NzbDrone.Core.Messaging.Commands
_logger.Error(ex, "Thread aborted");
Thread.ResetAbort();
}
catch (OperationCanceledException ex)
{
_logger.Trace("Stopped one command execution pipeline");
}
catch (Exception ex)
{
_logger.Error(ex, "Unknown error in thread");

Loading…
Cancel
Save