Add known gRPC issues

This commit is contained in:
James Newton-King 2019-06-13 12:39:00 +12:00 committed by GitHub
parent b427bed07d
commit 6b547e839e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,6 +75,23 @@ This document lists known issues for **.NET Core 3.0 Preview releases** which ma
This issue will fixed in a future update.
- **Cancellation is not sent to the server when using the `Grpc.Net.Client` gRPC client**
Canceling a gRPC client will cancel the call on the client, but will not send a cancellation notification to the server.
If your gRPC services rely on cancellation you should continue to use the `Grpc.Core` gRPC client until preview 7. This issue will fixed in a future update.
- **`Grpc.Net.ClientFactory` does not reference all required types when used outside of ASP.NET Core**
The gRPC client factory does not reference the `Microsoft.Extensions.Http` package. If you are using the client factory you will need to include a reference to `Microsoft.Extensions.Http` in the project file.
```xml
<PackageReference Include="Grpc.Net.ClientFactory" Version="0.1.21-pre1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.1" />
```
This issue will fixed in a future update.
### Preview 4
- **[RESOLVED] Server-side Blazor app fails to run on non-Windows platforms**