Internal: adjusted internal requests visibility from public to package private (redo)
was just reverted by mistake in the failed attempt of isolating the change and taking it out of #7319
This commit is contained in:
parent
441c1c8268
commit
abdbfe768b
|
@ -134,7 +134,7 @@ public class TransportIndicesSegmentsAction extends TransportBroadcastOperationA
|
|||
return new ShardSegments(indexShard.routingEntry(), indexShard.engine().segments());
|
||||
}
|
||||
|
||||
public static class IndexShardSegmentRequest extends BroadcastShardOperationRequest {
|
||||
static class IndexShardSegmentRequest extends BroadcastShardOperationRequest {
|
||||
|
||||
IndexShardSegmentRequest() {
|
||||
}
|
||||
|
|
|
@ -200,7 +200,7 @@ public class TransportIndicesStatsAction extends TransportBroadcastOperationActi
|
|||
return new ShardStats(indexShard, flags);
|
||||
}
|
||||
|
||||
public static class IndexShardStatsRequest extends BroadcastShardOperationRequest {
|
||||
static class IndexShardStatsRequest extends BroadcastShardOperationRequest {
|
||||
|
||||
// TODO if there are many indices, the request might hold a large indices array..., we don't really need to serialize it
|
||||
IndicesStatsRequest request;
|
||||
|
|
Loading…
Reference in New Issue