We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39dfca3 commit 3b648acCopy full SHA for 3b648ac
options.go
@@ -149,7 +149,6 @@ func WithDebug() Option {
149
150
func newOptions(opts ...Option) options {
151
defaultOpts := options{
152
- addr: "127.0.0.1:6379",
153
channelName: "queue",
154
// default channel size in go-redis package
155
channelSize: 100,
redis.go
@@ -42,7 +42,7 @@ func NewWorker(opts ...Option) *Worker {
42
}
43
44
if w.opts.debug {
45
- godump.Dump(w.opts)
+ _ = godump.Dump(w.opts)
46
47
48
options := &redis.Options{
0 commit comments