From a5843cd6319f05072eb11d6af021a864abb5fd22 Mon Sep 17 00:00:00 2001 From: Maxwell Weru Date: Mon, 1 Feb 2021 13:06:08 +0300 Subject: [PATCH] Fix check for remainder value for delay in InMemoryTransport --- src/Tingle.EventBus/Transports/InMemory/InMemoryTransport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tingle.EventBus/Transports/InMemory/InMemoryTransport.cs b/src/Tingle.EventBus/Transports/InMemory/InMemoryTransport.cs index e4fff59c..22a7644f 100644 --- a/src/Tingle.EventBus/Transports/InMemory/InMemoryTransport.cs +++ b/src/Tingle.EventBus/Transports/InMemory/InMemoryTransport.cs @@ -376,7 +376,7 @@ private async Task DelayThenExecuteAsync(DateTimeOffset scheduled, Func TimeSpan.Zero) { await Task.Delay(remainder, cancellationToken);