From c5d38408358bc2bf63c2ca1cfefe6761298c4d07 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 6 Dec 2025 05:21:06 -0800 Subject: [PATCH] fix(docker-compose): add ACCOUNT_SERVICE_ADDR to session-coordinator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add ACCOUNT_SERVICE_ADDR environment variable pointing to account-service:8080 - Fixes "connection refused" error when session-coordinator tries to auto-create account after keygen - Session-coordinator can now properly call account service to create account records 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- backend/mpc-system/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/mpc-system/docker-compose.yml b/backend/mpc-system/docker-compose.yml index a892a7b5..88d11cf7 100644 --- a/backend/mpc-system/docker-compose.yml +++ b/backend/mpc-system/docker-compose.yml @@ -66,6 +66,7 @@ services: MPC_JWT_SECRET_KEY: ${JWT_SECRET_KEY} MPC_JWT_ISSUER: mpc-system MESSAGE_ROUTER_ADDR: message-router:50051 + ACCOUNT_SERVICE_ADDR: http://account-service:8080 depends_on: postgres: condition: service_healthy