Fix typo in python recipe

Resolves #104
This commit is contained in:
Sabby Anandan
2019-06-04 15:43:41 -07:00
committed by Christian Tzolov
parent 4686ceb8d8
commit 15b91f35cf
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ INFO 1 --- [container-0-C-1] log-sink : hello wo
Post and log a reversed string:
```
dataflow:>stream create --name test --definition "http --server.port=32123 | python-processor --reverestring=true | log"
dataflow:>stream create --name test --definition "http --server.port=32123 | python-processor --reversestring=true | log"
dataflow:>stream deploy test --properties "deployer.http.kubernetes.createNodePort=32123"
dataflow:>http post --target http://192.168.99.104:32123 --data "hello world"
> POST (text/plain) http://192.168.99.104:32123 hello world

View File

@@ -30,4 +30,4 @@ def get_output_channel():
return get_cmd_arg("spring.cloud.stream.bindings.output.destination")
def get_reverse_string():
return get_cmd_arg("reverestring")
return get_cmd_arg("reversestring")