summaryrefslogtreecommitdiffstats
path: root/modules/cache/cache_redis.go
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.io>2023-04-13 18:41:04 -0400
committerGitHub <noreply@github.com>2023-04-13 18:41:04 -0400
commit985f76dc4b0692c4d6c6f37e82500ef859557c16 (patch)
treedec7e6ba9208954eaf2c33777ca0fe2e7ae989fd /modules/cache/cache_redis.go
parent5b9557aef59b190c55de9ea218bf51152bc04786 (diff)
downloadgitea-985f76dc4b0692c4d6c6f37e82500ef859557c16.tar.gz
gitea-985f76dc4b0692c4d6c6f37e82500ef859557c16.zip
Update redis library to support redis v7 (#24114)
Diffstat (limited to 'modules/cache/cache_redis.go')
-rw-r--r--modules/cache/cache_redis.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cache/cache_redis.go b/modules/cache/cache_redis.go
index 8e056ff2ec..f22482de48 100644
--- a/modules/cache/cache_redis.go
+++ b/modules/cache/cache_redis.go
@@ -12,7 +12,7 @@ import (
"code.gitea.io/gitea/modules/nosql"
"gitea.com/go-chi/cache"
- "github.com/go-redis/redis/v8"
+ "github.com/redis/go-redis/v9"
)
// RedisCacher represents a redis cache adapter implementation.