-
Notifications
You must be signed in to change notification settings - Fork 727
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
SRV connection do not work (with fix) #493
Comments
In case this bug isn't clear - this is serious (i.e. breaking) issue. The connect line in client.py is not passing the arguments through in the correct locations to connect(). As far as I can see, this means args like clean_start don't work at all. |
I am not sure how to contribute here even more than I already did. Also #442 (comment) |
Any update on this? This bug breaks the client and is trivial to fix. |
Any updates? This really breaks the |
this looks still not fixed @icraggs : please fix what you broke |
Fixes this ~3yr old bug eclipse-paho#493
https://github.com/eclipse/paho.mqtt.python/blob/1eec03edf39128e461e6729694cf5d7c1959e5e4/src/paho/mqtt/client.py#L974
Please replace line with parameters instead of wrong positional arguments.
Testen on python 2.7.x and 3.5.x fixes both.
return self.connect(host, port, keepalive, bind_address, clean_start, properties)
The text was updated successfully, but these errors were encountered: