Update Redis client used for bucket notifications (#7213)

Current Redis client used https://github.com/garyburd/redigo/
has been archived and further development is done at
https://github.com/gomodule/redigo

This commit updates the client library accordingly.

Fixes #6392
This commit is contained in:
Nitish Tiwari
2019-02-11 19:06:27 +05:30
committed by GitHub
parent a8cd70f3e5
commit 13c3b8afe2
19 changed files with 1379 additions and 624 deletions

View File

@@ -23,7 +23,7 @@ import (
"strings"
"time"
"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
"github.com/minio/minio/pkg/event"
xnet "github.com/minio/minio/pkg/net"
)