From ddfbb5c674b91574d9dc9a2b59811d143650c236 Mon Sep 17 00:00:00 2001 From: Durable Workflow Date: Fri, 15 May 2026 02:48:57 +0000 Subject: [PATCH] Bump polyglot server pin to 0.2.110 --- polyglot/docker-compose.yml | 10 +++++----- polyglot/python_worker/scripts/smoke.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/polyglot/docker-compose.yml b/polyglot/docker-compose.yml index 29b596f..024b317 100644 --- a/polyglot/docker-compose.yml +++ b/polyglot/docker-compose.yml @@ -62,10 +62,10 @@ services: timeout: 2s retries: 10 - # Server image pin: 0.2.108 contains the polyglot routing and PHP-to-Python - # workflow completion fixes needed by the cross-language smoke. + # Server image pin: 0.2.110 includes the workflow/activity poll replay fixes + # exercised by the published cross-language smoke. bootstrap: - image: "${DURABLE_SERVER_IMAGE:-durableworkflow/server:0.2.108}" + image: "${DURABLE_SERVER_IMAGE:-durableworkflow/server:0.2.110}" command: ["server-bootstrap"] environment: *server-env depends_on: @@ -75,7 +75,7 @@ services: condition: service_healthy server: - image: "${DURABLE_SERVER_IMAGE:-durableworkflow/server:0.2.108}" + image: "${DURABLE_SERVER_IMAGE:-durableworkflow/server:0.2.110}" ports: - "${SERVER_PORT:-8080}:8080" environment: *server-env @@ -138,7 +138,7 @@ services: DURABLE_WORKFLOW_SERVER_URL: "http://server:8080" DURABLE_WORKFLOW_AUTH_TOKEN: "test-token" DURABLE_WORKFLOW_NAMESPACE: default - DURABLE_SERVER_IMAGE: "${DURABLE_SERVER_IMAGE:-durableworkflow/server:0.2.108}" + DURABLE_SERVER_IMAGE: "${DURABLE_SERVER_IMAGE:-durableworkflow/server:0.2.110}" POLYGLOT_PY_TASK_QUEUE: polyglot-python POLYGLOT_PHP2PY_TASK_QUEUE: polyglot-php-to-python depends_on: diff --git a/polyglot/python_worker/scripts/smoke.sh b/polyglot/python_worker/scripts/smoke.sh index 24e6973..e4a1523 100755 --- a/polyglot/python_worker/scripts/smoke.sh +++ b/polyglot/python_worker/scripts/smoke.sh @@ -9,7 +9,7 @@ scripts_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" : "${DURABLE_WORKFLOW_SERVER_URL:?DURABLE_WORKFLOW_SERVER_URL must be set}" : "${DURABLE_WORKFLOW_AUTH_TOKEN:=test-token}" : "${DURABLE_WORKFLOW_NAMESPACE:=default}" -: "${DURABLE_SERVER_IMAGE:=durableworkflow/server:0.2.96}" +: "${DURABLE_SERVER_IMAGE:=durableworkflow/server:0.2.110}" export DURABLE_WORKFLOW_SERVER_URL DURABLE_WORKFLOW_AUTH_TOKEN DURABLE_WORKFLOW_NAMESPACE printf '\n==> polyglot smoke: server image %s\n' "$DURABLE_SERVER_IMAGE"