Skip to content

Commit f77a073

Browse files
authored
Fix extraneous not in comments (#137016)
Added in #136953
1 parent 94a8678 commit f77a073

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/src/main/java/org/elasticsearch/action/support/master/AcknowledgedRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public abstract class AcknowledgedRequest<Request extends MasterNodeRequest<Requ
5151
* and serializing it as a transport message). If the cluster state is committed (i.e. a quorum of master-eligible
5252
* nodes have accepted the new state) and then the timeout elapses then the corresponding listener is completed via
5353
* {@link org.elasticsearch.cluster.ClusterStateAckListener#onAckTimeout()}. Although the time interval is measured
54-
* from the start of the publication, it does not have any effect until the cluster state is not committed:
54+
* from the start of the publication, it does not have any effect until the cluster state is committed:
5555
* <ul>
5656
* <li>
5757
* If the cluster state update fails before committing then the failure is always reported via

server/src/main/java/org/elasticsearch/cluster/ClusterStateAckListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public interface ClusterStateAckListener {
5555
* message). If the cluster state is committed (i.e. a quorum of master-eligible nodes have accepted the new state) and then the
5656
* timeout elapses then the corresponding listener is completed via {@link
5757
* org.elasticsearch.cluster.ClusterStateAckListener#onAckTimeout()}. Although the time interval is measured from the start of
58-
* the publication, it does not have any effect until the cluster state is not committed:
58+
* the publication, it does not have any effect until the cluster state is committed:
5959
* <ul>
6060
* <li>
6161
* If the cluster state update fails before committing then the failure is always reported via {@link

0 commit comments

Comments
 (0)