# HG changeset patch # User drewp@bigasterisk.com # Date 1697420918 25200 # Node ID 18c0dbfab73ab3ad26fcaa4783d0bdc7d2a3a80b # Parent f3786656cf4f62c99b16ef5d8d05ac4483af7c07 update mqtt addr diff -r f3786656cf4f -r 18c0dbfab73a front_door_lock.py --- a/front_door_lock.py Sun Oct 15 18:48:19 2023 -0700 +++ b/front_door_lock.py Sun Oct 15 18:48:38 2023 -0700 @@ -118,7 +118,7 @@ asyncio.create_task(self._go()) async def _go(self): - self.client = aiomqtt.Client("mosquitto-frontdoor", 10210, client_id="lock-service-%s" % time.time(), keepalive=6) + self.client = aiomqtt.Client("mqtt1", 1883, client_id="lock-service-%s" % time.time(), keepalive=6) while True: try: async with self.client: