good morning!!!!

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

hm

parent e0630ffa
Branches
Tags
No related merge requests found
Pipeline #32222 passed
...@@ -152,9 +152,6 @@ func (c *Client) Notify(ctx context.Context, method string, params any) error { ...@@ -152,9 +152,6 @@ func (c *Client) Notify(ctx context.Context, method string, params any) error {
return c.writeContext(ctx, fwd) return c.writeContext(ctx, fwd)
} }
func (c *Client) SetHeader(key string, value string) {
}
func (c *Client) Close() error { func (c *Client) Close() error {
c.cn() c.cn()
return nil return nil
......
...@@ -76,13 +76,19 @@ func (i *IdReply) Resolve(id []byte, msg io.ReadCloser, err error) { ...@@ -76,13 +76,19 @@ func (i *IdReply) Resolve(id []byte, msg io.ReadCloser, err error) {
} }
if err != nil { if err != nil {
ch <- msgOrError{ select {
case ch <- msgOrError{
err: err, err: err,
}:
default:
} }
return return
} }
ch <- msgOrError{ select {
case ch <- msgOrError{
msg: msg, msg: msg,
}:
default:
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment