Skip to content

Commit

Permalink
fix(server):Fix ingress creation failure on non-standard ports (#2021)
Browse files Browse the repository at this point in the history
Co-authored-by: jveay <[email protected]>
  • Loading branch information
jveay and jveay authored Jul 10, 2024
1 parent 1fe3c39 commit ec03197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/gateway/ingress/bucket-ingress.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class BucketGatewayService {

// build minio endpoint rule
const minioUrl = new URL(region.storageConf.externalEndpoint)
const minioEndpointHost = minioUrl.host
const minioEndpointHost = minioUrl.hostname
const minioRule: V1IngressRule = {
host: minioEndpointHost,
http: {
Expand Down

0 comments on commit ec03197

Please sign in to comment.