ttrpc icon indicating copy to clipboard operation
ttrpc copied to clipboard

GRPC for low-memory environments

Results 24 ttrpc issues
Sort by recently updated
recently updated
newest added

A few CI failures as a result of the coverage step appearing to hang and eventually timeout. Example: https://github.com/containerd/ttrpc/actions/runs/4368862651/jobs/7642780053

While looking to solve the containerd bug #6248 (https://github.com/containerd/containerd/issues/6248#issue-1053682568) I saw that it was already solved but the message would only be checked for the length after sending. Like @dmcgowan...

### Problem When enabling CI on Windows for release/1.1 branch (#163), an edge case was found via unit tests when running on the latest Windows platform with Go 1.20+ toolchain....

`*Client.Call()` apply metadata to `Request{}`: https://github.com/containerd/ttrpc/blob/faba5896a9c4d7b65495cb9b2c02531feb1434d6/client.go#L162-L164 But `*Client.NewStream()` does not have this block - so metadata not applyed. Please add this block to `*Client.NewStream()`. Thank you!