fix a few edges that were pointing the wrong way
Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/c907f058
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/c907f058
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/c907f058
Branch: refs/heads/master
Commit: c907f058f913e15a2f7b73fab927ef0293ec18e5
Parents: 2a4a96d
Author: Steve Blackmon @steveblackmon <sblackmon@apache.org>
Authored: Mon Apr 25 16:18:38 2016 -0500
Committer: Steve Blackmon @steveblackmon <sblackmon@apache.org>
Committed: Mon Apr 25 16:18:38 2016 -0500
----------------------------------------------------------------------
.../streams-persist-kinesis/src/main/resources/components.dot | 2 +-
.../streams-persist-filebuffer/src/main/resources/components.dot | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c907f058/streams-contrib/streams-amazon-aws/streams-persist-kinesis/src/main/resources/components.dot
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-amazon-aws/streams-persist-kinesis/src/main/resources/components.dot
b/streams-contrib/streams-amazon-aws/streams-persist-kinesis/src/main/resources/components.dot
index 3a20456..bae342b 100644
--- a/streams-contrib/streams-amazon-aws/streams-persist-kinesis/src/main/resources/components.dot
+++ b/streams-contrib/streams-amazon-aws/streams-persist-kinesis/src/main/resources/components.dot
@@ -27,5 +27,5 @@ digraph g {
processors -> persisters_kinesis_writer [label="StreamsDatum"]
persisters_kinesis_reader -> processors [label="StreamsDatum[String]"]
persisters_kinesis_writer -> kinesis
- persisters_kinesis_reader <- kinesis
+ kinesis -> persisters_kinesis_reader
}
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c907f058/streams-contrib/streams-persist-filebuffer/src/main/resources/components.dot
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-persist-filebuffer/src/main/resources/components.dot
b/streams-contrib/streams-persist-filebuffer/src/main/resources/components.dot
index d082398..c12b161 100644
--- a/streams-contrib/streams-persist-filebuffer/src/main/resources/components.dot
+++ b/streams-contrib/streams-persist-filebuffer/src/main/resources/components.dot
@@ -27,5 +27,5 @@ digraph g {
processors -> persisters_filebuffer_writer [label="StreamsDatum"]
persisters_filebuffer_reader -> processors [label="StreamsDatum[String]"]
persisters_filebuffer_writer -> filebuffer
- persisters_filebuffer_reader <- filebuffer
+ filebuffer -> persisters_filebuffer_reader
}
|