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
When using a version of paho-mqtt greater than 1.6.1 (i.e. 2.0.0 or later), the following ValueError is produced:
ValueError: Unsupported callback API version: version 2.0 added a callback_api_version, see docs/migrations.rst for details
I guess we just need to use the new callback_api_version parameter, i.e. CallbackAPIVersion.VERSION1 for now; maybe consider migrating to VERSION2 in a future release?
The text was updated successfully, but these errors were encountered:
When using a version of paho-mqtt greater than 1.6.1 (i.e. 2.0.0 or later), the following ValueError is produced:
ValueError: Unsupported callback API version: version 2.0 added a callback_api_version, see docs/migrations.rst for details
I guess we just need to use the new callback_api_version parameter, i.e.
CallbackAPIVersion.VERSION1
for now; maybe consider migrating to VERSION2 in a future release?The text was updated successfully, but these errors were encountered: