Skip to content

Commit

Permalink
Merge pull request #795 from dotmesh-io/fix-intra-cluster-port
Browse files Browse the repository at this point in the history
FIX: try the regular dotmesh server port on TLS and non-TLS
  • Loading branch information
binocarlos authored Mar 26, 2020
2 parents dccee6d + 95397cb commit 09777d0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ func DeduceUrl(ctx context.Context, hostnames []string, mode, user, apiKey strin
urlsToTry = []string{
fmt.Sprintf("https://%s:443", hostname),
fmt.Sprintf("http://%s:80", hostname),
fmt.Sprintf("http://%s:%s", hostname, SERVER_PORT),
}
} else {
urlsToTry = []string{
Expand Down

0 comments on commit 09777d0

Please sign in to comment.