Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ServiceControl.Transports.Tests/TransportTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ protected Task CreateTestQueue(string queueName)
return configuration.TransportCustomization.ProvisionQueues(transportSettings, []);
}

protected static TimeSpan TestTimeout = TimeSpan.FromSeconds(60);
protected static TimeSpan TestTimeout = TimeSpan.FromMinutes(5);

protected async Task SendAndReceiveMessages(string queueName, int numMessagesToIngest)
{
Expand All @@ -200,7 +200,7 @@ await StartQueueIngestor(

if (numMessagesIngested == numMessagesToIngest)
{
onMessagesProcessed.SetResult(true);
onMessagesProcessed.TrySetResult(true);
}

return Task.CompletedTask;
Expand Down
Loading