Updated Branches: refs/heads/trunk 8759c3b15 -> 73e77a410
FLUME-1523. Allow -X java opts to be passed to the agent on the command line. (Mike Percy via Hari Shreedharan) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/73e77a41 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/73e77a41 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/73e77a41 Branch: refs/heads/trunk Commit: 73e77a410a1a5b2ad9c0d202a0308d7c29f92fa7 Parents: 8759c3b Author: Hari Shreedharan <[email protected]> Authored: Wed Aug 29 15:17:36 2012 -0700 Committer: Hari Shreedharan <[email protected]> Committed: Wed Aug 29 15:17:36 2012 -0700 ---------------------------------------------------------------------- bin/flume-ng | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/73e77a41/bin/flume-ng ---------------------------------------------------------------------- diff --git a/bin/flume-ng b/bin/flume-ng index 04b5cae..121adf3 100755 --- a/bin/flume-ng +++ b/bin/flume-ng @@ -276,6 +276,9 @@ while [ -n "$*" ] ; do -D*) opt_java_props="$opt_java_props $arg" ;; + -X*) + opt_java_props="$opt_java_props $arg" + ;; *) args="$args $arg" ;;
