Skip to content

Commit e25ac4f

Browse files
committed
fix: Fixing the agent API port number
1 parent a44a31f commit e25ac4f

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

deploy/conf/supervisord.conf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,9 @@ startsecs=2
6060
stopwaitsecs=30
6161

6262
[program:agent_api]
63-
command=/dk/bin/gunicorn -c /dk/gunicorn.conf.py --bind 0.0.0.0:5002 agent_api.app:app
63+
command=/dk/bin/gunicorn -c /dk/gunicorn.conf.py --bind 0.0.0.0:5003 agent_api.app:app
6464
directory=/dk
6565
autostart=true
6666
autorestart=true
6767
startsecs=2
6868
stopwaitsecs=30
69-

deploy/docker-compose/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ services:
8080
depends_on:
8181
observability_data_init:
8282
condition: service_completed_successfully
83-
expose: ["5000", "5001", "5002"]
83+
expose: ["5000", "5001", "5003"]
8484
environment:
8585
OBSERVABILITY_CONFIG: minikube
8686
KAFKA_SERVICE_HOST: ${KAFKA_HOST:-broker}

0 commit comments

Comments
 (0)