Skip to content

Commit c75a075

Browse files
committed
Scaffolding fix
1 parent e8686a5 commit c75a075

File tree

1 file changed

+2
-1
lines changed
  • assembler/src/common/modules/path_extend/pipeline

1 file changed

+2
-1
lines changed

assembler/src/common/modules/path_extend/pipeline/launcher.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,8 +855,9 @@ void PathExtendLauncher::Launch() {
855855
size_t curr_path_number = 0;
856856
size_t curr_scaffolding_iter = 1;
857857
while (prev_path_number != curr_path_number and curr_scaffolding_iter < max_scaffolding_iterations) {
858-
INFO("Starting scaffolding iteration " << curr_scaffolding_iter << " for " << prev_path_number << " paths");
858+
INFO("Starting scaffolding iteration " << curr_scaffolding_iter << " for " << polished_paths.size() << " paths");
859859
ScaffoldPaths(polished_paths);
860+
polished_paths.FilterEmptyPaths();
860861
curr_path_number = polished_paths.size();
861862
++curr_scaffolding_iter;
862863
}

0 commit comments

Comments
 (0)