Remove dead methods from ChainIT
This commit removes some unused methods from ChainIT.
This commit is contained in:
parent
ea576a8ca2
commit
3e067123a1
|
@ -110,22 +110,12 @@ public class ChainIT extends ESRestTestCase {
|
||||||
assertOK(client().performRequest(new Request("POST", "/" + index + "/_refresh")));
|
assertOK(client().performRequest(new Request("POST", "/" + index + "/_refresh")));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void resumeFollow(String leaderIndex, String followIndex) throws IOException {
|
|
||||||
final Request request = new Request("POST", "/" + followIndex + "/_ccr/resume_follow");
|
|
||||||
request.setJsonEntity("{\"leader_index\": \"" + leaderIndex + "\", \"poll_timeout\": \"10ms\"}");
|
|
||||||
assertOK(client().performRequest(request));
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void followIndex(String leaderIndex, String followIndex) throws IOException {
|
private static void followIndex(String leaderIndex, String followIndex) throws IOException {
|
||||||
final Request request = new Request("PUT", "/" + followIndex + "/_ccr/follow");
|
final Request request = new Request("PUT", "/" + followIndex + "/_ccr/follow");
|
||||||
request.setJsonEntity("{\"leader_index\": \"" + leaderIndex + "\", \"poll_timeout\": \"10ms\"}");
|
request.setJsonEntity("{\"leader_index\": \"" + leaderIndex + "\", \"poll_timeout\": \"10ms\"}");
|
||||||
assertOK(client().performRequest(request));
|
assertOK(client().performRequest(request));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void pauseFollow(String followIndex) throws IOException {
|
|
||||||
assertOK(client().performRequest(new Request("POST", "/" + followIndex + "/_ccr/pause_follow")));
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void verifyDocuments(String index, int expectedNumDocs) throws IOException {
|
private static void verifyDocuments(String index, int expectedNumDocs) throws IOException {
|
||||||
verifyDocuments(index, expectedNumDocs, client());
|
verifyDocuments(index, expectedNumDocs, client());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue