Skip to content

Commit

Permalink
#340: was using %d where it actually needed %s
Browse files Browse the repository at this point in the history
  • Loading branch information
binocarlos committed Mar 23, 2018
1 parent 7e3a713 commit b158e71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/dotmesh-server/pkg/main/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ func deduceUrl(ctx context.Context, hostnames []string, mode, user, apiKey strin
}
} else {
urlsToTry = []string{
fmt.Sprintf("http://%s:%d", hostname, SERVER_PORT),
fmt.Sprintf("http://%s:%d", hostname, SERVER_PORT_OLD),
fmt.Sprintf("http://%s:%s", hostname, SERVER_PORT),
fmt.Sprintf("http://%s:%s", hostname, SERVER_PORT_OLD),
}
}

Expand Down

0 comments on commit b158e71

Please sign in to comment.