Skip to content

Commit

Permalink
Remove ACL predicates from the list of reserved predicates (#4656)
Browse files Browse the repository at this point in the history
This fixes the scendaio when ACL is off and a <uid * *> deletion is issued
Fixes JIRA DGRAPH-975

(cherry picked from commit 14ee065)
  • Loading branch information
mangalaman93 authored and danielmai committed Jan 27, 2020
1 parent 0fe37c8 commit 79be69d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions x/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -597,9 +597,6 @@ func ReservedPredicates() []string {
for pred := range reservedPredicateMap {
preds = append(preds, pred)
}
for pred := range aclPredicateMap {
preds = append(preds, pred)
}
return preds
}

Expand Down

0 comments on commit 79be69d

Please sign in to comment.