mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-12 03:06:11 +00:00
fix: use host + port in datalake address (#8276)
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
parent
ccbb6abb7f
commit
ed60739dfd
@ -58,7 +58,7 @@ function parseBucketConfig (str: string): BucketConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const uri = new URL(url)
|
const uri = new URL(url)
|
||||||
const endpoint = uri.protocol + '//' + uri.hostname + uri.pathname
|
const endpoint = uri.protocol + '//' + uri.host + uri.pathname
|
||||||
|
|
||||||
return {
|
return {
|
||||||
bucket,
|
bucket,
|
||||||
|
Loading…
Reference in New Issue
Block a user