From 260ec800c2638e87aeafa48870325ba53b162d67 Mon Sep 17 00:00:00 2001 From: Shannon Date: Wed, 20 May 2015 17:51:53 +1000 Subject: [PATCH] Disables the DeepCloneRuntimeCacheProvider for now until we solve this cache problem --- src/Umbraco.Core/Persistence/Repositories/RepositoryBase.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Persistence/Repositories/RepositoryBase.cs b/src/Umbraco.Core/Persistence/Repositories/RepositoryBase.cs index 4c5087674f..887766ddc0 100644 --- a/src/Umbraco.Core/Persistence/Repositories/RepositoryBase.cs +++ b/src/Umbraco.Core/Persistence/Repositories/RepositoryBase.cs @@ -26,7 +26,8 @@ namespace Umbraco.Core.Persistence.Repositories //IMPORTANT: We will force the DeepCloneRuntimeCacheProvider to be used here which is a wrapper for the underlying // runtime cache to ensure that anything that can be deep cloned in/out is done so, this also ensures that our tracks // changes entities are reset. - _cache = new CacheHelper(new DeepCloneRuntimeCacheProvider(cache.RuntimeCache), cache.StaticCache, cache.RequestCache); + //_cache = new CacheHelper(new DeepCloneRuntimeCacheProvider(cache.RuntimeCache), cache.StaticCache, cache.RequestCache); + _cache = cache; } ///