fix: use host + port in datalake address (#8276)

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
Alexander Onnikov 2025-03-19 16:51:25 +07:00 committed by GitHub
parent ccbb6abb7f
commit ed60739dfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,