Browse Source

fix error message for purging auth requests (#6776)

pull/6202/head
Stefan Melmuk 3 months ago
committed by Ross Golder
parent
commit
57b786f07f
  1. 2
      src/api/core/accounts.rs

2
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")
}
}

Loading…
Cancel
Save