fix build issue

This commit is contained in:
Adam Hathcock
2025-04-28 09:39:46 +01:00
parent b5b0922e7f
commit edf63d4a1b
@@ -76,7 +76,7 @@ public abstract class ChannelSaver<T>
}
//can switch to check then try pattern when back pressure is needed or exceptions are too much
//the trees don't need to respond to back pressure
await _checkCacheChannel.Writer.WriteAsync(item, cancellationToken);
await _checkCacheChannel.Writer.WriteAsync(item, cancellationToken).ConfigureAwait(false);
}
private async Task<IMemoryOwner<T>> SendToServer(IMemoryOwner<T> batch)