-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge c63fd4f into sapling-pr-archive-shadaj
- Loading branch information
Showing
16 changed files
with
39 additions
and
40 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
// cannot use hydroflow::main because connect_local_blocking causes a deadlock | ||
#[tokio::main] | ||
async fn main() { | ||
let ports = hydroflow::util::cli::init().await; | ||
|
||
hydroflow::util::cli::launch_flow( | ||
hydroflow_plus_test::first_ten::first_ten_distributed_runtime!(&ports), | ||
hydroflow_plus::util::cli::launch( | ||
|ports| hydroflow_plus_test::first_ten::first_ten_distributed_runtime!(ports), | ||
) | ||
.await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
// cannot use hydroflow::main because connect_local_blocking causes a deadlock | ||
#[tokio::main] | ||
async fn main() { | ||
let ports = hydroflow::util::cli::init().await; | ||
|
||
hydroflow::util::cli::launch_flow(hydroflow_plus_test::cluster::many_to_many_runtime!(&ports)) | ||
hydroflow_plus::util::cli::launch(|ports| hydroflow_plus_test::cluster::many_to_many_runtime!(ports)) | ||
.await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
// cannot use hydroflow::main because connect_local_blocking causes a deadlock | ||
#[tokio::main] | ||
async fn main() { | ||
let ports = hydroflow::util::cli::init().await; | ||
|
||
hydroflow::util::cli::launch_flow(hydroflow_plus_test::networked::networked_basic_runtime!( | ||
&ports | ||
hydroflow_plus::util::cli::launch(|ports| hydroflow_plus_test::networked::networked_basic_runtime!( | ||
ports | ||
)) | ||
.await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
// cannot use hydroflow::main because connect_local_blocking causes a deadlock | ||
#[tokio::main] | ||
async fn main() { | ||
let ports = hydroflow::util::cli::init().await; | ||
|
||
hydroflow::util::cli::launch_flow(hydroflow_plus_test::cluster::simple_cluster_runtime!( | ||
&ports | ||
hydroflow_plus::util::cli::launch(|ports| hydroflow_plus_test::cluster::simple_cluster_runtime!( | ||
ports | ||
)) | ||
.await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters