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 335e3d3 commit 262932cCopy full SHA for 262932c
process.go
@@ -64,7 +64,9 @@ func (p *processImpl) startBatchConsumingProcess(ctx context.Context) error {
64
65
defer close(inCh)
66
67
+ p.wg.Add(1)
68
go func() {
69
+ defer p.wg.Done()
70
batchConsumer := chainBatchConsumerInterceptors(p.BatchConsumer, p.BatchConsumerInterceptors...)
71
72
p.Logger.Print("Start batch consuming process")
0 commit comments