Browse Source

Merge pull request #1348 from gravitl/hotfix_v0.14.5_ssl_mq

reverted default port to 1883
dcarns 3 years ago
parent
commit
c5c29f87bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      servercfg/serverconf.go

+ 1 - 1
servercfg/serverconf.go

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