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(); } ///