Repository: flume Updated Branches: refs/heads/trunk 7013708ba -> 19664c3c5
FLUME-2948. docs: Fix parameters on Replicating Channel Selector example This closes #55 (Niccolo Becchi via Mike Percy) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/19664c3c Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/19664c3c Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/19664c3c Branch: refs/heads/trunk Commit: 19664c3c559c7d0360f7bb5a64eff88b8f25a80d Parents: 7013708 Author: Niccolo Becchi <[email protected]> Authored: Fri Jul 8 11:18:47 2016 +0100 Committer: Mike Percy <[email protected]> Committed: Fri Jul 8 17:41:58 2016 -0700 ---------------------------------------------------------------------- flume-ng-doc/sphinx/FlumeUserGuide.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/19664c3c/flume-ng-doc/sphinx/FlumeUserGuide.rst ---------------------------------------------------------------------- diff --git a/flume-ng-doc/sphinx/FlumeUserGuide.rst b/flume-ng-doc/sphinx/FlumeUserGuide.rst index c4d7c6c..f9ca1b2 100644 --- a/flume-ng-doc/sphinx/FlumeUserGuide.rst +++ b/flume-ng-doc/sphinx/FlumeUserGuide.rst @@ -3010,9 +3010,9 @@ Example for agent named a1 and it's source called r1: a1.sources = r1 a1.channels = c1 c2 c3 - a1.source.r1.selector.type = replicating - a1.source.r1.channels = c1 c2 c3 - a1.source.r1.selector.optional = c3 + a1.sources.r1.selector.type = replicating + a1.sources.r1.channels = c1 c2 c3 + a1.sources.r1.selector.optional = c3 In the above configuration, c3 is an optional channel. Failure to write to c3 is simply ignored. Since c1 and c2 are not marked optional, failure to write to
