fix Error

This commit is contained in:
白茶清欢 2024-06-18 15:04:38 +08:00
parent 2084fdaecb
commit 929fab208a

View File

@ -30,7 +30,7 @@ func (c *cache) Set(ctx *redis.Context, key string, value interface{}) error {
rc *redis.RealClient rc *redis.RealClient
) )
if rc, err = redis.Client.GetRedisClient(ctx.Flag); nil != err { if rc, err = redis.Client.GetRedisClientWithError(ctx.Flag); nil != err {
return err return err
} }
return rc.Master.Set(nil, key, value, -1).Err() return rc.Master.Set(nil, key, value, -1).Err()