Skip to content

Commit

Permalink
Increase buffer size (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
prokaktus authored Mar 16, 2021
1 parent 1078926 commit c001b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func (p *MinQueriesPlanner) generatePlans(ctx *PlanningContext, query *ast.Query
plans = append(plans, plan)

// a channel to register new steps
stepCh := make(chan *newQueryPlanStepPayload, 10)
stepCh := make(chan *newQueryPlanStepPayload, 50)

// a chan to get errors
errCh := make(chan error)
Expand Down

0 comments on commit c001b08

Please sign in to comment.