mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 19:08:37 +00:00 
			
		
		
		
	Default MSSQL port 0 to allow automatic detection by default (#11642)
Fix #11633 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
		| @@ -163,7 +163,7 @@ func getPostgreSQLConnectionString(dbHost, dbUser, dbPasswd, dbName, dbParam, db | |||||||
|  |  | ||||||
| // ParseMSSQLHostPort splits the host into host and port | // ParseMSSQLHostPort splits the host into host and port | ||||||
| func ParseMSSQLHostPort(info string) (string, string) { | func ParseMSSQLHostPort(info string) (string, string) { | ||||||
| 	host, port := "127.0.0.1", "1433" | 	host, port := "127.0.0.1", "0" | ||||||
| 	if strings.Contains(info, ":") { | 	if strings.Contains(info, ":") { | ||||||
| 		host = strings.Split(info, ":")[0] | 		host = strings.Split(info, ":")[0] | ||||||
| 		port = strings.Split(info, ":")[1] | 		port = strings.Split(info, ":")[1] | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user