rpc: reset writeConn when conn is closed on readErr (#20414)
This change makes the client attempt to reconnect when a write fails. We already had reconnect support, but the reconnect would previously happen on the next call after an error. Being more eager leads to a smoother experience overall.
This commit is contained in:
parent
7b68975a00
commit
44c365c3e2
@ -465,7 +465,7 @@ func (c *Client) newMessage(method string, paramsIn ...interface{}) (*jsonrpcMes
|
|||||||
func (c *Client) send(ctx context.Context, op *requestOp, msg interface{}) error {
|
func (c *Client) send(ctx context.Context, op *requestOp, msg interface{}) error {
|
||||||
select {
|
select {
|
||||||
case c.reqInit <- op:
|
case c.reqInit <- op:
|
||||||
err := c.write(ctx, msg)
|
err := c.write(ctx, msg, false)
|
||||||
c.reqSent <- err
|
c.reqSent <- err
|
||||||
return err
|
return err
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
@ -477,7 +477,7 @@ func (c *Client) send(ctx context.Context, op *requestOp, msg interface{}) error
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) write(ctx context.Context, msg interface{}) error {
|
func (c *Client) write(ctx context.Context, msg interface{}, retry bool) error {
|
||||||
// The previous write failed. Try to establish a new connection.
|
// The previous write failed. Try to establish a new connection.
|
||||||
if c.writeConn == nil {
|
if c.writeConn == nil {
|
||||||
if err := c.reconnect(ctx); err != nil {
|
if err := c.reconnect(ctx); err != nil {
|
||||||
@ -487,6 +487,9 @@ func (c *Client) write(ctx context.Context, msg interface{}) error {
|
|||||||
err := c.writeConn.writeJSON(ctx, msg)
|
err := c.writeConn.writeJSON(ctx, msg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.writeConn = nil
|
c.writeConn = nil
|
||||||
|
if !retry {
|
||||||
|
return c.write(ctx, msg, true)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user