Lines 286-292
sub MapItemsToHoldRequests {
Link Here
|
286 |
if ($#branches_to_use > -1) { |
286 |
if ($#branches_to_use > -1) { |
287 |
@pull_branches = @branches_to_use; |
287 |
@pull_branches = @branches_to_use; |
288 |
} else { |
288 |
} else { |
289 |
@pull_branches = sort keys %items_by_branch; |
289 |
@pull_branches = shuffle keys %items_by_branch; |
290 |
} |
290 |
} |
291 |
foreach my $branch (@pull_branches) { |
291 |
foreach my $branch (@pull_branches) { |
292 |
next unless exists $items_by_branch{$branch} and |
292 |
next unless exists $items_by_branch{$branch} and |
293 |
- |
|
|