Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/letsfire/redigo/v2
module github.com/fat39/redigo/v2

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion mode/alone/alone.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package alone
import (
"github.com/gomodule/redigo/redis"

"github.com/letsfire/redigo/v2"
"github.com/fat39/redigo/v2"
)

type aloneMode struct{ pool redis.Pool }
Expand Down
2 changes: 1 addition & 1 deletion mode/alone/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package alone
import (
"github.com/gomodule/redigo/redis"

"github.com/letsfire/redigo/v2"
"github.com/fat39/redigo/v2"
)

type options struct {
Expand Down
3 changes: 2 additions & 1 deletion mode/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/gomodule/redigo/redis"
"github.com/mna/redisc"

"github.com/letsfire/redigo/v2"
"github.com/fat39/redigo/v2"
)

type clusterMode struct {
Expand Down Expand Up @@ -53,6 +53,7 @@ func New(optFuncs ...OptFunc) redigo.ModeInterface {
return pool, nil
},
}
rc.Refresh()
return &clusterMode{rc: rc}
}

Expand Down
2 changes: 1 addition & 1 deletion mode/cluster/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/gomodule/redigo/redis"

"github.com/letsfire/redigo/v2"
"github.com/fat39/redigo/v2"
)

type options struct {
Expand Down
2 changes: 1 addition & 1 deletion mode/sentinel/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package sentinel
import (
"github.com/gomodule/redigo/redis"

"github.com/letsfire/redigo/v2"
"github.com/fat39/redigo/v2"
)

type options struct {
Expand Down
2 changes: 1 addition & 1 deletion mode/sentinel/sentinel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/FZambia/sentinel"
"github.com/gomodule/redigo/redis"

"github.com/letsfire/redigo/v2"
"github.com/fat39/redigo/v2"
)

type sentinelMode struct {
Expand Down