change default port to 8883

This commit is contained in:
0xdcarns 2022-07-07 14:10:26 -04:00
parent 5c2106dd46
commit c3051d9dfa

View file

@ -580,7 +580,7 @@ func GetRce() bool {
// GetMQServerPort - get mq port for server
func GetMQServerPort() string {
port := "1883" //default
port := "8883" //default
if os.Getenv("MQ_SERVER_PORT") != "" {
port = os.Getenv("MQ_SERVER_PORT")
} else if config.Config.Server.MQServerPort != "" {