View | Details | Raw Unified | Return to bug 28833
Collapse All | Expand All

(-)a/C4/HoldsQueue.pm (-1 / +1 lines)
Lines 201-206 sub CreateQueue { Link Here
201
    # Split the list of bibs into groups to run in parallel
201
    # Split the list of bibs into groups to run in parallel
202
    if ( $loops > 1 ) {
202
    if ( $loops > 1 ) {
203
        my $bibs_per_chunk = ceil( scalar @$bibs_with_pending_requests / $loops );
203
        my $bibs_per_chunk = ceil( scalar @$bibs_with_pending_requests / $loops );
204
        $bibs_per_chunk = @$bibs_with_pending_requests if @$bibs_with_pending_requests <= $bibs_per_chunk;
204
        my @chunks;
205
        my @chunks;
205
206
206
        push( @chunks, [ splice @$bibs_with_pending_requests, 0, $bibs_per_chunk ] ) while @$bibs_with_pending_requests;
207
        push( @chunks, [ splice @$bibs_with_pending_requests, 0, $bibs_per_chunk ] ) while @$bibs_with_pending_requests;
207
- 

Return to bug 28833