Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 52967200C40 for ; Thu, 16 Feb 2017 01:02:26 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5122A160B77; Thu, 16 Feb 2017 00:02:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A1588160B70 for ; Thu, 16 Feb 2017 01:02:25 +0100 (CET) Received: (qmail 32536 invoked by uid 500); 16 Feb 2017 00:02:24 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 32307 invoked by uid 99); 16 Feb 2017 00:02:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Feb 2017 00:02:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 66A3ADFC63; Thu, 16 Feb 2017 00:02:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mshuler@apache.org To: commits@cassandra.apache.org Date: Thu, 16 Feb 2017 00:02:25 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [02/15] cassandra git commit: Use portable stderr for java error in startup archived-at: Thu, 16 Feb 2017 00:02:26 -0000 Use portable stderr for java error in startup Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/cb090791 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/cb090791 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/cb090791 Branch: refs/heads/cassandra-2.2 Commit: cb090791c3d16011665f0f56afd66bbce2a0e40f Parents: a6237bf Author: Michael Shuler Authored: Mon Feb 13 12:46:02 2017 -0600 Committer: Michael Shuler Committed: Wed Feb 15 17:49:39 2017 -0600 ---------------------------------------------------------------------- CHANGES.txt | 1 + bin/cassandra | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/cb090791/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 9ce8d49..a3de742 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 2.1.17 + * Use portable stderr for java error in startup (CASSANDRA-13211) * Fix Thread Leak in OutboundTcpConnection (CASSANDRA-13204) * Coalescing strategy can enter infinite loop (CASSANDRA-13159) * Upgrade netty version to fix memory leak with client encryption (CASSANDRA-13114) http://git-wip-us.apache.org/repos/asf/cassandra/blob/cb090791/bin/cassandra ---------------------------------------------------------------------- diff --git a/bin/cassandra b/bin/cassandra index 4dca73e..957cc7d 100755 --- a/bin/cassandra +++ b/bin/cassandra @@ -99,7 +99,7 @@ else fi if [ -z $JAVA ] ; then - echo Unable to find java executable. Check JAVA_HOME and PATH environment variables. > /dev/stderr + echo Unable to find java executable. Check JAVA_HOME and PATH environment variables. >&2 exit 1; fi