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

The Dart language implementation of gRPC.

Results 130 grpc-dart issues
Sort by recently updated
recently updated
newest added

Using `package:grpc` version `3.0.2`, stack trace from `pub.dev` which uses `package:grpc` through `package:appengine`. ``` Error: gRPC Error (code: 14, codeName: UNAVAILABLE, message: Error making call: Null check operator used on...

type-bug

How to handle common use cases or errors from the response? This looks good for 5, 10 functions. But what if our ApiRepository grows considerably. ```dart class ApiRepository { //...

`BaseAuthenticator` will only refresh the access token if it has expired. Which means that it'll happily make requests with a token that expires soon, that seems like a bad idea....

type-bug

Observed with `grpc 3.0.0`, `appengine 0.13.0`, not really sure what/where the culprit is... ``` Error: gRPC Error (code: 14, codeName: UNAVAILABLE, message: Error making call: Null check operator used on...

When connectionTimeout is set (including the default of 50 minutes) and long running streaming requests are run, the number of established HTTP2 connections will increase be one, first on connectionTimeout...

I throw a GrpcError.failedPrecondition error on server side with a GeneratedMessage typed object in the details list. On the client side I get the GrpcError with the proper status code...

type-enhancement
help wanted

when enabling isTimelineLoggingEnabled Grpc Package Version: `3.0.0` ## Repro steps 1. isTimelineLoggingEnabled = true 2. execute grpc call Expected result: Network call on timeline Actual result: No Network call on...

Unstable method call from GRPC dart client to server. Intermittent "Stream was terminated by peer (errorCode: 2)" occurs. pubspec.yaml: grpc: ^2.9.0 ## Repro steps 1. create ClientChannel with ip, ports...

Cancelling a resulting stream that is not done prevent `channel.shutdown()` to free resources on client side and let the program stop. The issue exists in 1.0.3 and master (91564ff7aa33214b55d050bed44be1b875a6713b) ##...

type-bug

I had an issue like some others have pointed out when connecting through a custom certificate trust store. Using it resulted in a HandshakeException (CERTIFICATE_VERIFY_FAILED). Digging through my local files...

help wanted
type-documentation