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
In channel v2 timeout the switch on err is using the err from a previous context because it is done as a if err := (i.e. it will always be nil and the noOp case can never happen).
Also, add tests for noOp scenarios across channel-04 v2 to make sure it works everywhere.
The text was updated successfully, but these errors were encountered:
In channel v2 timeout the switch on err is using the err from a previous context because it is done as a
if err :=
(i.e. it will always be nil and the noOp case can never happen).Also, add tests for noOp scenarios across channel-04 v2 to make sure it works everywhere.
The text was updated successfully, but these errors were encountered: