Prevent panic on empty HOST for mysql (#11850)

Signed-off-by: Andrew Thornton <[email protected]>
This commit is contained in:
zeripath
2020-06-11 12:47:55 -04:00
committed by GitHub
co-authored by GitHub
parent a3fe9d87f2
commit 9ecf732abc
+1 -1
View File
@@ -105,7 +105,7 @@ func DBConnStr() (string, error) {
switch Database.Type {
case "mysql":
connType := "tcp"
if Database.Host[0] == '/' { // looks like a unix socket
if len(Database.Host) > 0 && Database.Host[0] == '/' { // looks like a unix socket
connType = "unix"
}
tls := Database.SSLMode