From f44b158c157a9154c966a2bbca70c3d030899c83 Mon Sep 17 00:00:00 2001 From: Shannon Date: Thu, 14 Dec 2017 16:19:54 +1100 Subject: [PATCH] When we disable examine indexing on startup with MainDom, also suspend all indexing --- src/Umbraco.Web/ExamineStartup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web/ExamineStartup.cs b/src/Umbraco.Web/ExamineStartup.cs index c8cc83663c..e149caabb3 100644 --- a/src/Umbraco.Web/ExamineStartup.cs +++ b/src/Umbraco.Web/ExamineStartup.cs @@ -79,6 +79,7 @@ namespace Umbraco.Web //if we could not register the shutdown examine ourselves, it means we are not maindom! in this case all of examine should be disabled //from indexing anything on startup!! _disableExamineIndexing = true; + Suspendable.ExamineEvents.SuspendIndexers(); } }