Skip to content

Commit cc97717

Browse files
committed
fix: update Elasticsearch to 8.5.0 and ES_VERSION to v8
The docker-compose smoke test ("Ensure images work") was failing because auto-setup had ES_VERSION=v7 while running ES 8.0.0. This mismatch caused the auto-setup container to get stuck waiting for Elasticsearch. This fix was applied to release/v1.29.x in PR #309 but was never applied to main, causing CI failures on all release branch PRs since docker-build-only.yml checks out main. Made-with: Cursor
1 parent d0ab85e commit cc97717

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
COMPOSE_PROJECT_NAME=temporal
22
CASSANDRA_VERSION=3.11
3-
ELASTICSEARCH_VERSION=8.0.0
3+
ELASTICSEARCH_VERSION=8.5.0
44
MYSQL_VERSION=8
55
POSTGRESQL_VERSION=13
66
IMAGE_REPO=temporaliotest

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
- POSTGRES_SEEDS=postgresql
4343
- ENABLE_ES=true
4444
- ES_SEEDS=elasticsearch
45-
- ES_VERSION=v7
45+
- ES_VERSION=v8
4646
image: ${IMAGE_REPO}/auto-setup:${IMAGE_SHA_TAG}
4747
networks:
4848
- temporal-network

0 commit comments

Comments
 (0)