Closed medikoo closed 1 year ago
When large request body was truncated, we accidentally were passing null in place of request body to request and that is crashing protobuf payload handling.
null
This patch ensures we pass undefined which is ignored by protobuf handler
undefined
When large request body was truncated, we accidentally were passing
null
in place of request body to request and that is crashing protobuf payload handling.This patch ensures we pass
undefined
which is ignored by protobuf handler