Browse Source

remove slash from zenoh prefix

tags/v0.2.0-rc
haixuanTao 2 years ago
parent
commit
764cd120a4
15 changed files with 15 additions and 15 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      binaries/cli/src/template/c/dataflow-template.yml
  3. +1
    -1
      binaries/cli/src/template/cxx/dataflow-template.yml
  4. +1
    -1
      binaries/cli/src/template/python/dataflow-template.yml
  5. +1
    -1
      binaries/cli/src/template/rust/dataflow-template.yml
  6. +1
    -1
      docs/src/dataflow-config.md
  7. +1
    -1
      examples/benchmark/dataflow.yml
  8. +1
    -1
      examples/c++-dataflow/dataflow.yml
  9. +1
    -1
      examples/c-dataflow/dataflow.yml
  10. +1
    -1
      examples/python-dataflow/dataflow.yml
  11. +1
    -1
      examples/python-dataflow/dataflow_without_webcam.yml
  12. +1
    -1
      examples/python-operator-dataflow/dataflow.yml
  13. +1
    -1
      examples/python-operator-dataflow/dataflow_without_webcam.yml
  14. +1
    -1
      examples/rust-dataflow-url/dataflow.yml
  15. +1
    -1
      examples/rust-dataflow/dataflow.yml

+ 1
- 1
README.md View File

@@ -96,7 +96,7 @@ You need to add the created operators/nodes to your dataflow YAML file.
```yaml
communication:
zenoh:
prefix: /abc_project
prefix: abc_project

nodes:
- id: op_1


+ 1
- 1
binaries/cli/src/template/c/dataflow-template.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /___name___
prefix: ___name___

nodes:
- id: runtime-node_1


+ 1
- 1
binaries/cli/src/template/cxx/dataflow-template.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /___name___
prefix: ___name___

nodes:
- id: runtime-node_1


+ 1
- 1
binaries/cli/src/template/python/dataflow-template.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /___name___
prefix: ___name___

nodes:
- id: op_1


+ 1
- 1
binaries/cli/src/template/rust/dataflow-template.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /___name___
prefix: ___name___

nodes:
- id: runtime-node_1


+ 1
- 1
docs/src/dataflow-config.md View File

@@ -108,7 +108,7 @@ The mandatory `communication` key specifies how dora nodes and operators should
```yaml
communication:
zenoh:
prefix: /some-unique-prefix
prefix: some-unique-prefix
```

The specified `prefix` is added to all pub/sub topics. It is useful for filtering messages (e.g. in a logger) when other applications use `zenoh` in parallel. Dora will extend the given prefix with a newly generated UUID on each run, to ensure that multiple instances of the same dataflow run concurrently without interfering with each other.


+ 1
- 1
examples/benchmark/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /benchmark-example
prefix: benchmark-example

nodes:
- id: rust-node


+ 1
- 1
examples/c++-dataflow/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-cxx-dataflow
prefix: example-cxx-dataflow

nodes:
- id: cxx-node-rust-api


+ 1
- 1
examples/c-dataflow/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-c-dataflow
prefix: example-c-dataflow

nodes:
- id: c_node


+ 1
- 1
examples/python-dataflow/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-python-dataflow
prefix: example-python-dataflow

nodes:
- id: webcam


+ 1
- 1
examples/python-dataflow/dataflow_without_webcam.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-python-no-webcam-dataflow
prefix: example-python-no-webcam-dataflow

nodes:
- id: no_webcam


+ 1
- 1
examples/python-operator-dataflow/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-python-dataflow
prefix: example-python-dataflow

nodes:
- id: webcam


+ 1
- 1
examples/python-operator-dataflow/dataflow_without_webcam.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-python-no-webcam-dataflow
prefix: example-python-no-webcam-dataflow

nodes:
- id: no_webcam


+ 1
- 1
examples/rust-dataflow-url/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-rust-dataflow
prefix: example-rust-dataflow

nodes:
- id: rust-node


+ 1
- 1
examples/rust-dataflow/dataflow.yml View File

@@ -1,6 +1,6 @@
communication:
zenoh:
prefix: /example-rust-dataflow
prefix: example-rust-dataflow

daemon_config: Tcp # or Shmem



Loading…
Cancel
Save