Skip to content

Commit

Permalink
use 1-1 merge policy randomly
Browse files Browse the repository at this point in the history
  • Loading branch information
vigyasharma committed Apr 29, 2022
1 parent 6350177 commit a43cb81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public MergeSpecification findMerges(

@Override
public MergeSpecification findMerges(CodecReader... readers) throws IOException {
if (true || random.nextBoolean() == true) {
if (random.nextBoolean() == true) {
return super.findMerges(readers);
} else {
// create a oneMerge for each reader to let them get concurrently processed by addIndexes()
Expand Down

0 comments on commit a43cb81

Please sign in to comment.