mirror of https://github.com/grpc/grpc.git
Guard against duplicate ops in the same batch (#28118)
* Guard against duplicate ops in the same batch * add test * add fuzzer example * better namereviewable/pr26812/r11^2
parent
2a6948f69d
commit
98276d8b46
3 changed files with 89 additions and 0 deletions
@ -0,0 +1,55 @@ |
||||
actions { |
||||
create_channel { |
||||
target: "dse:snrver" |
||||
} |
||||
} |
||||
actions { |
||||
create_call { |
||||
method { |
||||
value: "%:?" |
||||
} |
||||
} |
||||
} |
||||
actions { |
||||
queue_batch { |
||||
operations { |
||||
receive_initial_metadata { |
||||
} |
||||
} |
||||
operations { |
||||
send_message { |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
value: "bob" |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
message { |
||||
intern: true |
||||
} |
||||
} |
||||
} |
||||
operations { |
||||
receive_initial_metadata { |
||||
} |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue