mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-01 17:03:36 +01:00
Merge pull request #1905 from MediaBrowser/dev
reduce repeated deserialization
This commit is contained in:
commit
9cf815214f
1 changed files with 3 additions and 1 deletions
|
|
@ -106,6 +106,7 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
|
|||
InitTriggerEvents();
|
||||
}
|
||||
|
||||
private bool _readFromFile = false;
|
||||
/// <summary>
|
||||
/// The _last execution result
|
||||
/// </summary>
|
||||
|
|
@ -126,7 +127,7 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
|
|||
|
||||
lock (_lastExecutionResultSyncLock)
|
||||
{
|
||||
if (_lastExecutionResult == null)
|
||||
if (_lastExecutionResult == null && !_readFromFile)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
@ -144,6 +145,7 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
|
|||
{
|
||||
Logger.ErrorException("Error deserializing {0}", ex, path);
|
||||
}
|
||||
_readFromFile = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue