Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proxy: fix case order in a type switch #129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

proxy: fix case order in a type switch #129

wants to merge 1 commit into from

Conversation

quasilyte
Copy link

Type switch executes its clauses sequentially until the first match.
The *tcpmux.Stream type implements net.Conn, so if net.Conn goes
before *tcpmux.Stream case, it will catch *tcpmux.Stream values and will
never let case *tcpmux.Stream` to execute. The solution is simple, move
specific type case before the interface it implements.

Found using gocritic linter, caseOrder checker.

Type switch executes its clauses sequentially until the first match.
The `*tcpmux.Stream` type implements `net.Conn`, so if `net.Conn` goes
before `*tcpmux.Stream` case, it will catch `*tcpmux.Stream` values and will
never let `case `*tcpmux.Stream` to execute. The solution is simple, move
specific type case before the interface it implements.

Found using gocritic linter, `caseOrder` checker.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant