Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMcMaster committed Sep 24, 2024
1 parent ac3f9ec commit 2ecd2b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NServiceBusTutorial.Saga/ContributorVerificationSaga.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ protected override void ConfigureHowToFindSaga(SagaPropertyMapper<ContributorVer

public async Task Handle(StartContributorVerificationCommand message, IMessageHandlerContext context)
{
var verifyContributorCommand = new VerifyContributorCommand { ContributorId = message.ContributorId };
await context.Send(verifyContributorCommand);
var command = new VerifyContributorCommand { ContributorId = message.ContributorId };
await context.Send(command);
var timeout = new ContributorVerificationSagaTimeout { ContributorId = message.ContributorId };
await RequestTimeout(context, DateTime.UtcNow.AddHours(24), timeout);
}
Expand Down

0 comments on commit 2ecd2b7

Please sign in to comment.