|
|
|
@ -134,25 +134,19 @@ namespace NzbDrone.Core.Messaging.Commands
|
|
|
|
|
.Select(x => x.Body.Name)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var localItem = _items.Where(c =>
|
|
|
|
|
{
|
|
|
|
|
// If an executing command requires disk access don't return a command that
|
|
|
|
|
// requires disk access. A lower priority or later queued task could be returned
|
|
|
|
|
// instead, but that will allow other tasks to execute whiule waiting for disk access.
|
|
|
|
|
var queuedCommands = _items.Where(c => c.Status == CommandStatus.Queued);
|
|
|
|
|
|
|
|
|
|
if (startedCommands.Any(x => x.Body.RequiresDiskAccess))
|
|
|
|
|
{
|
|
|
|
|
return c.Status == CommandStatus.Queued &&
|
|
|
|
|
!c.Body.RequiresDiskAccess;
|
|
|
|
|
queuedCommands = queuedCommands.Where(c => !c.Body.RequiresDiskAccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If an executing command is TypeExclusive don't return a command with same type
|
|
|
|
|
if (startedCommands.Any(x => x.Body.IsTypeExclusive)) {
|
|
|
|
|
return c.Status == CommandStatus.Queued && !exclusiveTypes.Any(x => x == c.Body.Name);
|
|
|
|
|
if (startedCommands.Any(x => x.Body.IsTypeExclusive))
|
|
|
|
|
{
|
|
|
|
|
queuedCommands = queuedCommands.Where(c => !exclusiveTypes.Any(x => x == c.Body.Name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return c.Status == CommandStatus.Queued;
|
|
|
|
|
})
|
|
|
|
|
.OrderByDescending(c => c.Priority)
|
|
|
|
|
var localItem = queuedCommands.OrderByDescending(c => c.Priority)
|
|
|
|
|
.ThenBy(c => c.QueuedAt)
|
|
|
|
|
.FirstOrDefault();
|
|
|
|
|
|
|
|
|
|