Browse Source
fix error message for purging auth requests
pull/6776/head
stefan0xC
1 month ago
No known key found for this signature in database
GPG Key ID: 817020C608FE9C09
1 changed files with
1 additions and
1 deletions
-
src/api/core/accounts.rs
|
|
|
@ -1704,6 +1704,6 @@ pub async fn purge_auth_requests(pool: DbPool) { |
|
|
|
if let Ok(conn) = pool.get().await { |
|
|
|
AuthRequest::purge_expired_auth_requests(&conn).await; |
|
|
|
} else { |
|
|
|
error!("Failed to get DB connection while purging trashed ciphers") |
|
|
|
error!("Failed to get DB connection while purging auth requests") |
|
|
|
} |
|
|
|
} |
|
|
|
|