-
Notifications
You must be signed in to change notification settings - Fork 8
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
Subscriptions are dropped following reconnect #10
Comments
You are absolutely right that this is a big. Unfortunately I don't have the time to maintain this project anymore. I will update the readme and possibly archive the project. Sorry. |
No problem. Thank you for making this, and for making your situation
clear.
I'd like to continue using this so it would be nice to get a fix for
this and the trio hazmat/lowlevel fix into PyPI. I'd also be happy to
continue reviewing minor pull requests and publishing to PyPI myself.
Would you be willing to hand over PyPI maintainership of the project,
please, and arrange some similar continuation for this repository?
I don't intend to take on any major work; just help shepherd PRs into
PyPI for essential bugfixes. Hopefully that will still be useful to
others though.
|
100% - I'd love to hand this over to someone.
I'll look into getting the pypi ownership over to you. I can also make
you an owner of the repo and maybe we store the pypi keys in a github
secret. In case someone else wants to help, then it's just a matter of
giving them repo permissions.
…On Tue, May 11, 2021 at 5:58 AM basak ***@***.***> wrote:
No problem. Thank you for making this, and for making your situation
clear.
I'd like to continue using this so it would be nice to get a fix for
this and the trio hazmat/lowlevel fix into PyPI. I'd also be happy to
continue reviewing minor pull requests and publishing to PyPI myself.
Would you be willing to hand over PyPI maintainership of the project,
please, and arrange some similar continuation for this repository?
I don't intend to take on any major work; just help shepherd PRs into
PyPI for essential bugfixes. Hopefully that will still be useful to
others though.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#10 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAUNOYYWTUQUNANLRF7XKH3TND5TRANCNFSM44RU36PA>
.
|
Thanks! You can just add people to a PyPI project as "collaborators". My username on PyPI is I intend to send a pull request for this issue in the next few days. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Thank you for trio-paho-mqtt!
Following the pattern in the
README.md
example, I did something equivalent to:However I seemed to stop receiving messages after a while. I think this is because the connection timed out, the (sync) client reconnected automatically, but the subscription wasn't recreated.
https://github.com/eclipse/paho.mqtt.python/blob/master/README.rst says:
However I can't straightforwardly do this in trio-paho-mqtt because you're already using the sync client
on_connect
method for internal purposes, and aren't exposing that to the API user.I wonder if you could provide
on_connect
functionality directly fromAsyncClient
please?The text was updated successfully, but these errors were encountered: