grpc-dart
grpc-dart copied to clipboard
The Dart language implementation of gRPC.
The `timeline_test` has been failing on Windows since at least Dart `3.4.0-185.0.dev`, last working version was `3.4.0-160.0.dev`. Could not be reproduced locally.
I want to have an interceptor to pass the JWT to the headers of the request call this is the basic class that I want to have ``` Dart class...
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.6. Release notes Sourced from actions/checkout's releases. v4.1.6 What's Changed Check platform to set archive extension appropriately by @cory-miller in actions/checkout#1732 Update for 4.1.6 release...
Bumps [lints](https://github.com/dart-lang/lints) from 3.0.0 to 4.0.0. Release notes Sourced from lints's releases. package:lints v4.0.0 core: added library_annotations (dart-lang/lints#177) added no_wildcard_variable_uses (dart-lang/lints#139) removed package_prefixed_library_names (dart-lang/lints#172) recommended: removed library_names (dart-lang/lints#181) Updated the...
When hot-restarting in Flutter Web, streaming GRPC calls can get stuck in this [method](https://github.com/grpc/grpc-dart/blob/dee1b2b43b5059ac625cf915ac062dc13ab0f274/lib/src/client/transport/web_streams.dart#L132) of `_GrpcWebConversionSink`: ``` @override void add(ByteBuffer chunk) { _chunkOffset = 0; final chunkData = chunk.asUint8List(); while...
Currently, when the keep alive manager runs into a timeout, the connection is shutdown. The channel, however, cannot recover and stays in a stuck state. Instead, we should finish the...
Wasm support is now stable since flutter 3.22 published, i got UNAVAILABLE error while testing my web app with wasm. Version of the grpc-dart packages used: v3.2.4 and grpc/grpc-dart master...
I am using grpc to connect to cosmos blockchain, some blockchain works well while others fail 3.1.0 ## Repro steps working urls ---------------------- 1. grpc.osmotest5.osmosis.zone 2. rest.sentry-01.theta-testnet.polypore.xyz failing urls -----------------...
Hi, I'm having an issue with streaming only when compiled to the web platform. It's the simple file upload chunking code that works fine on native platforms: upload.dart ```dart import...
I'd like to implement cancellation. Here's how grpc-4.0.1 creates the call. The call itself is cancellable, but it goes into a private field _call, so it's unreachable. Is there way...