mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-04 06:45:24 +01:00
Fixed: Task progress messages in the UI
(cherry picked from commit c6417337812f3578a27f9dc1e44fdad80f557271)
This commit is contained in:
parent
02e420580e
commit
2cacfba81f
5 changed files with 16 additions and 8 deletions
|
|
@ -13,6 +13,6 @@ public ApplicationIndexerSyncCommand()
|
|||
|
||||
public override bool SendUpdatesToClient => true;
|
||||
|
||||
public override string CompletionMessage => null;
|
||||
public override string CompletionMessage => "Completed";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@ private async Task<IList<ReleaseInfo>> Dispatch(Func<IIndexer, Task<IndexerPagea
|
|||
|
||||
var reports = batch.SelectMany(x => x).ToList();
|
||||
|
||||
_logger.Debug("Total of {0} reports were found for {1} from {2} indexer(s)", reports.Count, criteriaBase, indexers.Count);
|
||||
_logger.ProgressDebug("Total of {0} reports were found for {1} from {2} indexer(s)", reports.Count, criteriaBase, indexers.Count);
|
||||
|
||||
return reports;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ public virtual bool SendUpdatesToClient
|
|||
}
|
||||
|
||||
public virtual bool UpdateScheduledTask => true;
|
||||
public virtual string CompletionMessage => "Completed";
|
||||
public virtual string CompletionMessage => null;
|
||||
public virtual bool RequiresDiskAccess => false;
|
||||
public virtual bool IsExclusive => false;
|
||||
public virtual bool IsTypeExclusive => false;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Threading;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
|
||||
namespace NzbDrone.Core.ProgressMessaging
|
||||
{
|
||||
public static class ProgressMessageContext
|
||||
{
|
||||
private static AsyncLocal<CommandModel> _commandModelAsync = new AsyncLocal<CommandModel>();
|
||||
|
||||
[ThreadStatic]
|
||||
private static CommandModel _commandModel;
|
||||
|
||||
|
|
@ -13,8 +16,15 @@ public static class ProgressMessageContext
|
|||
|
||||
public static CommandModel CommandModel
|
||||
{
|
||||
get { return _commandModel; }
|
||||
set { _commandModel = value; }
|
||||
get
|
||||
{
|
||||
return _commandModel ?? _commandModelAsync.Value;
|
||||
}
|
||||
set
|
||||
{
|
||||
_commandModel = value;
|
||||
_commandModelAsync.Value = value;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool LockReentrancy()
|
||||
|
|
|
|||
|
|
@ -6,7 +6,5 @@ public class ApplicationUpdateCommand : Command
|
|||
{
|
||||
public override bool SendUpdatesToClient => true;
|
||||
public override bool IsExclusive => true;
|
||||
|
||||
public override string CompletionMessage => null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue