Skip to content

Commit 6611864

Browse files
committed
Build fix
1 parent ba00aad commit 6611864

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/DotLuxafor.Tests/LuxaforHostedServiceTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ public async Task ExecuteAsync_WhenTryOpenThrows_LogsAndContinues()
175175
var service = CreateService(options);
176176

177177
using var cts = CancellationTokenSource.CreateLinkedTokenSource(ct);
178-
cts.CancelAfter(TimeSpan.FromMilliseconds(500));
178+
cts.CancelAfter(TimeSpan.FromSeconds(5));
179179
await service.StartAsync(cts.Token);
180-
await Task.Delay(400, ct);
180+
await Task.Delay(2000, ct);
181181
await service.StopAsync(ct);
182182

183183
// Should have retried past the throwing calls

0 commit comments

Comments
 (0)