0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-09 23:48:56 +02:00

Added DbConn to /alive healthcheck

During a small discusson on Matrix it seems logical to have the /alive
endpoint also check if the database connection still works.

The reason for this was regarding a certificate which failed/expired
while vaultwarden and the database were still up-and-running, but
suddenly vaultwarden couldn't connect anymore.

With this `DbConn` added to `/alive`, it will be more accurate, because
of vaultwarden can't reach the database, it isn't alive.
This commit is contained in:
BlackDex 2021-10-09 14:16:27 +02:00
parent 44da9e6ca7
commit 881524bd54
No known key found for this signature in database
GPG key ID: 58C80A2AA6C765E1

View file

@ -64,8 +64,10 @@ fn attachments(uuid: SafeString, file_id: SafeString) -> Option<NamedFile> {
NamedFile::open(Path::new(&CONFIG.attachments_folder()).join(uuid).join(file_id)).ok()
}
// We use DbConn here to let the alive healthcheck also verify the database connection.
use crate::db::DbConn;
#[get("/alive")]
fn alive() -> Json<String> {
fn alive(_conn: DbConn) -> Json<String> {
use crate::util::format_date;
use chrono::Utc;