Skip to content

Commit f35fb79

Browse files
authored
Fix/mqtt looses connection (#108)
* start loop for pub_client * version bump
1 parent 101b0ca commit f35fb79

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git+https://github.com/eclipse-velocitas/[email protected].0
1+
git+https://github.com/eclipse-velocitas/[email protected].2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
setup(
7070
name="velocitas_sdk",
71-
version="0.12.0",
71+
version="0.12.2",
7272
description="A Python SDK for Vehicle app",
7373
long_description=long_description,
7474
long_description_content_type="text/markdown",

velocitas_sdk/native/mqtt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def on_disconnect(self, client, userdata, rc):
6262

6363
async def run(self):
6464
self._sub_client.loop_start()
65+
self._pub_client.loop_start()
6566

6667
async def init(self):
6768
"""Do nothing"""

0 commit comments

Comments
 (0)