fix: build error after sync

Signed-off-by: Gaukas Wang <i@gaukas.wang>
This commit is contained in:
Gaukas Wang 2024-04-23 23:20:14 -06:00
parent b66e1ed5f5
commit 05c12945b8
No known key found for this signature in database
GPG key ID: 6F0DF52D710D8189
8 changed files with 71 additions and 126 deletions

View file

@ -131,8 +131,8 @@ func (c *uClient) dial(ctx context.Context) error {
select {
case <-ctx.Done():
c.conn.shutdown()
return ctx.Err()
c.conn.destroy(nil)
return context.Cause(ctx)
case err := <-errorChan:
return err
case recreateErr := <-recreateChan: