Browse Source

Remove introduced typo in PR

tags/v0.3.1-rc5
haixuanTao 2 years ago
parent
commit
0870f775ee
2 changed files with 2 additions and 3 deletions
  1. +1
    -2
      binaries/cli/src/template/python/dataflow-template.yml
  2. +1
    -1
      binaries/daemon/src/spawn.rs

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

@@ -16,8 +16,7 @@ nodes:

- id: custom-node_1
custom:
source: python
args: ./node_1/node_1.py
source: ./node_1/node_1.py
inputs:
tick: dora/timer/secs/1
input-1: op_1/some-output


+ 1
- 1
binaries/daemon/src/spawn.rs View File

@@ -133,7 +133,7 @@ pub async fn spawn_node(
.spawn()
.wrap_err_with(move || {
format!(
"failed to run `{}` with args `{}.",
"failed to run `{}` with args `{}`",
n.source,
n.args.as_deref().unwrap_or_default(),
)


Loading…
Cancel
Save