chore: update Dockerfile and requirements for Python 3.13, enhance error handling in config and tracker modules

This commit is contained in:
Lorenzo Venerandi
2026-03-01 21:52:27 +01:00
parent e88f245e9b
commit e1c1b4d953
6 changed files with 55 additions and 53 deletions

View File

@@ -77,5 +77,5 @@ def main():
finally:
try:
db.close_session()
except Exception:
pass
except Exception as e:
app_logger.error(f"Error closing DB session after retention cleanup: {e}")