Skip to content

Commit

Permalink
Fixes ES integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zeagord committed Dec 16, 2018
1 parent f0a2928 commit cc09c54
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ private String versionSpecificTagIndexTemplate(float version) {
+ "\"not_analyzed\"");
} else if (version >= 5) {
return tagIndexTemplate
.replace("TEMPLATE","index_patterns")
.replace("TEMPLATE", version >= 6 ? "index_patterns" : "template")
.replace("KEYWORD", "\"type\": \"text\",\"fielddata\": true\n");
}else {
throw new IllegalStateException(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class ITElasticsearchStorageV2 {

static ElasticsearchStorageRule classRule() {
return new ElasticsearchStorageRule("openzipkin/zipkin-elasticsearch:2.11.6",
return new ElasticsearchStorageRule("openzipkin/zipkin-elasticsearch:2.11.12",
"test_elasticsearch3");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class ITElasticsearchStorageV5 {

static ElasticsearchStorageRule classRule() {
return new ElasticsearchStorageRule("openzipkin/zipkin-elasticsearch5:2.11.6",
return new ElasticsearchStorageRule("openzipkin/zipkin-elasticsearch5:2.11.12",
"test_elasticsearch3");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class ITElasticsearchStorageV6 {

static ElasticsearchStorageRule classRule() {
return new ElasticsearchStorageRule("openzipkin/zipkin-elasticsearch6:2.11.6",
return new ElasticsearchStorageRule("openzipkin/zipkin-elasticsearch6:2.11.12",
"test_elasticsearch3");
}

Expand Down

0 comments on commit cc09c54

Please sign in to comment.