From 82f1035a5e5a4c3c3bebd99b3abbdd7e84996d9a Mon Sep 17 00:00:00 2001 From: marcos-silva-rodrigues Date: Mon, 16 Feb 2026 18:11:49 -0300 Subject: [PATCH 1/2] FIX: update storage port --- deploy/helm-chart/values-stg.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/helm-chart/values-stg.yaml b/deploy/helm-chart/values-stg.yaml index a9aa543..2c1737d 100644 --- a/deploy/helm-chart/values-stg.yaml +++ b/deploy/helm-chart/values-stg.yaml @@ -9,7 +9,7 @@ maestro: cookie_secret: "ff7bc13823edb2ae50d248e5780bddc9d4b31c36" redis_database: "1" platform_api_url: https://xs2hkhq07k.execute-api.us-east-1.amazonaws.com - storage_explorer_api_url: "http://storage-explorer-{customer}.data-apps.svc.cluster.local/api" + storage_explorer_api_url: "http://storage-explorer-{customer}.data-apps.svc.cluster.local:8000/api" hostname: maestro.stg.dadosfera.ai From d4ba45fd03857270969f26f3b25f1d922f955468 Mon Sep 17 00:00:00 2001 From: marcos-silva-rodrigues Date: Wed, 18 Feb 2026 15:32:05 -0300 Subject: [PATCH 2/2] FIX: storage url --- src/modules/storage-explorer/storage-explorer.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/storage-explorer/storage-explorer.service.ts b/src/modules/storage-explorer/storage-explorer.service.ts index 02d919f..8f4e4b0 100644 --- a/src/modules/storage-explorer/storage-explorer.service.ts +++ b/src/modules/storage-explorer/storage-explorer.service.ts @@ -113,7 +113,7 @@ export class StorageExplorerService { } // Get customer-specific storage-explorer URL - const baseUrl = STORAGE_EXPLORER_CONFIG.getUrl(user.customer_id); + const baseUrl = STORAGE_EXPLORER_CONFIG.getUrl(user.customer_name); const url = new URL(`${baseUrl}${path}`); // Add query params