File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ func (s *Consumer) Queue(task core.QueuedMessage) error { //nolint:stylecheck
52
52
if atomic .LoadInt32 (& s .stopFlag ) == 1 {
53
53
return ErrQueueShutdown
54
54
}
55
- if s .count >= s .capacity {
55
+ if s .capacity > 0 && s . count >= s .capacity {
56
56
return errMaxCapacity
57
57
}
58
58
Original file line number Diff line number Diff line change 8
8
)
9
9
10
10
var (
11
- defaultQueueSize = 4096
11
+ defaultCapacity = 0
12
12
defaultWorkerCount = runtime .NumCPU ()
13
13
defaultNewLogger = NewLogger ()
14
14
defaultFn = func (context.Context , core.QueuedMessage ) error { return nil }
@@ -87,7 +87,7 @@ type Options struct {
87
87
func NewOptions (opts ... Option ) * Options {
88
88
o := & Options {
89
89
workerCount : defaultWorkerCount ,
90
- queueSize : defaultQueueSize ,
90
+ queueSize : defaultCapacity ,
91
91
logger : defaultNewLogger ,
92
92
worker : nil ,
93
93
fn : defaultFn ,
You can’t perform that action at this time.
0 commit comments