From 882fa71f98300b9ec5c5ce772d3e30ca503a206b Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Fri, 23 Sep 2016 15:31:19 -0400 Subject: [PATCH] Reorder the options for the stream --- streaming/http-to-mysql/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streaming/http-to-mysql/README.adoc b/streaming/http-to-mysql/README.adoc index ff28dd1..901216a 100644 --- a/streaming/http-to-mysql/README.adoc +++ b/streaming/http-to-mysql/README.adoc @@ -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' ```