After pulling the latest version this morning, I discovered a problem that config['gateway'] is not set. I am running on a Pi Pico W, and get the following error when starting up:
Traceback (most recent call last):
File "", line 3, in
File "mqtt_flowserv01.py", line 533, in
File "mqtt_as.py", line 551, in init
File "mqtt_as.py", line 171, in init
KeyError: gateway
adding the following line to my code works around the problem:
config['gateway'] = None
After pulling the latest version this morning, I discovered a problem that config['gateway'] is not set. I am running on a Pi Pico W, and get the following error when starting up:
Traceback (most recent call last): File "", line 3, in
File "mqtt_flowserv01.py", line 533, in
File "mqtt_as.py", line 551, in init
File "mqtt_as.py", line 171, in init
KeyError: gateway
adding the following line to my code works around the problem:
config['gateway'] = None