-
## Feature Request
Tracking issue for supporting client and server http3 transport for gRPC services. Functionality should mostly be inherited by dependency crates, but would likely need exposure thr…
-
I noticed in https://github.com/bluejekyll/trust-dns/pull/1987 that Cloudflare's HTTP/3 implementation seems to be incompatible (or there might be a bug?) with `h3`.
I made a "minimal" reproducible…
-
Some notes (in no particular order) about speeding up reading many chunks of data from cloud storage.
## General info about cloud storage buckets
In general, cloud storage buckets are highly dis…
-
currently in the connection handler we just call tower_h2::Server::serve(socket)
it would be useful if there was a way to pass metadata to that call that is later available in Request
specifically i…
-
When making a service to pass to `server` I've never used `make_service_fn` in any other way than:
```rust
let server = Server::bind(&addr).serve(make_service_fn(|_| async move {
Ok::(serv…
rylev updated
3 years ago
-
## Bug description
### Symptoms
1. GRPC requests are taking too long to time out when Kubernetes network policies are misconfigured.
2. The `connection_timeout_is_not_fatal` test takes ~75 seco…
-
### Details
- `cargo bench -p jsonrpsee-benchmarks -- --output-format bencher` results in a repeating panic
- commit: `2864756 - dependabot[bot] - chore(deps): update parking_lot requirement from 0.…
lexnv updated
2 years ago
-
I propose to add new options to the configuration of the `http` sink which would allow the user to configure behavior of the sink when the target host is available on both IPv4 and IPv6 addresses.
…
-
https://github.com/rust-lang/unsafe-code-guidelines/issues/337 pointed out that the following code compiles:
```rust
enum Never {}
#[repr(transparent)]
struct Foo(u32, Never);
```
Does t…
-
## Feature Request
Is there any way I can use different codec implementations based on the 'Content-Type' header?
### Motivation
My requirement is to make this grpc service support multiple proto…