Revert "test"

This reverts commit 81347ee093.
This commit is contained in:
shoopea 2019-06-28 15:55:39 +08:00
parent 75cc1df4d1
commit af020e8452

View File

@ -363,7 +363,6 @@ func MQKeepAliveWorker() {
time.Sleep(15 * time.Second)
err = s.Open()
}
/*
m, err := s.MQChannel.Consume(
s.MQQueue.Name, // queue
"", // consumer
@ -373,8 +372,7 @@ func MQKeepAliveWorker() {
false, // no-wait
nil, // args
)
*/
for d := range s.MQDelivery {
for d := range m {
log.Printf("MQKeepAliveWorker : Received a message: %s", string(d.Body))
x := MQKeepAlive{}
err = json.Unmarshal(d.Body, &x)