Skip to content

Commit

Permalink
Remove 512 entity limit for groups (#7317) (#7318)
Browse files Browse the repository at this point in the history
* Consul 1.5.3 has configurable value limit for KV storage
* Integrated Raft
  • Loading branch information
jefferai committed Aug 14, 2019
1 parent a6afb33 commit 6879c71
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions vault/identity_store_groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,6 @@ func (i *IdentityStore) handleGroupUpdateCommon(ctx context.Context, req *logica
return logical.ErrorResponse("member entities can't be set manually for external groups"), nil
}
group.MemberEntityIDs = memberEntityIDsRaw.([]string)
if len(group.MemberEntityIDs) > 512 {
return logical.ErrorResponse("member entity IDs exceeding the limit of 512"), nil
}
}

memberGroupIDsRaw, ok := d.GetOk("member_group_ids")
Expand Down

0 comments on commit 6879c71

Please sign in to comment.