This commit is contained in:
shoopea 2019-06-28 16:30:16 +08:00
parent 622a700178
commit f7673e7cf1
2 changed files with 2 additions and 2 deletions

2
mq.go
View File

@ -4,7 +4,7 @@ import (
"github.com/streadway/amqp"
)
func (c *MQClient) Open() error {
func Open(c *MQClient) error {
var err error
c.Connection, err = amqp.Dial("amqp://" + c.User + ":" + c.Password + "@" + c.Host + "/" + c.Path)

View File

@ -24,7 +24,7 @@ func MQGetMsgWorker(id int, msgs chan<- ChatWarsMessage) {
c.Path = cfg.Rabbit.Path
c.SSL = false
err := c.Open()
err := Open(c)
if err != nil {
q, err := c.Channel.QueueDeclare(