From 17585e14e864a2dda5f6674a95b095999ca2c880 Mon Sep 17 00:00:00 2001 From: Stephan Date: Thu, 21 Jul 2016 14:55:19 +0200 Subject: [PATCH] TEMP - HealthCheck and NuCache --- src/Umbraco.Web/WebBootManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web/WebBootManager.cs b/src/Umbraco.Web/WebBootManager.cs index ba7c1e7c62..0d56ca0e77 100644 --- a/src/Umbraco.Web/WebBootManager.cs +++ b/src/Umbraco.Web/WebBootManager.cs @@ -42,6 +42,7 @@ using Umbraco.Core.Services.Changes; using Umbraco.Web.Cache; using Umbraco.Web.DependencyInjection; using Umbraco.Web.HealthCheck; +using Umbraco.Web.HealthCheck.Checks.DataIntegrity; using Umbraco.Web._Legacy.Actions; using UmbracoExamine; using Action = System.Action; @@ -550,7 +551,11 @@ namespace Umbraco.Web Container.Register(); HealthCheckResolver.Current = new HealthCheckResolver(Container, ProfilingLogger.Logger, - () => PluginManager.ResolveTypes()); // fixme XML cache vs NuCache?! + () => PluginManager.ResolveTypes()); + + // fixme - remove for NuCache else it fails + // but we should also have one for NuCache AND NuCache should be a component that does all this + HealthCheckResolver.Current.RemoveType(); } ///