Return-Path: X-Original-To: apmail-curator-commits-archive@minotaur.apache.org Delivered-To: apmail-curator-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 30AAB1783C for ; Sun, 23 Aug 2015 04:40:32 +0000 (UTC) Received: (qmail 87713 invoked by uid 500); 23 Aug 2015 04:40:32 -0000 Delivered-To: apmail-curator-commits-archive@curator.apache.org Received: (qmail 87669 invoked by uid 500); 23 Aug 2015 04:40:32 -0000 Mailing-List: contact commits-help@curator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@curator.apache.org Delivered-To: mailing list commits@curator.apache.org Received: (qmail 87656 invoked by uid 99); 23 Aug 2015 04:40:31 -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; Sun, 23 Aug 2015 04:40:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CC065E0508; Sun, 23 Aug 2015 04:40:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cammckenzie@apache.org To: commits@curator.apache.org Date: Sun, 23 Aug 2015 04:40:33 -0000 Message-Id: <4a18662ab25d4223b43291c43aaf565d@git.apache.org> In-Reply-To: <818589d8e3664d87899d30a663a42509@git.apache.org> References: <818589d8e3664d87899d30a663a42509@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/7] curator git commit: Added some better logging to testRetryAfterFailure_Curator56() Added some better logging to testRetryAfterFailure_Curator56() Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/25f51498 Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/25f51498 Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/25f51498 Branch: refs/heads/CURATOR-214 Commit: 25f51498df05c50c7d6406d558a35dd8b54eb749 Parents: 2a39a45 Author: randgalt Authored: Fri Aug 21 13:07:12 2015 -0500 Committer: randgalt Committed: Fri Aug 21 13:07:12 2015 -0500 ---------------------------------------------------------------------- .../curator/framework/recipes/queue/TestDistributedQueue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/25f51498/curator-recipes/src/test/java/org/apache/curator/framework/recipes/queue/TestDistributedQueue.java ---------------------------------------------------------------------- diff --git a/curator-recipes/src/test/java/org/apache/curator/framework/recipes/queue/TestDistributedQueue.java b/curator-recipes/src/test/java/org/apache/curator/framework/recipes/queue/TestDistributedQueue.java index 80509bc..a191166 100644 --- a/curator-recipes/src/test/java/org/apache/curator/framework/recipes/queue/TestDistributedQueue.java +++ b/curator-recipes/src/test/java/org/apache/curator/framework/recipes/queue/TestDistributedQueue.java @@ -109,7 +109,7 @@ public class TestDistributedQueue extends BaseClassForTests retryCounter.await(10, TimeUnit.SECONDS); Assert.assertEquals(retryCounter.getCount(), 0, "Queue item was not consumed. Retry counter is " + retryCounter.getCount()); Assert.assertEquals(names.size(), 2); - Assert.assertEquals(names.get(0).length(), names.get(1).length()); + Assert.assertEquals(names.get(0).length(), names.get(1).length(), "name1: " + names.get(0) + " - " + "name2: " + names.get(1)); } finally {