From 20f85b21f19b83ce120d63e4ca425d6d6c4a2e8b Mon Sep 17 00:00:00 2001 From: Monet Lee Date: Tue, 29 Jul 2025 12:22:51 +0800 Subject: [PATCH] fix: solve redis config db field in v3.8.3-patch --- pkg/common/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/common/config/config.go b/pkg/common/config/config.go index 429081bf5..f5ff8f9bb 100644 --- a/pkg/common/config/config.go +++ b/pkg/common/config/config.go @@ -358,7 +358,7 @@ type Redis struct { Username string `mapstructure:"username"` Password string `mapstructure:"password"` ClusterMode bool `mapstructure:"clusterMode"` - DB int `mapstructure:"storage"` + DB int `mapstructure:"db"` MaxRetry int `mapstructure:"maxRetry"` PoolSize int `mapstructure:"poolSize"` }