Repository: storm Updated Branches: refs/heads/1.1.x-branch ef1222e9b -> ebbc4d778
Merge branch 'master07131533' of https://github.com/liu-zhaokun/storm into STORM-2627 STORM-2627: Update docs for storm.zookeeper.topology.auth.scheme Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/d42daf84 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/d42daf84 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/d42daf84 Branch: refs/heads/1.1.x-branch Commit: d42daf8443ae5a5f03e37eddad688ee08282fac3 Parents: ef1222e Author: Robert Evans <[email protected]> Authored: Fri Jul 21 10:23:41 2017 -0500 Committer: Robert Evans <[email protected]> Committed: Fri Jul 21 10:29:38 2017 -0500 ---------------------------------------------------------------------- storm-core/src/jvm/org/apache/storm/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/d42daf84/storm-core/src/jvm/org/apache/storm/Config.java ---------------------------------------------------------------------- diff --git a/storm-core/src/jvm/org/apache/storm/Config.java b/storm-core/src/jvm/org/apache/storm/Config.java index 43df951..467bea6 100644 --- a/storm-core/src/jvm/org/apache/storm/Config.java +++ b/storm-core/src/jvm/org/apache/storm/Config.java @@ -384,7 +384,7 @@ public class Config extends HashMap<String, Object> { public static final String STORM_ZOOKEEPER_AUTH_PAYLOAD="storm.zookeeper.auth.payload"; /** - * The topology Zookeeper authentication scheme to use, e.g. "digest". Defaults to no authentication. + * The topology Zookeeper authentication scheme to use, e.g. "digest". It is the internal config and user shouldn't set it. */ @isString public static final String STORM_ZOOKEEPER_TOPOLOGY_AUTH_SCHEME="storm.zookeeper.topology.auth.scheme"; @@ -2497,4 +2497,4 @@ public class Config extends HashMap<String, Object> { this.put(Config.TOPOLOGY_SCHEDULER_STRATEGY, clazz.getName()); } } -} \ No newline at end of file +}
