Skip to content

Commit fb3f181

Browse files
committed
Fix docs
1 parent 0a22302 commit fb3f181

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

server/src/main/java/org/elasticsearch/action/support/local/LocalClusterStateRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected LocalClusterStateRequest(StreamInput in) throws IOException {
4646

4747
/**
4848
* This constructor exists solely for BwC purposes. It should exclusively be used by requests that used to extend
49-
* {@link org.elasticsearch.action.support.master.MasterNodeReadRequest} and still need to be able to serialize incoming request.
49+
* {@link org.elasticsearch.action.support.master.MasterNodeRequest} and still need to be able to serialize incoming request.
5050
*/
5151
@UpdateForV10(owner = UpdateForV10.Owner.DISTRIBUTED_COORDINATION)
5252
protected LocalClusterStateRequest(StreamInput in, boolean readLocal) throws IOException {

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/enrich/action/EnrichStatsAction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public Request(TimeValue masterNodeTimeout) {
4646
}
4747

4848
/**
49-
* NB prior to 9.0 this was a TransportMasterNodeReadAction so for BwC we must remain able to read these requests until
49+
* NB prior to 9.0 this was a TransportMasterNodeAction so for BwC we must remain able to read these requests until
5050
* we no longer need to support calling this action remotely.
5151
*/
5252
@UpdateForV10(owner = UpdateForV10.Owner.DATA_MANAGEMENT)
@@ -91,7 +91,7 @@ public List<CacheStats> getCacheStats() {
9191
}
9292

9393
/**
94-
* NB prior to 9.0 this was a TransportMasterNodeReadAction so for BwC we must remain able to write these responses until
94+
* NB prior to 9.0 this was a TransportMasterNodeAction so for BwC we must remain able to write these responses until
9595
* we no longer need to support calling this action remotely.
9696
*/
9797
@UpdateForV10(owner = UpdateForV10.Owner.DATA_MANAGEMENT)
@@ -182,7 +182,7 @@ public XContentBuilder toXContent(XContentBuilder builder, Params params) throws
182182
public record ExecutingPolicy(String name, TaskInfo taskInfo) implements Writeable, ToXContentFragment {
183183

184184
/**
185-
* NB prior to 9.0 this was a TransportMasterNodeReadAction so for BwC we must remain able to write these responses until
185+
* NB prior to 9.0 this was a TransportMasterNodeAction so for BwC we must remain able to write these responses until
186186
* we no longer need to support calling this action remotely.
187187
*/
188188
@UpdateForV10(owner = UpdateForV10.Owner.DATA_MANAGEMENT)

x-pack/plugin/enrich/src/main/java/org/elasticsearch/xpack/enrich/action/TransportEnrichStatsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class TransportEnrichStatsAction extends TransportLocalClusterStateAction
3737
private final Client client;
3838

3939
/**
40-
* NB prior to 9.0 this was a TransportMasterNodeReadAction so for BwC it must be registered with the TransportService until
40+
* NB prior to 9.0 this was a TransportMasterNodeAction so for BwC it must be registered with the TransportService until
4141
* we no longer need to support calling this action remotely.
4242
*/
4343
@UpdateForV10(owner = UpdateForV10.Owner.DATA_MANAGEMENT)

0 commit comments

Comments
 (0)