mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 04:52:21 -07:00
Fixed: Refreshing Plex Server series in high volume systems
(cherry picked from commit 903aba5dee0284e571fc025883abbf2a9ccf4386)
This commit is contained in:
parent
9945c986d9
commit
d10469d129
9 changed files with 216 additions and 31 deletions
|
@ -8,6 +8,7 @@ namespace NzbDrone.Common.Cache
|
||||||
{
|
{
|
||||||
ICached<T> GetCache<T>(Type host);
|
ICached<T> GetCache<T>(Type host);
|
||||||
ICached<T> GetCache<T>(Type host, string name);
|
ICached<T> GetCache<T>(Type host, string name);
|
||||||
|
ICached<T> GetRollingCache<T>(Type host, string name, TimeSpan defaultLifeTime);
|
||||||
ICachedDictionary<T> GetCacheDictionary<T>(Type host, string name, Func<IDictionary<string, T>> fetchFunc = null, TimeSpan? lifeTime = null);
|
ICachedDictionary<T> GetCacheDictionary<T>(Type host, string name, Func<IDictionary<string, T>> fetchFunc = null, TimeSpan? lifeTime = null);
|
||||||
void Clear();
|
void Clear();
|
||||||
ICollection<ICached> Caches { get; }
|
ICollection<ICached> Caches { get; }
|
||||||
|
@ -43,6 +44,14 @@ namespace NzbDrone.Common.Cache
|
||||||
return (ICached<T>)_cache.Get(host.FullName + "_" + name, () => new Cached<T>());
|
return (ICached<T>)_cache.Get(host.FullName + "_" + name, () => new Cached<T>());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ICached<T> GetRollingCache<T>(Type host, string name, TimeSpan defaultLifeTime)
|
||||||
|
{
|
||||||
|
Ensure.That(host, () => host).IsNotNull();
|
||||||
|
Ensure.That(name, () => name).IsNotNullOrWhiteSpace();
|
||||||
|
|
||||||
|
return (ICached<T>)_cache.Get(host.FullName + "_" + name, () => new Cached<T>(defaultLifeTime, true));
|
||||||
|
}
|
||||||
|
|
||||||
public ICachedDictionary<T> GetCacheDictionary<T>(Type host, string name, Func<IDictionary<string, T>> fetchFunc = null, TimeSpan? lifeTime = null)
|
public ICachedDictionary<T> GetCacheDictionary<T>(Type host, string name, Func<IDictionary<string, T>> fetchFunc = null, TimeSpan? lifeTime = null)
|
||||||
{
|
{
|
||||||
Ensure.That(host, () => host).IsNotNull();
|
Ensure.That(host, () => host).IsNotNull();
|
||||||
|
|
|
@ -3,6 +3,7 @@ using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NzbDrone.Common.EnsureThat;
|
using NzbDrone.Common.EnsureThat;
|
||||||
|
using NzbDrone.Common.Extensions;
|
||||||
|
|
||||||
namespace NzbDrone.Common.Cache
|
namespace NzbDrone.Common.Cache
|
||||||
{
|
{
|
||||||
|
@ -29,35 +30,49 @@ namespace NzbDrone.Common.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly ConcurrentDictionary<string, CacheItem> _store;
|
private readonly ConcurrentDictionary<string, CacheItem> _store;
|
||||||
|
private readonly TimeSpan? _defaultLifeTime;
|
||||||
|
private readonly bool _rollingExpiry;
|
||||||
|
|
||||||
public Cached()
|
public Cached(TimeSpan? defaultLifeTime = null, bool rollingExpiry = false)
|
||||||
{
|
{
|
||||||
_store = new ConcurrentDictionary<string, CacheItem>();
|
_store = new ConcurrentDictionary<string, CacheItem>();
|
||||||
|
_defaultLifeTime = defaultLifeTime;
|
||||||
|
_rollingExpiry = rollingExpiry;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Set(string key, T value, TimeSpan? lifetime = null)
|
public void Set(string key, T value, TimeSpan? lifeTime = null)
|
||||||
{
|
{
|
||||||
Ensure.That(key, () => key).IsNotNullOrWhiteSpace();
|
Ensure.That(key, () => key).IsNotNullOrWhiteSpace();
|
||||||
_store[key] = new CacheItem(value, lifetime);
|
_store[key] = new CacheItem(value, lifeTime ?? _defaultLifeTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
public T Find(string key)
|
public T Find(string key)
|
||||||
{
|
{
|
||||||
CacheItem value;
|
CacheItem cacheItem;
|
||||||
_store.TryGetValue(key, out value);
|
if (!_store.TryGetValue(key, out cacheItem))
|
||||||
|
|
||||||
if (value == null)
|
|
||||||
{
|
{
|
||||||
return default(T);
|
return default(T);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (value.IsExpired())
|
if (cacheItem.IsExpired())
|
||||||
{
|
{
|
||||||
_store.TryRemove(key, out value);
|
if (TryRemove(key, cacheItem))
|
||||||
return default(T);
|
{
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!_store.TryGetValue(key, out cacheItem))
|
||||||
|
{
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return value.Object;
|
if (_rollingExpiry && _defaultLifeTime.HasValue)
|
||||||
|
{
|
||||||
|
_store.TryUpdate(key, new CacheItem(cacheItem.Object, _defaultLifeTime.Value), cacheItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
return cacheItem.Object;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Remove(string key)
|
public void Remove(string key)
|
||||||
|
@ -72,20 +87,31 @@ namespace NzbDrone.Common.Cache
|
||||||
{
|
{
|
||||||
Ensure.That(key, () => key).IsNotNullOrWhiteSpace();
|
Ensure.That(key, () => key).IsNotNullOrWhiteSpace();
|
||||||
|
|
||||||
CacheItem cacheItem;
|
lifeTime = lifeTime ?? _defaultLifeTime;
|
||||||
T value;
|
|
||||||
|
|
||||||
if (!_store.TryGetValue(key, out cacheItem) || cacheItem.IsExpired())
|
CacheItem cacheItem;
|
||||||
|
|
||||||
|
if (_store.TryGetValue(key, out cacheItem) && !cacheItem.IsExpired())
|
||||||
{
|
{
|
||||||
value = function();
|
if (_rollingExpiry && lifeTime.HasValue)
|
||||||
Set(key, value, lifeTime);
|
{
|
||||||
|
_store.TryUpdate(key, new CacheItem(cacheItem.Object, lifeTime), cacheItem);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
value = cacheItem.Object;
|
var newCacheItem = new CacheItem(function(), lifeTime);
|
||||||
|
if (cacheItem != null && _store.TryUpdate(key, newCacheItem, cacheItem))
|
||||||
|
{
|
||||||
|
cacheItem = newCacheItem;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cacheItem = _store.GetOrAdd(key, newCacheItem);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return value;
|
return cacheItem.Object;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Clear()
|
public void Clear()
|
||||||
|
@ -95,9 +121,11 @@ namespace NzbDrone.Common.Cache
|
||||||
|
|
||||||
public void ClearExpired()
|
public void ClearExpired()
|
||||||
{
|
{
|
||||||
foreach (var cached in _store.Where(c => c.Value.IsExpired()))
|
var collection = (ICollection<KeyValuePair<string, CacheItem>>)_store;
|
||||||
|
|
||||||
|
foreach (var cached in _store.Where(c => c.Value.IsExpired()).ToList())
|
||||||
{
|
{
|
||||||
Remove(cached.Key);
|
collection.Remove(cached);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,5 +136,12 @@ namespace NzbDrone.Common.Cache
|
||||||
return _store.Values.Select(c => c.Object).ToList();
|
return _store.Values.Select(c => c.Object).ToList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool TryRemove(string key, CacheItem value)
|
||||||
|
{
|
||||||
|
var collection = (ICollection<KeyValuePair<string, CacheItem>>)_store;
|
||||||
|
|
||||||
|
return collection.Remove(new KeyValuePair<string, CacheItem>(key, value));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
using NzbDrone.Common.Messaging;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.MediaFiles.Events
|
||||||
|
{
|
||||||
|
public class RenameCompletedEvent : IEvent
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -157,6 +157,8 @@ namespace NzbDrone.Core.MediaFiles
|
||||||
_logger.ProgressInfo("Renaming {0} files for {1}", trackFiles.Count, artist.Name);
|
_logger.ProgressInfo("Renaming {0} files for {1}", trackFiles.Count, artist.Name);
|
||||||
RenameFiles(trackFiles, artist);
|
RenameFiles(trackFiles, artist);
|
||||||
_logger.ProgressInfo("Selected track files renamed for {0}", artist.Name);
|
_logger.ProgressInfo("Selected track files renamed for {0}", artist.Name);
|
||||||
|
|
||||||
|
_eventAggregator.PublishEvent(new RenameCompletedEvent());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Execute(RenameArtistCommand message)
|
public void Execute(RenameArtistCommand message)
|
||||||
|
@ -171,6 +173,8 @@ namespace NzbDrone.Core.MediaFiles
|
||||||
RenameFiles(trackFiles, artist);
|
RenameFiles(trackFiles, artist);
|
||||||
_logger.ProgressInfo("All track files renamed for {0}", artist.Name);
|
_logger.ProgressInfo("All track files renamed for {0}", artist.Name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_eventAggregator.PublishEvent(new RenameCompletedEvent());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@ namespace NzbDrone.Core.Notifications
|
||||||
void OnDownloadFailure(DownloadFailedMessage message);
|
void OnDownloadFailure(DownloadFailedMessage message);
|
||||||
void OnImportFailure(AlbumDownloadMessage message);
|
void OnImportFailure(AlbumDownloadMessage message);
|
||||||
void OnTrackRetag(TrackRetagMessage message);
|
void OnTrackRetag(TrackRetagMessage message);
|
||||||
|
void ProcessQueue();
|
||||||
bool SupportsOnGrab { get; }
|
bool SupportsOnGrab { get; }
|
||||||
bool SupportsOnReleaseImport { get; }
|
bool SupportsOnReleaseImport { get; }
|
||||||
bool SupportsOnUpgrade { get; }
|
bool SupportsOnUpgrade { get; }
|
||||||
|
|
|
@ -64,6 +64,10 @@ namespace NzbDrone.Core.Notifications
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public virtual void ProcessQueue()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public bool SupportsOnGrab => HasConcreteImplementation("OnGrab");
|
public bool SupportsOnGrab => HasConcreteImplementation("OnGrab");
|
||||||
public bool SupportsOnRename => HasConcreteImplementation("OnRename");
|
public bool SupportsOnRename => HasConcreteImplementation("OnRename");
|
||||||
public bool SupportsOnReleaseImport => HasConcreteImplementation("OnReleaseImport");
|
public bool SupportsOnReleaseImport => HasConcreteImplementation("OnReleaseImport");
|
||||||
|
|
|
@ -21,7 +21,9 @@ namespace NzbDrone.Core.Notifications
|
||||||
IHandle<HealthCheckFailedEvent>,
|
IHandle<HealthCheckFailedEvent>,
|
||||||
IHandle<DownloadFailedEvent>,
|
IHandle<DownloadFailedEvent>,
|
||||||
IHandle<AlbumImportIncompleteEvent>,
|
IHandle<AlbumImportIncompleteEvent>,
|
||||||
IHandle<TrackFileRetaggedEvent>
|
IHandle<TrackFileRetaggedEvent>,
|
||||||
|
IHandleAsync<RenameCompletedEvent>,
|
||||||
|
IHandleAsync<HealthCheckCompleteEvent>
|
||||||
{
|
{
|
||||||
private readonly INotificationFactory _notificationFactory;
|
private readonly INotificationFactory _notificationFactory;
|
||||||
private readonly Logger _logger;
|
private readonly Logger _logger;
|
||||||
|
@ -272,5 +274,30 @@ namespace NzbDrone.Core.Notifications
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void HandleAsync(RenameCompletedEvent message)
|
||||||
|
{
|
||||||
|
ProcessQueue();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void HandleAsync(HealthCheckCompleteEvent message)
|
||||||
|
{
|
||||||
|
ProcessQueue();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ProcessQueue()
|
||||||
|
{
|
||||||
|
foreach (var notification in _notificationFactory.GetAvailableProviders())
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
notification.ProcessQueue();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.Warn(ex, "Unable to process notification queue for " + notification.Definition.Name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using FluentValidation.Results;
|
using FluentValidation.Results;
|
||||||
|
using NLog;
|
||||||
|
using NzbDrone.Common.Cache;
|
||||||
using NzbDrone.Common.Extensions;
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Core.Exceptions;
|
using NzbDrone.Core.Exceptions;
|
||||||
using NzbDrone.Core.Music;
|
using NzbDrone.Core.Music;
|
||||||
|
@ -13,11 +16,23 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
{
|
{
|
||||||
private readonly IPlexServerService _plexServerService;
|
private readonly IPlexServerService _plexServerService;
|
||||||
private readonly IPlexTvService _plexTvService;
|
private readonly IPlexTvService _plexTvService;
|
||||||
|
private readonly Logger _logger;
|
||||||
|
|
||||||
public PlexServer(IPlexServerService plexServerService, IPlexTvService plexTvService)
|
private class PlexUpdateQueue
|
||||||
|
{
|
||||||
|
public Dictionary<int, Artist> Pending { get; } = new Dictionary<int, Artist>();
|
||||||
|
public bool Refreshing { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
private readonly ICached<PlexUpdateQueue> _pendingArtistCache;
|
||||||
|
|
||||||
|
public PlexServer(IPlexServerService plexServerService, IPlexTvService plexTvService, ICacheManager cacheManager, Logger logger)
|
||||||
{
|
{
|
||||||
_plexServerService = plexServerService;
|
_plexServerService = plexServerService;
|
||||||
_plexTvService = plexTvService;
|
_plexTvService = plexTvService;
|
||||||
|
_logger = logger;
|
||||||
|
|
||||||
|
_pendingArtistCache = cacheManager.GetRollingCache<PlexUpdateQueue>(GetType(), "pendingArtists", TimeSpan.FromDays(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
public override string Link => "https://www.plex.tv/";
|
public override string Link => "https://www.plex.tv/";
|
||||||
|
@ -42,7 +57,65 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
{
|
{
|
||||||
if (Settings.UpdateLibrary)
|
if (Settings.UpdateLibrary)
|
||||||
{
|
{
|
||||||
_plexServerService.UpdateLibrary(artist, Settings);
|
_logger.Debug("Scheduling library update for artist {0} {1}", artist.Id, artist.Name);
|
||||||
|
var queue = _pendingArtistCache.Get(Settings.Host, () => new PlexUpdateQueue());
|
||||||
|
lock (queue)
|
||||||
|
{
|
||||||
|
queue.Pending[artist.Id] = artist;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void ProcessQueue()
|
||||||
|
{
|
||||||
|
PlexUpdateQueue queue = _pendingArtistCache.Find(Settings.Host);
|
||||||
|
if (queue == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
lock (queue)
|
||||||
|
{
|
||||||
|
if (queue.Refreshing)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
queue.Refreshing = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
List<Artist> refreshingArtist;
|
||||||
|
lock (queue)
|
||||||
|
{
|
||||||
|
if (queue.Pending.Empty())
|
||||||
|
{
|
||||||
|
queue.Refreshing = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
refreshingArtist = queue.Pending.Values.ToList();
|
||||||
|
queue.Pending.Clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Settings.UpdateLibrary)
|
||||||
|
{
|
||||||
|
_logger.Debug("Performing library update for {0} artist", refreshingArtist.Count);
|
||||||
|
_plexServerService.UpdateLibrary(refreshingArtist, Settings);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
lock (queue)
|
||||||
|
{
|
||||||
|
queue.Refreshing = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using FluentValidation.Results;
|
using FluentValidation.Results;
|
||||||
|
@ -13,6 +14,7 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
public interface IPlexServerService
|
public interface IPlexServerService
|
||||||
{
|
{
|
||||||
void UpdateLibrary(Artist artist, PlexServerSettings settings);
|
void UpdateLibrary(Artist artist, PlexServerSettings settings);
|
||||||
|
void UpdateLibrary(IEnumerable<Artist> artists, PlexServerSettings settings);
|
||||||
ValidationFailure Test(PlexServerSettings settings);
|
ValidationFailure Test(PlexServerSettings settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,10 +34,16 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateLibrary(Artist artist, PlexServerSettings settings)
|
public void UpdateLibrary(Artist artist, PlexServerSettings settings)
|
||||||
|
{
|
||||||
|
UpdateLibrary(new[] { artist }, settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdateLibrary(IEnumerable<Artist> multipleArtist, PlexServerSettings settings)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_logger.Debug("Sending Update Request to Plex Server");
|
_logger.Debug("Sending Update Request to Plex Server");
|
||||||
|
var watch = Stopwatch.StartNew();
|
||||||
|
|
||||||
var version = _versionCache.Get(settings.Host, () => GetVersion(settings), TimeSpan.FromHours(2));
|
var version = _versionCache.Get(settings.Host, () => GetVersion(settings), TimeSpan.FromHours(2));
|
||||||
ValidateVersion(version);
|
ValidateVersion(version);
|
||||||
|
@ -45,12 +53,31 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
|
|
||||||
if (partialUpdates)
|
if (partialUpdates)
|
||||||
{
|
{
|
||||||
UpdatePartialSection(artist, sections, settings);
|
var partiallyUpdated = true;
|
||||||
|
|
||||||
|
foreach (var artist in multipleArtist)
|
||||||
|
{
|
||||||
|
partiallyUpdated &= UpdatePartialSection(artist, sections, settings);
|
||||||
|
|
||||||
|
if (!partiallyUpdated)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only update complete sections if all partial updates failed
|
||||||
|
if (!partiallyUpdated)
|
||||||
|
{
|
||||||
|
_logger.Debug("Unable to update partial section, updating all Music sections");
|
||||||
|
sections.ForEach(s => UpdateSection(s.Id, settings));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sections.ForEach(s => UpdateSection(s.Id, settings));
|
sections.ForEach(s => UpdateSection(s.Id, settings));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_logger.Debug("Finished sending Update Request to Plex Server (took {0} ms)", watch.ElapsedMilliseconds);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
@ -123,7 +150,7 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
_plexServerProxy.Update(sectionId, settings);
|
_plexServerProxy.Update(sectionId, settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdatePartialSection(Artist artist, List<PlexSection> sections, PlexServerSettings settings)
|
private bool UpdatePartialSection(Artist artist, List<PlexSection> sections, PlexServerSettings settings)
|
||||||
{
|
{
|
||||||
var partiallyUpdated = false;
|
var partiallyUpdated = false;
|
||||||
|
|
||||||
|
@ -140,12 +167,7 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only update complete sections if all partial updates failed
|
return partiallyUpdated;
|
||||||
if (!partiallyUpdated)
|
|
||||||
{
|
|
||||||
_logger.Debug("Unable to update partial section, updating all Music sections");
|
|
||||||
sections.ForEach(s => UpdateSection(s.Id, settings));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private int? GetMetadataId(int sectionId, Artist artist, string language, PlexServerSettings settings)
|
private int? GetMetadataId(int sectionId, Artist artist, string language, PlexServerSettings settings)
|
||||||
|
@ -159,6 +181,8 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
_versionCache.Remove(settings.Host);
|
||||||
|
_partialUpdateCache.Remove(settings.Host);
|
||||||
var sections = GetSections(settings);
|
var sections = GetSections(settings);
|
||||||
|
|
||||||
if (sections.Empty())
|
if (sections.Empty())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue