Torma Kristóf
c67bcc8db1
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
474 B
Python
23 lines
474 B
Python
#!/usr/bin/env python3
|
|
|
|
from model import db
|
|
|
|
"""
|
|
Healthchek functions
|
|
"""
|
|
|
|
__author__ = "@tormakris"
|
|
__copyright__ = "Copyright 2020, Birbnetes Team"
|
|
__module_name__ = "healthchecks"
|
|
__version__text__ = "1"
|
|
|
|
|
|
def health_database_status():
|
|
is_database_working = True
|
|
output = 'database is ok'
|
|
try:
|
|
db.session.execute('SELECT 1')
|
|
except Exception as e:
|
|
output = str(e)
|
|
is_database_working = False
|
|
return is_database_working, output |