Skip to content

Commit

Permalink
why are my tests not running
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Ho authored and Colin Ho committed Oct 26, 2024
1 parent fc26098 commit 8767751
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ impl PipelineNode for IntermediateNode {
}
let (destination_sender, destination_receiver) = create_channel(1);
let counting_sender = CountingSender::new(destination_sender, self.runtime_stats.clone());

let morsel_size = runtime_handle.determine_morsel_size(self.intermediate_op.morsel_size());
let (output_senders, mut output_receiver) =
create_ordering_aware_receiver_channel(maintain_order, num_workers);
let worker_sender =
self.spawn_workers(num_workers, output_senders, runtime_handle, maintain_order);
let morsel_size = runtime_handle.determine_morsel_size(self.intermediate_op.morsel_size());

runtime_handle.spawn(
dispatch(child_result_receivers, worker_sender, morsel_size),
self.intermediate_op.name(),
Expand Down

0 comments on commit 8767751

Please sign in to comment.