Skip to content

Commit d49a0f9

Browse files
alex-slynkoCopilot
andcommitted
Fix Policy column name in managed identity loader
MS docs say Policies (plural) but the actual Kusto cluster returns Policy (singular). One-character fix. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent d87ca96 commit d49a0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

KustoSchemaTools/Parser/KustoLoader/KustoManagedIdentityPolicyLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class KustoManagedIdentityPolicyLoader : IKustoBulkEntitiesLoader
99
{
1010
const string script = @"
1111
.show database policy managed_identity
12-
| project Policies = parse_json(Policies)
12+
| project Policies = parse_json(Policy)
1313
| mv-expand Policy = Policies
1414
| project ObjectId = tostring(Policy.ObjectId), AllowedUsages = tostring(Policy.AllowedUsages)";
1515

0 commit comments

Comments
 (0)