Skip to content

Commit

Permalink
Drop ES 5 (EoL) and use 6.8.8 to run tests against. Update ES 7 tests…
Browse files Browse the repository at this point in the history
… to run against 7.6.2
  • Loading branch information
frittentheke committed Apr 24, 2020
1 parent ec4c28a commit 48b6321
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- stage: test
env: [ NAME=Jaeger latest, ES7 ]
script: ELASTICSEARCH_VERSION=7.3.0 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch
script: ELASTICSEARCH_VERSION=7.6.2 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch

# Don't build release tags. This avoids publish conflicts because the version commit exists both on master and the release tag.
# See https://github.com/travis-ci/travis-ci/issues/1532
Expand Down
2 changes: 1 addition & 1 deletion jaeger-spark-dependencies-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-spark-20_${version.scala.binary}</artifactId>
<version>7.3.0</version>
<version>7.6.2</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class JaegerElasticsearchEnvironment {

public static String elasticsearchVersion() {
String version = System.getProperty("elasticsearch.version", System.getenv("ELASTICSEARCH_VERSION"));
return version != null ? version : "5.6.9";
return version != null ? version : "6.8.8";
}

public void start(Map<String, String> jaegerEnvs, String jaegerVersion, String elasticsearchVersion) {
Expand Down

0 comments on commit 48b6321

Please sign in to comment.