Revert "Initial patch for redis version 7 support (#4572)"

This reverts commit a25bca0692.
This commit is contained in:
chrislu
2023-06-12 22:27:38 -07:00
parent 4527ead295
commit 3fbf4f6189
25 changed files with 35 additions and 43 deletions

View File

@@ -1,7 +1,7 @@
package redis
import (
"github.com/redis/go-redis/v9"
"github.com/go-redis/redis/v8"
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/util"
)

View File

@@ -1,7 +1,7 @@
package redis
import (
"github.com/redis/go-redis/v9"
"github.com/go-redis/redis/v8"
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/util"
)

View File

@@ -3,12 +3,11 @@ package redis
import (
"context"
"fmt"
"golang.org/x/exp/slices"
"strings"
"time"
"golang.org/x/exp/slices"
"github.com/redis/go-redis/v9"
"github.com/go-redis/redis/v8"
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/glog"

View File

@@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/redis/go-redis/v9"
"github.com/go-redis/redis/v8"
"github.com/seaweedfs/seaweedfs/weed/filer"
)