From 883b6ee79384e46e2ae0307d03920db7e0b86c9d Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Thu, 10 Feb 2022 10:37:55 -0800 Subject: [PATCH] todo complete --- src/pool.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pool.rs b/src/pool.rs index 0b9b62b..9905e36 100644 --- a/src/pool.rs +++ b/src/pool.rs @@ -183,7 +183,6 @@ impl ConnectionPool { allowed_attempts -= 1; // Check if we can connect - // TODO: implement query wait timeout, i.e. time to get a conn from the pool let mut conn = match self.databases[shard][index].get().await { Ok(conn) => conn, Err(err) => {