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 4B7BB200C2A for ; Wed, 1 Mar 2017 18:02:00 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4A0A5160B78; Wed, 1 Mar 2017 17:02:00 +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 886BC160B56 for ; Wed, 1 Mar 2017 18:01:59 +0100 (CET) Received: (qmail 49633 invoked by uid 500); 1 Mar 2017 17:01:58 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 49609 invoked by uid 99); 1 Mar 2017 17:01:58 -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; Wed, 01 Mar 2017 17:01:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 59DC1DFDE6; Wed, 1 Mar 2017 17:01:58 +0000 (UTC) From: ctubbsii To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request #223: ACCUMULO-4409 Create AccumuloMonitorAppender Content-Type: text/plain Message-Id: <20170301170158.59DC1DFDE6@git1-us-west.apache.org> Date: Wed, 1 Mar 2017 17:01:58 +0000 (UTC) archived-at: Wed, 01 Mar 2017 17:02:00 -0000 Github user ctubbsii commented on a diff in the pull request: https://github.com/apache/accumulo/pull/223#discussion_r103735127 --- Diff: assemble/bin/accumulo --- @@ -127,13 +127,12 @@ function main() { JAVA=($ACCUMULO_JAVA_PREFIX $JAVA) fi - CLASSPATH="${lib}/accumulo-start.jar:${conf}:${lib}/slf4j-api.jar:${lib}/slf4j-log4j12.jar:${lib}/log4j.jar:${CLASSPATH}" - exec "${JAVA[@]}" "-Dapp=$ACCUMULO_CMD" \ + CLASSPATH="${conf}:${lib}/*:${CLASSPATH}" --- End diff -- The common case would be to have this be non-null, since the rest of the class path will likely be set in the env file. This keeps it simple and readable, and extra colons in the class path don't cause issues. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---