UI hang with grpc response containing google.protobuf.Any
Bug
Yaak’s UI appears to hang on successful gRPC responses (grpc-status: 0) when the response message contains google.protobuf.Any values inside a map<>. The wire-level call completes, which we confirmed via grpcurl returning the response almost instantly for the same call with the same request body.
We noticed there’s no google.protobuf.Any match within crates/yaak-grpc/src/json_schema.rs
https://github.com/mountain-loop/yaak/releases/tag/v2026.4.0-beta.1
The issue was that
Anytypes in responses may not have been accounted for in initial server reflection.The fix was to apply just-in-time reflection for missing
Anytypes on receive (this logic was already in place for sending).