From ed60739dfd89c1280833f0c189b3b636d02c099a Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Wed, 19 Mar 2025 16:51:25 +0700 Subject: [PATCH] fix: use host + port in datalake address (#8276) Signed-off-by: Alexander Onnikov --- services/datalake/pod-datalake/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/datalake/pod-datalake/src/config.ts b/services/datalake/pod-datalake/src/config.ts index e310e80f46..5164d822db 100644 --- a/services/datalake/pod-datalake/src/config.ts +++ b/services/datalake/pod-datalake/src/config.ts @@ -58,7 +58,7 @@ function parseBucketConfig (str: string): BucketConfig { } const uri = new URL(url) - const endpoint = uri.protocol + '//' + uri.hostname + uri.pathname + const endpoint = uri.protocol + '//' + uri.host + uri.pathname return { bucket,