Internal: adjusted internal requests visibility from public to package private
This commit is contained in:
parent
3450e82855
commit
61da463dd0
|
@ -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