Repository: hbase Updated Branches: refs/heads/0.98 0f59698f2 -> 4b1c64ec7 refs/heads/branch-1 decc9b9c3 -> 5bee2930e refs/heads/branch-1.1 918a01028 -> 607dbf1f3 refs/heads/master 4182fc1a9 -> f2e1238f9
HBASE-13490 echo ulimit output to log during daemon foreground start. Signed-off-by: Sean Busbey <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f2e1238f Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f2e1238f Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f2e1238f Branch: refs/heads/master Commit: f2e1238f9812ebe0257ad4b3af1200230231529a Parents: 4182fc1 Author: Y. SREENIVASULU REDDY <[email protected]> Authored: Fri Apr 17 11:16:12 2015 +0530 Committer: Sean Busbey <[email protected]> Committed: Mon Apr 27 01:31:43 2015 -0500 ---------------------------------------------------------------------- bin/hbase-daemon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/f2e1238f/bin/hbase-daemon.sh ---------------------------------------------------------------------- diff --git a/bin/hbase-daemon.sh b/bin/hbase-daemon.sh index e411dad..fa5c9fd 100755 --- a/bin/hbase-daemon.sh +++ b/bin/hbase-daemon.sh @@ -204,7 +204,7 @@ case $startStop in (foreground_start) # Add to the command log file vital stats on our environment. echo "`date` Starting $command on `hostname`" >> ${HBASE_LOGLOG} - `ulimit -a` >> "$HBASE_LOGLOG" 2>&1 + echo "`ulimit -a`" >> "$HBASE_LOGLOG" 2>&1 # in case the parent shell gets the kill make sure to trap signals. # Only one will get called. Either the trap or the flow will go through. trap cleanAfterRun SIGHUP SIGINT SIGTERM EXIT
