You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: