@Override public boolean allocateUnassigned(RoutingAllocation allocation) { boolean changed = false; changed |= gatewayAllocator.allocateUnassigned(allocation); changed |= allocator.allocateUnassigned(allocation); return changed; }
@Override public void applyFailedShards(FailedRerouteAllocation allocation) { gatewayAllocator.applyFailedShards(allocation); allocator.applyFailedShards(allocation); }