You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anything returned from NewClientConn in crypto/ssh will "flatten" wrapped errors. There is an issue and a PR at golang/go#61309golang/crypto#266
This makes some of rig's error wrapping lose all meaning and for example makes k0sctl's retry not give up before the timeout, because using errors.Is(err, rig.ErrCantConnect) is never true.
The text was updated successfully, but these errors were encountered:
Anything returned from NewClientConn in crypto/ssh will "flatten" wrapped errors. There is an issue and a PR at golang/go#61309 golang/crypto#266
This makes some of rig's error wrapping lose all meaning and for example makes k0sctl's retry not give up before the timeout, because using
errors.Is(err, rig.ErrCantConnect)
is never true.The text was updated successfully, but these errors were encountered: