fix: add separate config option for redis events replica url (#590)

This commit is contained in:
Paul Makles
2026-02-16 19:37:04 +00:00
committed by GitHub
parent 74f0c537e6
commit a75e4eabfc
2 changed files with 8 additions and 1 deletions

View File

@@ -117,6 +117,7 @@ static CONFIG_BUILDER: Lazy<RwLock<Config>> = Lazy::new(|| {
pub struct Database {
pub mongodb: String,
pub redis: String,
pub redis_pubsub: Option<String>,
}
#[derive(Deserialize, Debug, Clone)]