Skip to content

Commit 25dfbbc

Browse files
committed
Ensuring that the Destination is set on envelopes received at the external database table listener. Closes GH-1198
1 parent c98bd10 commit 25dfbbc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Persistence/Wolverine.RDBMS/Transport/ExternalMessageTable.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ public async Task<Envelope[]> ReadAllAsync(DbDataReader reader, CancellationToke
7575
var envelope = new Envelope
7676
{
7777
Id = id,
78-
Data = json
78+
Data = json,
79+
Destination = Uri
7980
};
8081

8182
if (MessageTypeColumnName.IsEmpty())

0 commit comments

Comments
 (0)