Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
fixup! fix: for upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Jun 19, 2024
1 parent 24a1958 commit 1efca9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flow/src/first_ten.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub fn first_ten<'a, D: LocalDeploy<'a>>(
) {
let process = flow.process(process_spec);

let numbers = process.source_iter(q!(0..10));
let numbers = flow.source_iter(&process, q!(0..10));
numbers.for_each(q!(|n| println!("{}", n)));
}

Expand Down
2 changes: 1 addition & 1 deletion flow/src/first_ten_distributed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub fn first_ten_distributed<'a, D: Deploy<'a>>(
let process = flow.process(process_spec);
let second_process = flow.process(process_spec);

let numbers = process.source_iter(q!(0..10));
let numbers = flow.source_iter(&process, q!(0..10));
numbers
.send_bincode(&second_process)
.for_each(q!(|n| println!("{}", n)));
Expand Down

0 comments on commit 1efca9b

Please sign in to comment.