Skip to content

Commit

Permalink
fix: add return point length after plugin completes
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Feb 28, 2024
1 parent 3736494 commit ff4238e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions server/algorithms/src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,10 @@ impl Plugin {
))
} else {
log::info!(
"{} child process finished in {}s",
"{} child process finished in {}s with {} points",
self.plugin,
time.elapsed().as_secs_f32()
time.elapsed().as_secs_f32(),
results.len()
);
// Ok(output_indexes.into_iter().map(|i| points[i]).collect())
Ok(results)
Expand Down

0 comments on commit ff4238e

Please sign in to comment.