Browse Source

Changed how the MessageId is created.

pull/509/head
Per Bornsjö 7 years ago
parent
commit
33c35ffa0f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs

+ 1
- 1
src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs 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,
};


Loading…
Cancel
Save