1
0
Fork 0

Use net.JoinHostPort for servers URL

This commit is contained in:
Ludovic Fernandez 2018-06-13 10:08:03 +02:00 committed by Traefiker Bot
parent 2e95832812
commit b59276ff1c
5 changed files with 10 additions and 5 deletions

View file

@ -2,6 +2,7 @@ package rancher
import (
"fmt"
"net"
"strconv"
"strings"
"text/template"
@ -181,7 +182,7 @@ func getServers(service rancherData) map[string]types.Server {
serverName := "server-" + strconv.Itoa(index)
servers[serverName] = types.Server{
URL: fmt.Sprintf("%s://%s:%s", protocol, ip, port),
URL: fmt.Sprintf("%s://%s", protocol, net.JoinHostPort(ip, port)),
Weight: weight,
}
}