From 6e24ea509949fcd3a5e761dab9ee93f7c45a1139 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E8=B6=85?= Date: Sat, 6 Jun 2026 00:15:52 +0800 Subject: [PATCH] fix(redis): need to enable tls-rustls-insecure to support --insecure (#794) --- crates/dbx-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/dbx-core/Cargo.toml b/crates/dbx-core/Cargo.toml index 8bf803ebc..fd4799cd9 100644 --- a/crates/dbx-core/Cargo.toml +++ b/crates/dbx-core/Cargo.toml @@ -28,7 +28,7 @@ webpki-roots = "0.26" rusqlite = { version = "0.32", features = ["bundled", "load_extension"] } mysql_async = { version = "0.36", default-features = false, features = ["default-rustls", "client_ed25519", "chrono", "rust_decimal"] } sqlparser = "0.62.0" -redis = { version = "0.32.2", features = ["tokio-comp", "tls-rustls", "tokio-rustls-comp", "sentinel", "cluster-async"] } +redis = { version = "0.32.2", features = ["tokio-comp", "tls-rustls", "tls-rustls-insecure", "tokio-rustls-comp", "sentinel", "cluster-async"] } rustls = { version = "0.23", features = ["aws-lc-rs"] } rustls-pemfile = "2.2" duckdb = "1.3.2"