diff --git a/src/Umbraco.Infrastructure.PublishedCache/NuCache/ContentStore.cs b/src/Umbraco.Infrastructure.PublishedCache/NuCache/ContentStore.cs index 3ee0c3faa8..e84586f415 100644 --- a/src/Umbraco.Infrastructure.PublishedCache/NuCache/ContentStore.cs +++ b/src/Umbraco.Infrastructure.PublishedCache/NuCache/ContentStore.cs @@ -1329,7 +1329,7 @@ namespace Umbraco.Web.PublishedCache.NuCache return _collectTask; // ReSharper disable InconsistentlySynchronizedField - var task = _collectTask = Task.Run(Collect); + var task = _collectTask = Task.Run((Action)Collect); _collectTask.ContinueWith(_ => { lock (_rlocko)