fix(redis_interface): add back Redis pool connect step (#1789)

This commit is contained in:
Sanchith Hegde
2023-07-25 18:48:35 +05:30
committed by GitHub
parent 8223f8b29a
commit 1f8e790b14

View File

@ -135,6 +135,7 @@ impl RedisConnectionPool {
.into_report()
.change_context(errors::RedisError::RedisConnectionError)?;
pool.connect();
pool.wait_for_connect()
.await
.into_report()