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 D3F33109DE for ; Thu, 23 Jan 2014 14:23:41 +0000 (UTC) Received: (qmail 69552 invoked by uid 500); 23 Jan 2014 14:23:41 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 69447 invoked by uid 500); 23 Jan 2014 14:23:39 -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 69047 invoked by uid 99); 23 Jan 2014 14:23:28 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jan 2014 14:23:28 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 454B58ACBF7; Thu, 23 Jan 2014 14:23:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mdrob@apache.org To: commits@accumulo.apache.org Date: Thu, 23 Jan 2014 14:23:27 -0000 Message-Id: <85b9c6c3068147c39e29d2197c24df7a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/6] git commit: ACCUMULO-2224 link TODOs to new JIRAs Updated Branches: refs/heads/1.4.5-SNAPSHOT f778dcf50 -> de7d19845 refs/heads/1.5.1-SNAPSHOT c4cd3b1bc -> fbed7afab refs/heads/1.6.0-SNAPSHOT e7e5c0097 -> 182f15260 ACCUMULO-2224 link TODOs to new JIRAs Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/de7d1984 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/de7d1984 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/de7d1984 Branch: refs/heads/1.4.5-SNAPSHOT Commit: de7d198459ba745b0d2d5a3c60b2be7286742f39 Parents: f778dcf Author: Mike Drob Authored: Thu Jan 23 09:18:45 2014 -0500 Committer: Mike Drob Committed: Thu Jan 23 09:18:45 2014 -0500 ---------------------------------------------------------------------- .../test/java/org/apache/accumulo/core/util/AddressUtilTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/de7d1984/src/core/src/test/java/org/apache/accumulo/core/util/AddressUtilTest.java ---------------------------------------------------------------------- diff --git a/src/core/src/test/java/org/apache/accumulo/core/util/AddressUtilTest.java b/src/core/src/test/java/org/apache/accumulo/core/util/AddressUtilTest.java index e71ba0e..6268fe9 100644 --- a/src/core/src/test/java/org/apache/accumulo/core/util/AddressUtilTest.java +++ b/src/core/src/test/java/org/apache/accumulo/core/util/AddressUtilTest.java @@ -61,7 +61,7 @@ public class AddressUtilTest extends TestCase { log.info("Checking that we can get the ttl on dns failures."); int expectedTtl = 20; boolean expectException = false; - /* TODO replace all of this with Powermock on the Security class */ + /* TODO ACCUMULO-2242 replace all of this with Powermock on the Security class */ try { Security.setProperty("networkaddress.cache.negative.ttl", Integer.toString(expectedTtl)); } catch (SecurityException exception) { @@ -104,7 +104,7 @@ public class AddressUtilTest extends TestCase { public void testGetNegativeTtlThrowsOnForever() { log.info("When DNS is cached forever, we should throw."); - /* TODO replace all of this with Powermock on the Security class */ + /* TODO ACCUMULO-2242 replace all of this with Powermock on the Security class */ try { Security.setProperty("networkaddress.cache.negative.ttl", "-1"); } catch (SecurityException exception) {