Skip to content

Commit

Permalink
#647 Await forwarded event actions from integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erdtsieck authored and jeremydmiller committed Dec 11, 2023
1 parent 28b44b7 commit 3ea62bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Persistence/PersistenceTests/Marten/event_streaming.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task InitializeAsync()
services.AddMarten(Servers.PostgresConnectionString)
.IntegrateWithWolverine("sender").EventForwardingToWolverine(opts =>
{
opts.SubscribeToEvent<SecondEvent>().TransformedTo(e => new SecondMessage(e.Sequence));
opts.SubscribeToEvent<SecondEvent>().TransformedTo(e => new SecondMessage(e.StreamId, e.Sequence));
});

services.AddResourceSetupOnStartup();
Expand Down

0 comments on commit 3ea62bf

Please sign in to comment.