Skip to content

Commit 71b1081

Browse files
committed
renames
1 parent bb7db43 commit 71b1081

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
import static org.hamcrest.Matchers.equalTo;
3737

3838
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.SUITE, supportsDedicatedMasters = false, numDataNodes = 2, numClientNodes = 0)
39-
public class BulkWithPrefixLengthRestIT extends HttpSmokeTestCase {
39+
public class BulkLengthPrefixedRestIT extends HttpSmokeTestCase {
4040

4141
private final RequestOptions options;
4242
private final XContentLengthPrefixedStreamingType xContentLengthPrefixedStreamingType;
4343
private final XContentType xContentType;
4444

45-
public BulkWithPrefixLengthRestIT() {
45+
public BulkLengthPrefixedRestIT() {
4646
xContentLengthPrefixedStreamingType = randomFrom(XContentLengthPrefixedStreamingType.values());
4747
xContentType = xContentLengthPrefixedStreamingType.xContentType();
4848
options = RequestOptions.DEFAULT.toBuilder()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import static org.hamcrest.Matchers.equalTo;
3232

3333
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.SUITE, supportsDedicatedMasters = false, numDataNodes = 2, numClientNodes = 0)
34-
public class BulkRestMarkerSuffixIT extends HttpSmokeTestCase {
34+
public class BulkMarkerSuffixIRestT extends HttpSmokeTestCase {
3535

3636
@Override
3737
protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {

server/src/main/java/org/elasticsearch/action/bulk/XContentLengthPrefixedStreamingType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import java.util.Set;
2323

2424
/**
25-
* The content type of {@link XContent}.
25+
* The streaming format using length prefixed format for bulk requests.
2626
*/
2727
public enum XContentLengthPrefixedStreamingType implements MediaType {
2828
/**
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.io.IOException;
2222
import java.util.List;
2323

24-
public class BulkRequestParserPrefixLengthTests extends BulkRequestParserTestCase {
24+
public class BulkRequestParserLengthPrefixedTests extends BulkRequestParserTestCase {
2525

2626
@ParametersFactory
2727
public static Iterable<Object[]> parameters() {
@@ -35,7 +35,7 @@ public static Iterable<Object[]> parameters() {
3535

3636
private final XContentType contentType;
3737

38-
public BulkRequestParserPrefixLengthTests(XContentType contentType) {
38+
public BulkRequestParserLengthPrefixedTests(XContentType contentType) {
3939
this.contentType = contentType;
4040
}
4141

0 commit comments

Comments
 (0)