We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Read and handle unsubscribe packet
we panic if we get unsubscribe packet, as we reach unreachable!()
unreachable!()
In v5 protocol, while reading packets, in match arms, we don't include unsubscribe packet. Thus it proceeds to _ => unreachable!().
_ => unreachable!()
Add Packet::Unsubscribe in match arm here and handle it properly.
Packet::Unsubscribe
The text was updated successfully, but these errors were encountered:
@swanandx I would like to contribute for the issue
Sorry, something went wrong.
@coderr01 Hey, thanks ( that was fast 😆 ), feel free to contribute! Please open a PR once you are done with suggested solution 💯
@swanandx i am not able to push the changes. Can you provide the necessary permission ?
Can you please fork the repo? That would nice
@swanandx please have a look on that #626
No branches or pull requests
Expected Behavior
Read and handle unsubscribe packet
Current Behavior
we panic if we get unsubscribe packet, as we reach
unreachable!()
Failure Information (for bugs)
In v5 protocol, while reading packets, in match arms, we don't include unsubscribe packet. Thus it proceeds to
_ => unreachable!()
.Solution
Add
Packet::Unsubscribe
in match arm here and handle it properly.The text was updated successfully, but these errors were encountered: