This commit is contained in:
shoopea 2019-05-16 10:06:27 +08:00
parent 5a8c818876
commit 63cef6ee15

4
mq.go
View File

@ -51,8 +51,8 @@ func MQSendMsgWorker(id int, msgs <-chan ChatWarsMessage) {
}
func MQReceiveMsgWorker(id int, cmd chan<- TDCommand) {
var c ChatWarsCommand
func MQReceiveMsgWorker(id int, cmd chan<- TGCommand) {
var c TGCommand
conn, err := amqp.Dial("amqp://" + cfg.Rabbit.User + ":" + cfg.Rabbit.Password + "@" + cfg.Rabbit.Host + "/" + cfg.Rabbit.ReceiveQueue)
failOnError(err, "MQReceiveMsgWorker["+strconv.Itoa(id)+"] : Failed to connect to RabbitMQ")
defer conn.Close()