From 9c62c2ca892caa51e5ede54176fd5b966318e46d Mon Sep 17 00:00:00 2001 From: YoungHypo Date: Thu, 19 Sep 2024 16:41:30 -0700 Subject: [PATCH] fix value reading in env.json.tmpl Signed-off-by: YoungHypo --- tests/postman/env.json.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/postman/env.json.tmpl b/tests/postman/env.json.tmpl index 57a8ce7c7..86d45ca77 100644 --- a/tests/postman/env.json.tmpl +++ b/tests/postman/env.json.tmpl @@ -4,13 +4,13 @@ "values": [ { "key": "apiServer", - "value": "http://localhost", + "value": "http://127.0.0.1:$API_ENGINE_SERVICE_PORT", "description": "", "enabled": true }, { "key": "webRoot", - "value": "8080", + "value": "$API_ENGINE_WEBROOT", "description": "", "enabled": true },