Fixed broken fuzzer

This commit is contained in:
AdamKorcz 2021-02-05 21:45:09 +00:00
parent 89da47939e
commit 4a9b7ce79a
1 changed files with 3 additions and 2 deletions

View File

@ -4,16 +4,17 @@ package fuzz
import ( import (
"context" "context"
"github.com/go-redis/redis"
"time" "time"
) )
var ( var (
ctx = context.Background() ctx = context.Background()
rdb *Client rdb *redis.Client
) )
func init() { func init() {
rdb = NewClient(&Options{ rdb = redis.NewClient(&redis.Options{
Addr: ":6379", Addr: ":6379",
DialTimeout: 10 * time.Second, DialTimeout: 10 * time.Second,
ReadTimeout: 10 * time.Second, ReadTimeout: 10 * time.Second,