Browse Source
Merge pull request #512 from Eneuman/dev
Removed duplicate string to byte conversion
pull/516/head
Eduard Tomàs
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs
|
@ -47,7 +47,7 @@ |
|
|
var message = new Message |
|
|
var message = new Message |
|
|
{ |
|
|
{ |
|
|
MessageId = Guid.NewGuid().ToString(), |
|
|
MessageId = Guid.NewGuid().ToString(), |
|
|
Body = Encoding.UTF8.GetBytes(jsonMessage), |
|
|
|
|
|
|
|
|
Body = body, |
|
|
Label = eventName, |
|
|
Label = eventName, |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|