Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Newton-King <james@newtonking.com>2019-08-13 21:35:31 +0300
committerVivek Mishra <vivmish@microsoft.com>2019-08-13 21:35:31 +0300
commit3dc85495ecdb2a5d7b8fa0874bd827f0c292daa8 (patch)
treea4a2f6e8ed38a6902928c424502314615dbbecff
parent851bb0cfc828a64ba63531f471a51f7c1d9e96ff (diff)
Update 3.0.0-preview-known-issues.md (#3174)v3.0.0-preview8
-rw-r--r--release-notes/3.0/preview/3.0.0-preview-known-issues.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/release-notes/3.0/preview/3.0.0-preview-known-issues.md b/release-notes/3.0/preview/3.0.0-preview-known-issues.md
index a0ead572..163938fb 100644
--- a/release-notes/3.0/preview/3.0.0-preview-known-issues.md
+++ b/release-notes/3.0/preview/3.0.0-preview-known-issues.md
@@ -33,6 +33,14 @@ To update the path for every new terminal session, the `export` entry will need
## ASP.NET Core
+### Preview 8
+
+- **Starting a client or bi-directional streaming gRPC call with an already canceled `CallOptions.CancellationToken` will hang**
+
+ Starting a client or bi-directional streaming call with an already canceled `CallOptions.CancellationToken` will not properly cancel the call. Sending a message with `RequestStream.WriteAsync` will hang.
+
+ To workaround this issue ensure that the `CancellationToken` passed to client or bi-directional streaming calls is only ever canceled after the call has started.
+
### Preview 7
- **Incorrect launch URL for the Web API template**