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
Paho-mqtt introduced a callback API version setting as a breaking change in 2.0.
zytemp_mqtt/zytempmqtt/mqtt.py
Line 28 in 600a554
Might consider doing something like this
try: self.client = mqtt.Client( callback_api_version=mqtt.CallbackAPIVersion.VERSION1, client_id=self.cfg.mqtt_client_id ) except TypeError: # if running paho-mqtt <2.0 self.client = mqtt.Client(client_id=self.cfg.mqtt_client_id)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Paho-mqtt introduced a callback API version setting as a breaking change in 2.0.
zytemp_mqtt/zytempmqtt/mqtt.py
Line 28 in 600a554
Might consider doing something like this
The text was updated successfully, but these errors were encountered: