From a0428175d4e3d57d33ad0f161e10d9d05b8874f4 Mon Sep 17 00:00:00 2001 From: Thomas Mahlberg Date: Mon, 14 Oct 2024 15:13:14 +0200 Subject: [PATCH] Fix MV rollouts --- KustoSchemaTools/Model/MaterializedView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KustoSchemaTools/Model/MaterializedView.cs b/KustoSchemaTools/Model/MaterializedView.cs index b7b9c08..ae5177b 100644 --- a/KustoSchemaTools/Model/MaterializedView.cs +++ b/KustoSchemaTools/Model/MaterializedView.cs @@ -30,7 +30,7 @@ public List CreateScripts(string name, bool isNew) var asyncSetup = isNew && Backfill == true; - var excludedProperies = new HashSet(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity"]); + var excludedProperies = new HashSet(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity", "Policies"]); if (!asyncSetup) { excludedProperies.Add("EffectiveDateTime");