Skip to content
Snippets Groups Projects
Commit 2d53b3ab authored by Jens Steidl's avatar Jens Steidl :baby_chick:
Browse files

- fix: bloom filter not properly replaced after reaching 80% cap

parent 8e108984
Branches
No related tags found
No related merge requests found
......@@ -373,6 +373,9 @@ sub stage2_for_ie {
$report_path->append_utf8(" none\n");
}
# write report
# return current bloom filter
return $bf;
}
sub stage2 ($$$$) {
......@@ -433,7 +436,7 @@ sub stage2 ($$$$) {
if (scalar @{$unseen} == 0) {$report_path->append_utf8("skipped because files already checked using IE $prev_ie\n");}
$prev_ie = $actual_ie;
###
stage2_for_ie($unseen, $bf, $map_path, $report_path, $stat);
$bf = stage2_for_ie($unseen, $bf, $map_path, $report_path, $stat);
}
say "";
$stat->{end} = time;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment