in internal/routing/routing.go [136:144]
func (b *Batches) handleInput(ctx context.Context) {
for batches := range b.input {
for _, r := range b.routes {
if err := b.push(ctx, r, batches); err != nil {
b.log.Error(err.Error())
}
}
}
}