Skip to content

Commit

Permalink
Fixed one more build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jan 4, 2024
1 parent d1269d7 commit a0d4fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Foundatio.TestHarness/Jobs/JobQueueTestsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ await Run.InParallelAsync(jobCount, async index => {
var queue = queues[index - 1];
var job = new SampleQueueWithRandomErrorsAndAbandonsJob(queue, metrics, Log);
await job.RunUntilEmptyAsync(cancellationTokenSource.Token);
cancellationTokenSource.Cancel();
await cancellationTokenSource.CancelAsync();
});
_logger.LogInformation("Done running jobs until empty");

Expand Down

0 comments on commit a0d4fad

Please sign in to comment.