mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
Fixed: Broken tasks getting stuck in queue
This commit is contained in:
@@ -67,13 +67,15 @@ namespace NzbDrone.Core.Messaging.Commands
|
||||
private void ExecuteCommand<TCommand>(TCommand command, CommandModel commandModel)
|
||||
where TCommand : Command
|
||||
{
|
||||
var handlerContract = typeof(IExecute<>).MakeGenericType(command.GetType());
|
||||
var handler = (IExecute<TCommand>)_serviceFactory.Build(handlerContract);
|
||||
|
||||
_logger.Trace("{0} -> {1}", command.GetType().Name, handler.GetType().Name);
|
||||
IExecute<TCommand> handler = null;
|
||||
|
||||
try
|
||||
{
|
||||
var handlerContract = typeof(IExecute<>).MakeGenericType(command.GetType());
|
||||
handler = (IExecute<TCommand>)_serviceFactory.Build(handlerContract);
|
||||
|
||||
_logger.Trace("{0} -> {1}", command.GetType().Name, handler.GetType().Name);
|
||||
|
||||
_commandQueueManager.Start(commandModel);
|
||||
BroadcastCommandUpdate(commandModel);
|
||||
|
||||
@@ -108,9 +110,12 @@ namespace NzbDrone.Core.Messaging.Commands
|
||||
{
|
||||
ProgressMessageContext.CommandModel = null;
|
||||
}
|
||||
}
|
||||
|
||||
_logger.Trace("{0} <- {1} [{2}]", command.GetType().Name, handler.GetType().Name, commandModel.Duration.ToString());
|
||||
if (handler != null)
|
||||
{
|
||||
_logger.Trace("{0} <- {1} [{2}]", command.GetType().Name, handler.GetType().Name, commandModel.Duration.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void BroadcastCommandUpdate(CommandModel command)
|
||||
|
||||
Reference in New Issue
Block a user