You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by hs...@apache.org on 2015/04/10 21:36:11 UTC

flume git commit: FLUME-2645. ipFilter.rules property name is wrong

Repository: flume
Updated Branches:
  refs/heads/trunk b68f5991d -> fc03456a1


FLUME-2645. ipFilter.rules property name is wrong

(Johny Rufus via Hari)


Project: http://git-wip-us.apache.org/repos/asf/flume/repo
Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/fc03456a
Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/fc03456a
Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/fc03456a

Branch: refs/heads/trunk
Commit: fc03456a1e4b1059b7fc6f29d96f9d047e28badb
Parents: b68f599
Author: Hari Shreedharan <hs...@apache.org>
Authored: Fri Apr 10 12:35:11 2015 -0700
Committer: Hari Shreedharan <hs...@apache.org>
Committed: Fri Apr 10 12:36:05 2015 -0700

----------------------------------------------------------------------
 flume-ng-doc/sphinx/FlumeUserGuide.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flume/blob/fc03456a/flume-ng-doc/sphinx/FlumeUserGuide.rst
----------------------------------------------------------------------
diff --git a/flume-ng-doc/sphinx/FlumeUserGuide.rst b/flume-ng-doc/sphinx/FlumeUserGuide.rst
index 9a53251..78b139e 100644
--- a/flume-ng-doc/sphinx/FlumeUserGuide.rst
+++ b/flume-ng-doc/sphinx/FlumeUserGuide.rst
@@ -732,7 +732,7 @@ keystore-password    --                The password for the Java keystore. Requi
 keystore-type        JKS               The type of the Java keystore. This can be "JKS" or "PKCS12".
 exclude-protocols    SSLv3             Space-separated list of SSL/TLS protocols to exclude. SSLv3 will always be excluded in addition to the protocols specified.
 ipFilter             false             Set this to true to enable ipFiltering for netty
-ipFilter.rules       --                Define N netty ipFilter pattern rules with this config.
+ipFilterRules        --                Define N netty ipFilter pattern rules with this config.
 ==================   ================  ===================================================
 
 Example for agent named a1:
@@ -746,15 +746,15 @@ Example for agent named a1:
   a1.sources.r1.bind = 0.0.0.0
   a1.sources.r1.port = 4141
 
-Example of ipFilter.rules
+Example of ipFilterRules
 
-ipFilter.rules defines N netty ipFilters separated by a comma a pattern rule must be in this format.
+ipFilterRules defines N netty ipFilters separated by a comma a pattern rule must be in this format.
 
 <'allow' or deny>:<'ip' or 'name' for computer name>:<pattern>
 or
 allow/deny:ip/name:pattern
 
-example: ipFilter.rules=allow:ip:127.*,allow:name:localhost,deny:ip:*
+example: ipFilterRules=allow:ip:127.*,allow:name:localhost,deny:ip:*
 
 Note that the first rule to match will apply as the example below shows from a client on the localhost