From a05fe7bf0a2b2d116a500a3694946171f2ed1081 Mon Sep 17 00:00:00 2001 From: Kevin Wan Date: Tue, 7 Mar 2023 14:58:04 +0800 Subject: [PATCH] chore: remove optional in redis config (#2979) --- core/stores/redis/conf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/stores/redis/conf.go b/core/stores/redis/conf.go index 00a7ff3d..bdf9afef 100644 --- a/core/stores/redis/conf.go +++ b/core/stores/redis/conf.go @@ -25,7 +25,7 @@ type ( // A RedisKeyConf is a redis config with key. RedisKeyConf struct { RedisConf - Key string `json:",optional"` + Key string } )