Commit f2b8e63b authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 23d34fb0
...@@ -1599,7 +1599,10 @@ func (wlink *WatchLink) handleWatch(ctx context.Context, stream uint64, msg stri ...@@ -1599,7 +1599,10 @@ func (wlink *WatchLink) handleWatch(ctx context.Context, stream uint64, msg stri
reply = fmt.Sprintf("error %s", err) reply = fmt.Sprintf("error %s", err)
} }
err = wlink.send(ctx, stream, reply) err2 := wlink.send(ctx, stream, reply)
if err == nil {
err = err2
}
return err return err
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment