Updated Branches: refs/heads/trunk 8feadf734 -> 4c5220bb7
FLUME-1932. no-reload-conf command line param does not work. (Hari Shreedharan 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/4c5220bb Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/4c5220bb Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/4c5220bb Branch: refs/heads/trunk Commit: 4c5220bb7fe00fafcb203d230eb6edb2d1f2b660 Parents: 8feadf7 Author: Mike Percy <[email protected]> Authored: Thu Mar 14 18:35:12 2013 -0700 Committer: Mike Percy <[email protected]> Committed: Thu Mar 14 18:35:12 2013 -0700 ---------------------------------------------------------------------- .../java/org/apache/flume/node/Application.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/4c5220bb/flume-ng-node/src/main/java/org/apache/flume/node/Application.java ---------------------------------------------------------------------- diff --git a/flume-ng-node/src/main/java/org/apache/flume/node/Application.java b/flume-ng-node/src/main/java/org/apache/flume/node/Application.java index f501bd7..5250139 100644 --- a/flume-ng-node/src/main/java/org/apache/flume/node/Application.java +++ b/flume-ng-node/src/main/java/org/apache/flume/node/Application.java @@ -253,7 +253,7 @@ public class Application { File configurationFile = new File(commandLine.getOptionValue('f')); String agentName = commandLine.getOptionValue('n'); - boolean reload = !commandLine.hasOption("no-reload"); + boolean reload = !commandLine.hasOption("no-reload-conf"); if (commandLine.hasOption('h')) { new HelpFormatter().printHelp("flume-ng agent", options, true);
