From 51efe3e82612528c03b63beedf1f402012f7fc97 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 12 Oct 2022 12:08:52 +0200 Subject: [PATCH] Update run instructions in example dataflows --- docs/src/getting-started.md | 2 +- examples/c++-dataflow/README.md | 2 +- examples/c-dataflow/README.md | 2 +- examples/python-dataflow/README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 85f2a837..a35c2111 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -119,5 +119,5 @@ Let's write the graph definition so that the nodes know who to communicate with. - Run the `dataflow`: ```bash -dora-coordinator run dataflow.yml dora-runtime +dora-coordinator --run-dataflow dataflow.yml dora-runtime ``` diff --git a/examples/c++-dataflow/README.md b/examples/c++-dataflow/README.md index 246435a6..596738a0 100644 --- a/examples/c++-dataflow/README.md +++ b/examples/c++-dataflow/README.md @@ -53,5 +53,5 @@ For a manual build, follow these steps: - Start the `dora-coordinator`, passing the paths to the dataflow file and the `dora-runtime` as arguments: ``` - ../../target/release/dora-coordinator run dataflow.yml ../../target/release/dora-runtime + ../../target/release/dora-coordinator --run-dataflow dataflow.yml ../../target/release/dora-runtime ``` diff --git a/examples/c-dataflow/README.md b/examples/c-dataflow/README.md index 47dbb6b6..4588a087 100644 --- a/examples/c-dataflow/README.md +++ b/examples/c-dataflow/README.md @@ -65,5 +65,5 @@ For a manual build, follow these steps: - Start the `dora-coordinator`, passing the paths to the dataflow file and the `dora-runtime` as arguments: ``` - ../../target/release/dora-coordinator run dataflow.yml ../../target/release/dora-runtime + ../../target/release/dora-coordinator --run-dataflow dataflow.yml ../../target/release/dora-runtime ``` diff --git a/examples/python-dataflow/README.md b/examples/python-dataflow/README.md index b9ece590..815a6f53 100644 --- a/examples/python-dataflow/README.md +++ b/examples/python-dataflow/README.md @@ -29,5 +29,5 @@ install.sh - Start the `dora-coordinator`, passing the paths to the dataflow file and the `dora-runtime` as arguments: ``` -../../target/release/dora-coordinator run dataflow.yml ../../target/release/dora-runtime +../../target/release/dora-coordinator --run-dataflow dataflow.yml ../../target/release/dora-runtime ```