kevinkelin commented on issue #15136:
URL:
https://github.com/apache/dolphinscheduler/issues/15136#issuecomment-1801458623
> > > Hi @kevinkelin , according to the above logs of `node_one`, seems like
it doesn't print `${setValue(key=value}`.
> >
> >
> > if setValue work well, there will not print any thing, but in this case,
it print `world)}`
>
> You should make sure `${setValue(key=value}` exists in stdout of
`node_one`.
I resolve this issue
node_one
```python
s = "hello \n world"
print("${setValue(message=%s)}"%repr(s))
```
node_two
```shell
echo "${message}"
echo "hi"
```
In node_onw, python task must use `repr(s)` for formating string
so consider about how to optimize this Issue.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]