You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accessing the field Client.protocol causes infinite recursion, since there is a bug in how that property is defined. The bug is on this line. The function should return self._protocol and not self.protocol as the latter is a recursive definition.
This is the property.
@propertydefprotocol(self) ->MQTTProtocolVersion:
""" Protocol version used (MQTT v3, MQTT v3.11, MQTTv5) This property is read-only. """returnself.protocol
The text was updated successfully, but these errors were encountered:
Bug Description
Accessing the field
Client.protocol
causes infinite recursion, since there is a bug in how that property is defined. The bug is on this line. The function should returnself._protocol
and notself.protocol
as the latter is a recursive definition.This is the property.
The text was updated successfully, but these errors were encountered: