From 609479fc938663d28520b6fbcc8a853f56ae7a8a Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Wed, 23 Apr 2025 11:13:35 -0700 Subject: [PATCH] use separate host port for chat ui and for app_server We were using same port for both chatui and app_server which was causing conflict. This code change updates host port for app_server to 18083 and updates arch_config --- demos/samples_python/human_resources_agent/arch_config.yaml | 2 +- demos/samples_python/human_resources_agent/docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/samples_python/human_resources_agent/arch_config.yaml b/demos/samples_python/human_resources_agent/arch_config.yaml index 5b1a9aa2..2ac97027 100644 --- a/demos/samples_python/human_resources_agent/arch_config.yaml +++ b/demos/samples_python/human_resources_agent/arch_config.yaml @@ -20,7 +20,7 @@ endpoints: # value could be ip address or a hostname with port # this could also be a list of endpoints for load balancing # for example endpoint: [ ip1:port, ip2:port ] - endpoint: host.docker.internal:18080 + endpoint: host.docker.internal:18083 # max time to wait for a connection to be established connect_timeout: 0.005s diff --git a/demos/samples_python/human_resources_agent/docker-compose.yaml b/demos/samples_python/human_resources_agent/docker-compose.yaml index f1afe6f4..afc9affa 100644 --- a/demos/samples_python/human_resources_agent/docker-compose.yaml +++ b/demos/samples_python/human_resources_agent/docker-compose.yaml @@ -9,7 +9,7 @@ services: volumes: - ./arch_config.yaml:/app/arch_config.yaml ports: - - "18080:80" + - "18083:80" healthcheck: test: ["CMD", "curl" ,"http://localhost:80/healthz"] interval: 5s