changes after testing

This commit is contained in:
madeofstown
2025-02-17 13:49:34 -08:00
parent 076abb5811
commit c9d65a078a
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -5,11 +5,11 @@ tls_cert =
acme_challenge =
[mqtt]
server = 'mqtt.bayme.sh'
topics = ['msh/US/bayarea/#']
server = mqtt.bayme.sh
topics = ['msh/US/bayarea/#', 'msh/US/CA/mrymesh/#']
port = 1883
username = 'meshdev'
password = 'large4cats'
username = meshdev
password = large4cats
[database]
connection_string = sqlite+aiosqlite:///packets.db
+1 -1
View File
@@ -26,7 +26,7 @@ async def main(config):
async with asyncio.TaskGroup() as tg:
tg.create_task(
load_database_from_mqtt(config["mqtt"]["server"], int(config["mqtt"]["port"]), config["mqtt"]["topics"].split(","), mqtt_user, mqtt_passwd)
load_database_from_mqtt(config["mqtt"]["server"], int(config["mqtt"]["port"]), config["mqtt"]["topics"], mqtt_user, mqtt_passwd)
)
tg.create_task(
web.run_server(