mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fix possible race condition
This commit is contained in:
parent
d1e1aef5f7
commit
e699e5d405
@ -970,20 +970,18 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
var id = item.Id;
|
var id = item.Id;
|
||||||
_logger.LogInformation("OnRefreshProgress {0} {1}", id.ToString("N", CultureInfo.InvariantCulture), progress);
|
_logger.LogInformation("OnRefreshProgress {0} {1}", id.ToString("N", CultureInfo.InvariantCulture), progress);
|
||||||
|
|
||||||
if (_activeRefreshes.TryAdd(id, progress))
|
// TODO: Need to hunt down the conditions for this happening
|
||||||
{
|
_activeRefreshes.AddOrUpdate(
|
||||||
RefreshProgress?.Invoke(this, new GenericEventArgs<Tuple<BaseItem, double>>(new Tuple<BaseItem, double>(item, progress)));
|
id,
|
||||||
}
|
(_) => throw new Exception(
|
||||||
else
|
|
||||||
{
|
|
||||||
// TODO: Need to hunt down the conditions for this happening
|
|
||||||
throw new Exception(
|
|
||||||
string.Format(
|
string.Format(
|
||||||
CultureInfo.InvariantCulture,
|
CultureInfo.InvariantCulture,
|
||||||
"Refresh for item {0} {1} is not in progress",
|
"Refresh for item {0} {1} is not in progress",
|
||||||
item.GetType().Name,
|
item.GetType().Name,
|
||||||
item.Id.ToString("N", CultureInfo.InvariantCulture)));
|
item.Id.ToString("N", CultureInfo.InvariantCulture))),
|
||||||
}
|
(_, _) => progress);
|
||||||
|
|
||||||
|
RefreshProgress?.Invoke(this, new GenericEventArgs<Tuple<BaseItem, double>>(new Tuple<BaseItem, double>(item, progress)));
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly SimplePriorityQueue<Tuple<Guid, MetadataRefreshOptions>> _refreshQueue =
|
private readonly SimplePriorityQueue<Tuple<Guid, MetadataRefreshOptions>> _refreshQueue =
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
<TargetFramework>netstandard2.1</TargetFramework>
|
<TargetFramework>netstandard2.1</TargetFramework>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
<LangVersion>preview</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Code Analyzers-->
|
<!-- Code Analyzers-->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user