Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D616D10622 for ; Tue, 4 Feb 2014 22:58:52 +0000 (UTC) Received: (qmail 46228 invoked by uid 500); 4 Feb 2014 22:58:25 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 45810 invoked by uid 500); 4 Feb 2014 22:58:18 -0000 Mailing-List: contact commits-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 commits@accumulo.apache.org Received: (qmail 45756 invoked by uid 99); 4 Feb 2014 22:58:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Feb 2014 22:58:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 926FB824E1A; Tue, 4 Feb 2014 22:58:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Tue, 04 Feb 2014 22:58:16 -0000 Message-Id: <11c7d6aaa8464efd9a88aef14e4ce0c3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/29] git commit: ACCUMULO-2060 Jars which are expected to be reloaded should go in lib/ext, not lib Updated Branches: refs/heads/1.5.1-SNAPSHOT 9ff6eea41 -> 5eb19c675 refs/heads/1.6.0-SNAPSHOT 279024fe9 -> a72dd7867 refs/heads/master 47cdb9227 -> 767700827 ACCUMULO-2060 Jars which are expected to be reloaded should go in lib/ext, not lib Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/55e864ce Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/55e864ce Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/55e864ce Branch: refs/heads/master Commit: 55e864ce9ac6a5f643ddbacfb8d7a3a98c5c90b2 Parents: 43bf128 Author: Josh Elser Authored: Tue Feb 4 14:15:49 2014 -0500 Committer: Josh Elser Committed: Tue Feb 4 14:15:49 2014 -0500 ---------------------------------------------------------------------- .../java/org/apache/accumulo/test/functional/ClassLoaderIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/55e864ce/test/src/test/java/org/apache/accumulo/test/functional/ClassLoaderIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/ClassLoaderIT.java b/test/src/test/java/org/apache/accumulo/test/functional/ClassLoaderIT.java index 80efab8..6f39dc5 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/ClassLoaderIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/ClassLoaderIT.java @@ -56,7 +56,7 @@ public class ClassLoaderIT extends SimpleMacIT { bw.close(); scanCheck(c, tableName, "Test"); FileSystem fs = FileSystem.get(CachedConfiguration.getInstance()); - Path jarPath = new Path(rootPath() + "/lib/Test.jar"); + Path jarPath = new Path(rootPath() + "/lib/ext/Test.jar"); fs.copyFromLocalFile(new Path(System.getProperty("user.dir") + "/src/test/resources/TestCombinerX.jar"), jarPath); UtilWaitThread.sleep(1000); IteratorSetting is = new IteratorSetting(10, "TestCombiner", "org.apache.accumulo.test.functional.TestCombiner");