grpc-dotnet icon indicating copy to clipboard operation
grpc-dotnet copied to clipboard

gRPC for .NET

Results 162 grpc-dotnet issues
Sort by recently updated
recently updated
newest added

### What version of gRPC and what language are you using? C#, see the following excerpt of the `.csproj` file for the gRPC version: ```xml ``` ### What operating system...

bug

Currently `Metadata.Entry` has a `string` and `byte[]` field. These must be right-sized, and do not allow leased (oversized) buffers, etc. For this scenario, I propose: - change the fields to...

enhancement

### Is your feature request related to a problem? Please describe. It's not a problem per se, but a nice addition to dev experience. ### Describe the solution you'd like...

enhancement

Following the [example](https://learn.microsoft.com/en-us/aspnet/core/grpc/interprocess-uds?view=aspnetcore-8.0) in the docs, I tried to connect to a gRPC server listening on a Unix Domain Socket. I created a small program to test it ``` using...

question

Hi, @JamesNK We detected the following endless errors from several pods when they are trying to perform Grpc calls to several endpoints: ![изображение](https://github.com/grpc/grpc-dotnet/assets/372089/39e2815c-21cb-4716-8aad-f7dd78c78a21) Exception itself is always the same: ```...

bug

Original GitHub issue: https://github.com/googleapis/google-cloud-dotnet/issues/12318 Diagnostic test solution: https://github.com/googleapis/google-cloud-dotnet/tree/main/issues/Issue12318 The most useful directory in there (in terms of looking at the code) is probably RawGrpcStubs. Currently, I can reproduce this when...

question

There is now a global ConfigureHttpClient option to configure all clients created by client factory. This feature conflicts with gRPC integration into the factory, which throws an error if the...

bug

Hi there, I am unsure if asking this question here is appropriate, as dotnet-grpc (a dotnet tool) doesn't seem to be an open-source project. I encountered the same problem (#1564),...

question

Get an error as follows when I try to read the stream message from the server response: ``` Call failed with gRPC error status. Status code: 'Internal', Message: 'Error reading...

question

@JamesNK Hi! We have a problem with using `PollingResolver` and `SubchannelsLoadBalancer`. There is a case (occuring mainly under very intensive use) when `ConnectionManager.PickAsync(...)` become poisoned and always returns `ErrorPicker` result...

bug