Fixed default port for MS SQL

This commit is contained in:
Sergey Kurt 2017-03-18 15:47:52 +03:00
parent 8874738f73
commit 7162e9e927

View file

@ -274,7 +274,7 @@ func preRun(cmd *cobra.Command, args []string) error {
}
if cmdConfig.MSSQL.Port == 0 {
cmdConfig.MSSQL.Port = 3306
cmdConfig.MSSQL.Port = 1433
viper.Set("mssql.port", cmdConfig.MSSQL.Port)
}