dont fail empty payload

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2021-04-12 16:39:16 +03:00
parent ac0ab02645
commit 3b0e9fcda2

View File

@ -54,7 +54,12 @@ func (c *jsonCodec) ReadBody(conn io.Reader, b interface{}) error {
return nil return nil
} }
return json.NewDecoder(conn).Decode(b) err := json.NewDecoder(conn).Decode(b)
if err == io.EOF {
return nil
}
return err
} }
func (c *jsonCodec) Write(conn io.Writer, m *codec.Message, b interface{}) error { func (c *jsonCodec) Write(conn io.Writer, m *codec.Message, b interface{}) error {