-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Migrate to aiomqtt
#25
Conversation
* Migrated from `asyncio-mqtt` to `aiomqtt` in a straightforward way using `__aenter__` and `__aexit__` instead of `connect`/`disconnect methods, plus removed overriding the latter ones since those have been removed from the base class * Updated runtime and development packages to most recent versions * Github: Docker images are published on each workflow run to facilitate testing, not only when release is created
Please retry analysis of this Pull-Request directly on SonarCloud |
…higher requirements
Quality Gate passedIssues Measures |
Quality Gate passedIssues Measures |
Please retry analysis of this Pull-Request directly on SonarCloud |
into `connect` and `disconnect` methods of `MqttClient` one, as per https://github.com/sbtinstruments/aiomqtt/blob/main/docs/migration-guide-v2.md
Quality Gate passedIssues Measures |
added Python 3.11 - 3.12
Quality Gate passedIssues Measures |
asyncio-mqtt
toaiomqtt
in a straightforward way using__aenter__
and__aexit__
wrapping them intoconnect
/disconnect
methods ofMqttClient
class