build(deps): bump error-stack from version 0.3.1 to 0.4.1 (#4188)

This commit is contained in:
Sanchith Hegde
2024-04-01 12:31:17 +05:30
committed by GitHub
parent cb2000b088
commit ea730d4ffc
286 changed files with 1361 additions and 2397 deletions

View File

@ -4,7 +4,7 @@ pub mod pub_sub;
use std::sync::{atomic, Arc};
use error_stack::{IntoReport, ResultExt};
use error_stack::ResultExt;
use redis_interface::PubsubInterface;
use router_env::{logger, tracing::Instrument};
@ -53,7 +53,6 @@ impl RedisStore {
.subscriber
.subscribe::<(), _>(channel)
.await
.into_report()
.change_context(redis_interface::errors::RedisError::SubscribeError)?;
let redis_clone = self.redis_conn.clone();