From 9b63c62a3135d525ac796805a4324cbbd379415f Mon Sep 17 00:00:00 2001 From: Amulya Date: Tue, 29 Jul 2025 15:51:28 +0530 Subject: [PATCH] SERVERLESS-3463 Fix exports for namespace creds in e2e tests --- e2e/test_helper.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/test_helper.bash b/e2e/test_helper.bash index c84f394..7635cfa 100755 --- a/e2e/test_helper.bash +++ b/e2e/test_helper.bash @@ -33,9 +33,9 @@ init_namespace() { $DOCTL sls connect $TEST_NAMESPACE CREDS=$($DOCTL sls status --credentials) - export API_HOST=$(echo "$CREDS" | jq -r .APIHost) - export AUTH=$(echo "$CREDS" | jq -r .Auth) - export NIMBELLA_DIR=$(echo $CREDS | jq -r .Path) + export API_HOST=$(echo "$CREDS" | jq -r .apihost) + export AUTH=$(echo "$CREDS" | jq -r .auth) + export NIMBELLA_DIR=$(echo $CREDS | jq -r .path) } test_binary_action() {