Skip to content

Commit

Permalink
Merge pull request #74 from github/caol-ila-fix-permissions
Browse files Browse the repository at this point in the history
Fix permission script generation
  • Loading branch information
caol-ila authored Jun 18, 2024
2 parents a20a477 + 9fc7724 commit 9084c41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KustoSchemaTools/Changes/DatabaseChanges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ private static List<IChange> GeneratePermissionChanges(Database oldState, Databa
if (permissionChanges.Any())
{
log.LogInformation($"Detected {permissionChanges.Count} permission changes");
result.Add(new Heading("Permissions"));
permissionChanges.Insert(0,new Heading("Permissions"));

}

return result;
return permissionChanges;
}

private static List<IChange> GenerateEntityGroupChanges(Database oldState, Database newState, string name)
Expand Down

0 comments on commit 9084c41

Please sign in to comment.