Skip to content

Commit

Permalink
Merge branch 'main' into community_merge
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Dec 18, 2023
2 parents 72543e4 + 2978701 commit 6445f3b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 19 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ext {
revCassandraUnit = '3.11.2.0'
revCommonsIo = '2.7'
revDynoQueues = '2.0.20'
revElasticSearch6 = '6.8.12'
revElasticSearch6 = '6.8.23'
revEmbeddedRedis = '0.6'
revEurekaClient = '1.10.10'
revGroovy = '4.0.9'
Expand Down
24 changes: 12 additions & 12 deletions es6-persistence/dependencies.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
"locked": "2.20.0"
},
"org.elasticsearch.client:elasticsearch-rest-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:elasticsearch-rest-high-level-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:transport": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.springframework.boot:spring-boot-starter": {
"locked": "3.1.4"
Expand Down Expand Up @@ -206,13 +206,13 @@
"locked": "2.20.0"
},
"org.elasticsearch.client:elasticsearch-rest-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:elasticsearch-rest-high-level-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:transport": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.openjdk.nashorn:nashorn-core": {
"firstLevelTransitive": [
Expand Down Expand Up @@ -259,13 +259,13 @@
"locked": "3.1.6"
},
"org.elasticsearch.client:elasticsearch-rest-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:elasticsearch-rest-high-level-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:transport": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.junit.vintage:junit-vintage-engine": {
"locked": "5.9.3"
Expand Down Expand Up @@ -444,13 +444,13 @@
"locked": "3.1.6"
},
"org.elasticsearch.client:elasticsearch-rest-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:elasticsearch-rest-high-level-client": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.elasticsearch.client:transport": {
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.junit.vintage:junit-vintage-engine": {
"locked": "5.9.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ElasticSearchProperties elasticSearchProperties() {
new ElasticsearchContainer(
DockerImageName.parse(
"docker.elastic.co/elasticsearch/elasticsearch-oss")
.withTag("6.8.17")) // this should match the client version
.withTag("6.8.23")) // this should match the client version
// Resolve issue with es container not starting on m1/m2 macs
.withEnv(Map.of("bootstrap.system_call_filter", "false"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ public List<Host> getHosts() {
}

private List<Host> parseHostsFromConfig() {
System.out.println("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
System.out.println("Properties in ConfigurationHostSupplier: ");
System.out.println(properties);
String hosts = properties.getHosts();
if (hosts == null) {
String message =
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spring.application.name=conductor
springdoc.api-docs.path=/api-docs
loadSample=true

conductor.db.type=redis_standalone
conductor.db.type=memory
conductor.queue.type=redis_standalone

conductor.indexing.enabled=false
Expand Down
2 changes: 1 addition & 1 deletion test-harness/dependencies.lock
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@
"firstLevelTransitive": [
"com.netflix.conductor:conductor-es6-persistence"
],
"locked": "6.8.12"
"locked": "6.8.23"
},
"org.glassfish.jaxb:jaxb-runtime": {
"firstLevelTransitive": [
Expand Down

0 comments on commit 6445f3b

Please sign in to comment.