[TEST] Fix GetUserPrivilegesResponse#Indices(StreamInput) constr
Closes #34631
This commit is contained in:
parent
7b49beb9b0
commit
aeb3cda585
|
@ -132,8 +132,9 @@ public final class GetUserPrivilegesResponse extends ActionResponse {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Indices(StreamInput in) throws IOException {
|
public Indices(StreamInput in) throws IOException {
|
||||||
indices = Collections.unmodifiableSet(in.readSet(StreamInput::readString));
|
// The use of TreeSet is to provide a consistent order that can be relied upon in tests
|
||||||
privileges = Collections.unmodifiableSet(in.readSet(StreamInput::readString));
|
indices = Collections.unmodifiableSet(new TreeSet<>(in.readSet(StreamInput::readString)));
|
||||||
|
privileges = Collections.unmodifiableSet(new TreeSet<>(in.readSet(StreamInput::readString)));
|
||||||
fieldSecurity = Collections.unmodifiableSet(in.readSet(input -> {
|
fieldSecurity = Collections.unmodifiableSet(in.readSet(input -> {
|
||||||
final String[] grant = input.readOptionalStringArray();
|
final String[] grant = input.readOptionalStringArray();
|
||||||
final String[] exclude = input.readOptionalStringArray();
|
final String[] exclude = input.readOptionalStringArray();
|
||||||
|
|
Loading…
Reference in New Issue