We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0cfd03 commit aaaefb4Copy full SHA for aaaefb4
libs/entitlement/src/main/java/org/elasticsearch/entitlement/runtime/policy/FileAccessTree.java
@@ -54,7 +54,7 @@ public String toString() {
54
}
55
56
static List<ExclusivePath> buildExclusivePathList(List<ExclusiveFileEntitlement> exclusiveFileEntitlements, PathLookup pathLookup) {
57
- Map<String, ExclusivePath> exclusivePaths = new HashMap<>();
+ Map<String, ExclusivePath> exclusivePaths = new LinkedHashMap<>();
58
for (ExclusiveFileEntitlement efe : exclusiveFileEntitlements) {
59
for (FilesEntitlement.FileData fd : efe.filesEntitlement().filesData()) {
60
if (fd.exclusive()) {
0 commit comments