allow to specify session_id for connect() #226
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
ConnectionManager
used by MiniMQTT disallows connecting to the same host/port combination multiple times. Sometimes it is actually handy to be able to create multiple connections, e.g. to test a MQTT broker implementation. This change allows for that by propagating thesession_id
parameter fromconnect()
to theConnectionManager
.Tested with CPython and a MQTT broker (called
femtomqtt
) running on localhost:With no arguments the program ends with:
with any argument 2 connections are created (verified with
netstat
):Also tested the same code on
Adafruit CircuitPython 9.2.0 on 2024-10-28; Adafruit Feather ESP32S3 4MB Flash 2MB PSRAM with ESP32S3
.