Java Api clean up: remove deprecated `isShardsAcked` (#28311)
This PR removes previously deprecated `isShardsAcked()` method in favour of `isShardsAcknowledged()` on `CreateIndexResponse`, `CreateIndexClusterStateUpdateResponse` and `RolloverResponse` Related to #27784 Follow-up of #27819
This commit is contained in:
parent
261fb6a29e
commit
0c83240b5f
|
@ -31,6 +31,7 @@ Elasticsearch 6.x in order to be readable by Elasticsearch 7.x.
|
|||
* <<breaking_70_plugins_changes>>
|
||||
* <<breaking_70_analysis_changes>>
|
||||
* <<breaking_70_api_changes>>
|
||||
* <<breaking_70_java_changes>>
|
||||
|
||||
|
||||
include::migrate_7_0/aggregations.asciidoc[]
|
||||
|
@ -41,3 +42,4 @@ include::migrate_7_0/mappings.asciidoc[]
|
|||
include::migrate_7_0/search.asciidoc[]
|
||||
include::migrate_7_0/plugins.asciidoc[]
|
||||
include::migrate_7_0/api.asciidoc[]
|
||||
include::migrate_7_0/java.asciidoc[]
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
[[breaking_70_java_changes]]
|
||||
=== Java API changes
|
||||
|
||||
==== `isShardsAcked` deprecated in `6.2` has been removed
|
||||
|
||||
`isShardsAcked` has been replaced by `isShardsAcknowledged` in
|
||||
`CreateIndexResponse`, `RolloverResponse` and
|
||||
`CreateIndexClusterStateUpdateResponse`.
|
|
@ -85,18 +85,6 @@ public class CreateIndexResponse extends AcknowledgedResponse implements ToXCont
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the requisite number of shards were started before
|
||||
* returning from the index creation operation. If {@link #isAcknowledged()}
|
||||
* is false, then this also returns false.
|
||||
*
|
||||
* @deprecated use {@link #isShardsAcknowledged()}
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean isShardsAcked() {
|
||||
return shardsAcknowledged;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the requisite number of shards were started before
|
||||
* returning from the index creation operation. If {@link #isAcknowledged()}
|
||||
|
|
|
@ -111,18 +111,6 @@ public final class RolloverResponse extends ActionResponse implements ToXContent
|
|||
return acknowledged;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the requisite number of shards were started in the newly
|
||||
* created rollover index before returning. If {@link #isAcknowledged()} is
|
||||
* false, then this will also return false.
|
||||
*
|
||||
* @deprecated use {@link #isShardsAcknowledged()}
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean isShardsAcked() {
|
||||
return shardsAcknowledged;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the requisite number of shards were started in the newly
|
||||
* created rollover index before returning. If {@link #isAcknowledged()} is
|
||||
|
|
|
@ -33,14 +33,7 @@ public class CreateIndexClusterStateUpdateResponse extends ClusterStateUpdateRes
|
|||
|
||||
/**
|
||||
* Returns whether the requisite number of shard copies started before the completion of the operation.
|
||||
*
|
||||
* @deprecated use {@link #isShardsAcknowledged()}
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean isShardsAcked() {
|
||||
return shardsAcknowledged;
|
||||
}
|
||||
|
||||
public boolean isShardsAcknowledged() {
|
||||
return shardsAcknowledged;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue