Add isHidden to AliasActions equals/hashcode (#53700)
This commit adds the `isHidden` flag to the `equals` and `hashCode` methods for `AliasActions`.
This commit is contained in:
parent
879e26ec06
commit
f0674af132
|
@ -562,12 +562,13 @@ public class IndicesAliasesRequest extends AcknowledgedRequest<IndicesAliasesReq
|
|||
&& Objects.equals(routing, other.routing)
|
||||
&& Objects.equals(indexRouting, other.indexRouting)
|
||||
&& Objects.equals(searchRouting, other.searchRouting)
|
||||
&& Objects.equals(writeIndex, other.writeIndex);
|
||||
&& Objects.equals(writeIndex, other.writeIndex)
|
||||
&& Objects.equals(isHidden, other.isHidden);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(type, indices, aliases, filter, routing, indexRouting, searchRouting, writeIndex);
|
||||
return Objects.hash(type, indices, aliases, filter, routing, indexRouting, searchRouting, writeIndex, isHidden);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue