fix(codec): Fix streaming reponses w/ many status (#689)

Closes #681
This commit is contained in:
Lucio Franco
2021-07-01 10:25:43 -04:00
committed by GitHub
parent 2b60a00614
commit 737ace393d
8 changed files with 100 additions and 6 deletions
@@ -0,0 +1,10 @@
syntax = "proto3";
package stream;
service TestStream {
rpc StreamCall(InputStream) returns (stream OutputStream);
}
message InputStream {}
message OutputStream {}