diff --git a/deli/counter/auth/drivers/database/driver.py b/deli/counter/auth/drivers/database/driver.py index f16a257..d8017cb 100644 --- a/deli/counter/auth/drivers/database/driver.py +++ b/deli/counter/auth/drivers/database/driver.py @@ -33,5 +33,7 @@ def health(self): session.execute("SELECT 1") health['healthy'] = True health['valid_session'] = True + except Exception: + self.logger.exception("Error getting auth driver health") finally: return health diff --git a/requirements.txt b/requirements.txt index 097b954..7507ce8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,5 @@ sqlalchemy==1.1.14 # MIT sqlalchemy-utils==0.32.16 # BSD-3-Clause alembic==0.9.5 # MIT passlib==1.7.1 # BSD-3-Clause -bcrypt==3.1.4 # Apache 2.0 \ No newline at end of file +bcrypt==3.1.4 # Apache 2.0 +pygithub==1.35 # LGPL \ No newline at end of file