adafruit / Adafruit_CircuitPython_MiniMQTT

MQTT Client Library for CircuitPython
Other
72 stars 50 forks source link

generic timeout error when 'is_ssl' param not set for an mqtt service that requires it #214

Closed jersu11 closed 1 month ago

jersu11 commented 1 month ago

This was discovered while debugging a connection issue with the adafruit_aws_iot library. When the MQTT client is instantiated without the is_ssl param for a service that requires ssl, the MQTT client will attempt retries and eventually fail with an error that is perhaps too generic.

MMQTTException('Repeated connect failures',)
justmobilize commented 1 month ago

investigating