Update to latest library versions (#170)

This commit is contained in:
zainkabani
2022-09-21 16:48:33 -04:00
committed by GitHub
parent 8c09ab6c20
commit 85cc2f4147
3 changed files with 87 additions and 29 deletions

View File

@@ -595,7 +595,7 @@ impl ManageConnection for ServerPool {
}
/// Determines if the connection is still connected to the database.
async fn is_valid(&self, _conn: &mut PooledConnection<'_, Self>) -> Result<(), Self::Error> {
async fn is_valid(&self, _conn: &mut Self::Connection) -> Result<(), Self::Error> {
Ok(())
}