Skip to content

Commit

Permalink
fix: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hunjixin committed Jul 24, 2024
1 parent 24cb44d commit f701555
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions runner/compute_data_runner/src/program.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ impl BatchProgram {
}
new_batch.size = entry_count;

//write another
//write outgoing
if new_batch.size >0 {
if let Err(e) = out_going_tx.send(new_batch) {
error!("send data {}", e);
Expand Down Expand Up @@ -272,7 +272,7 @@ impl BatchProgram {
}
new_batch.size = entry_count;

//write another
//write outgoing
if new_batch.size >0 {
if let Err(e) = out_going_tx.send(new_batch) {
error!("send data {}", e);
Expand All @@ -295,6 +295,7 @@ impl BatchProgram {
});
Ok(())
}

pub(crate) async fn track_output_data(&mut self) ->Result<()> {
let upstreams = self.upstreams.as_ref().expect("input output node must have incoming nodes");

Expand Down

0 comments on commit f701555

Please sign in to comment.