refactor(redis_interface): remove the Drop implementation on RedisConnectionPool (#1786)

This commit is contained in:
Sanchith Hegde
2023-07-25 15:15:33 +05:30
committed by GitHub
parent 435c939576
commit ac17b11e09
2 changed files with 0 additions and 36 deletions

View File

@ -10,7 +10,6 @@ use crate::{configs::settings::Database, errors};
pub type PgPool = bb8::Pool<async_bb8_diesel::ConnectionManager<PgConnection>>;
pub type PgPooledConn = async_bb8_diesel::Connection<PgConnection>;
pub type RedisPool = std::sync::Arc<redis_interface::RedisConnectionPool>;
#[derive(Debug)]
struct TestTransaction;