Skip to content

Commit

Permalink
Ensuring that the Destination is set on envelopes received at the ext…
Browse files Browse the repository at this point in the history
…ernal database table listener. Closes GH-1198
  • Loading branch information
jeremydmiller committed Jan 7, 2025
1 parent c98bd10 commit 25dfbbc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ public async Task<Envelope[]> ReadAllAsync(DbDataReader reader, CancellationToke
var envelope = new Envelope
{
Id = id,
Data = json
Data = json,
Destination = Uri
};

if (MessageTypeColumnName.IsEmpty())
Expand Down

0 comments on commit 25dfbbc

Please sign in to comment.