From d5422ab5b04c4a12f615af56223c2ea9dc9661bf Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 29 Mar 2025 15:59:32 +0800 Subject: [PATCH] :bug: Fix nil rdl --- pkg/nex/cachekit/rdb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/nex/cachekit/rdb.go b/pkg/nex/cachekit/rdb.go index 766afa1..4028079 100644 --- a/pkg/nex/cachekit/rdb.go +++ b/pkg/nex/cachekit/rdb.go @@ -15,7 +15,7 @@ import ( // And able to recreate the conn with different options var ( rdc *redis.Client - rdl *sync.Mutex + rdl sync.Mutex ) type Conn struct {