good morning!!!!

Skip to content
Snippets Groups Projects
Commit 7ac56e48 authored by Garet Halliday's avatar Garet Halliday
Browse files

Merge branch 'rawmessage-fix' into 'master'

fix send json.RawMessage

See merge request !24
parents 8c4834a5 07883982
No related branches found
No related tags found
1 merge request!24fix send json.RawMessage
Pipeline #30170 passed with stage
in 3 minutes and 52 seconds
...@@ -48,7 +48,7 @@ func (c *streamingRespWriter) Send(v any, e error) (err error) { ...@@ -48,7 +48,7 @@ func (c *streamingRespWriter) Send(v any, e error) (err error) {
} }
// only set value if value is not nil // only set value if value is not nil
if v != nil { if v != nil {
ce.v = &v ce.v = v
} }
err = c.cr.mu.Acquire(c.ctx, 1) err = c.cr.mu.Acquire(c.ctx, 1)
if err != nil { if err != nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment