Fix connect_srv()'s arguments to include bind_port#759
Conversation
Fixes this ~3yr old bug eclipse-paho#493
|
This adds an argument in the middle of an existing entry_point, so anyone using positional parameters will see breakage. Is there a good readon for that? Can/should we avoid breakage by putting the new parameter at the end? |
|
You need to convince github that you have signed the ECA. |
It is currently completely broken, making this function 100% unusable, I figured since it's already completely broken then might as well stick to consistency with the underlying
I don't have an Eclipse account, nor do I want one, I just want this 3yr old bug fixed. I've read the ECA and can certify that:
and
|
Fixes this ~3yr old bug #493
I think it worth considering reworking this function to use
*args, **kwargsfor these extra arguments, or at least callconnect()with keyword arguments.Either one would reduce issues with future failings to manually keep the functions in sync.
But that will likely raise a more intensive workflow discussion, and my goal for this is just to get this 3yr old bug fixed so I can stop using my terrible workarounds.