Merge pull request #509 from Eneuman/dev

Changed how the MessageId is created.
This commit is contained in:
Eduard Tomàs 2018-02-10 16:52:09 +01:00 committed by GitHub
commit 150197e521
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@
var message = new Message
{
MessageId = new Guid().ToString(),
MessageId = Guid.NewGuid().ToString(),
Body = Encoding.UTF8.GetBytes(jsonMessage),
Label = eventName,
};