From 8d804ec551d8866325a56643adae34d399280327 Mon Sep 17 00:00:00 2001 From: jwansek Date: Sat, 7 Oct 2023 17:38:50 +0100 Subject: Fixed retrying if it couldn't connect --- database.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'database.py') diff --git a/database.py b/database.py index 59250d0..b31f905 100644 --- a/database.py +++ b/database.py @@ -23,6 +23,8 @@ class PowerDatabase: print(e) if e.args[0] == 1049: self.__connection = self.__build_db() + elif e.args[0] == 2003: + raise ConnectionError(e.args[1]) with self.__connection.cursor() as cursor: if "TASMOTA_DEVICES" in os.environ.keys(): -- cgit v1.2.3