Reorder the options for the stream

This commit is contained in:
Thomas Risberg
2016-09-23 15:31:19 -04:00
parent 3b96efd1d8
commit 882fa71f98

View File

@@ -75,7 +75,7 @@ dataflow:>app import --uri http://bit.ly/stream-applications-kafka-maven
. Create the stream
+
```
dataflow:>stream create --name mysqlstream --definition "http --server.port=8787 | jdbc --spring.datasource.url='jdbc:mysql://localhost:3306/test' --tableName=names --columns=name --spring.datasource.driver-class-name=org.mariadb.jdbc.Driver" --deploy
dataflow:>stream create --name mysqlstream --definition "http --server.port=8787 | jdbc --tableName=names --columns=name --spring.datasource.driver-class-name=org.mariadb.jdbc.Driver --spring.datasource.url='jdbc:mysql://localhost:3306/test'" --deploy
Created and deployed new stream 'mysqlstream'
```