mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
fix: don't panic in redis library on creating connection pool (#494)
This commit is contained in:
@ -589,7 +589,9 @@ mod tests {
|
||||
|
||||
#[tokio::test]
|
||||
async fn test_consumer_group_create() {
|
||||
let redis_conn = RedisConnectionPool::new(&RedisSettings::default()).await;
|
||||
let redis_conn = RedisConnectionPool::new(&RedisSettings::default())
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
let result1 = redis_conn
|
||||
.consumer_group_create("TEST1", "GTEST", &RedisEntryId::AutoGeneratedID)
|
||||
|
||||
Reference in New Issue
Block a user