From e9a1923e59a3574c7ebf1fb26ea9c44c70b54485 Mon Sep 17 00:00:00 2001 From: john xu Date: Fri, 14 Feb 2025 09:57:31 +0800 Subject: [PATCH] fix: tencentcloud redis doesnot support client info --- taskdb/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/taskdb/Cargo.toml b/taskdb/Cargo.toml index cb9883da..8904a258 100644 --- a/taskdb/Cargo.toml +++ b/taskdb/Cargo.toml @@ -18,7 +18,9 @@ anyhow = { workspace = true } tokio = { workspace = true } async-trait = { workspace = true } utoipa = { workspace = true } -redis = { workspace = true, optional = true } +redis = { workspace = true, optional = true, features = [ + "disable-client-setinfo", +] } backoff = { workspace = true } [dev-dependencies]