Default MSSQL port 0 to allow automatic detection by default (#11642)

Fix #11633

Signed-off-by: Andrew Thornton <[email protected]>

Co-authored-by: techknowlogick <[email protected]>
This commit is contained in:
zeripath
2020-05-28 23:59:59 -04:00
committed by GitHub
co-authored by techknowlogick
parent 8730b091e3
commit e8955173a9
+1 -1
View File
@@ -163,7 +163,7 @@ func getPostgreSQLConnectionString(dbHost, dbUser, dbPasswd, dbName, dbParam, db
// ParseMSSQLHostPort splits the host into host and port
func ParseMSSQLHostPort(info string) (string, string) {
host, port := "127.0.0.1", "1433"
host, port := "127.0.0.1", "0"
if strings.Contains(info, ":") {
host = strings.Split(info, ":")[0]
port = strings.Split(info, ":")[1]