消息持久化

master v1.0.8
杨赟 2 years ago
parent 3608fc6fc8
commit bb73657c33

@ -133,9 +133,11 @@ func (r *rabbitmq) PublishWithContext(ctx context.Context, exchangeName, key, ms
false, //强制为 false, //强制为
false, //立即 false, //立即
amqp.Publishing{ amqp.Publishing{
ContentType: "text/plain", ContentType: "text/plain",
Body: []byte(msg), DeliveryMode: amqp.Persistent,
Headers: header, Timestamp: time.Now(),
Body: []byte(msg),
Headers: header,
}) })
} }

Loading…
Cancel
Save