Browse Source

Merge pull request #509 from Eneuman/dev

Changed how the MessageId is created.
pull/511/merge
Eduard Tomàs 7 years ago
committed by GitHub
parent
commit
150197e521
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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