From 6d2c497c92543259f38f8451f6f993c9bbf28126 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 16 Jan 2024 13:01:30 +0300 Subject: [PATCH] =?UTF-8?q?Revert=20"=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BF=D1=80=D0=BE=D0=B1=D1=80=D0=BE=D1=81=20CT=20?= =?UTF-8?q?=D0=B2=20WatchV2"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 8f2e925bad1aeb2289a8965f6b1c0fe69bfa4208. --- dotnet-etcd/watchClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-etcd/watchClient.cs b/dotnet-etcd/watchClient.cs index 3cc32ab..2fff8cc 100644 --- a/dotnet-etcd/watchClient.cs +++ b/dotnet-etcd/watchClient.cs @@ -104,7 +104,7 @@ public async Task WatchV2(WatchRequest request, Action method, Gr } }, cancellationToken); - await watcher.RequestStream.WriteAsync(request, cancellationToken).ConfigureAwait(false); + await watcher.RequestStream.WriteAsync(request).ConfigureAwait(false); await watcherTask.ConfigureAwait(false); await watcher.RequestStream.CompleteAsync().ConfigureAwait(false); }