Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-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 218F7176ED for ; Thu, 9 Apr 2015 12:34:53 +0000 (UTC) Received: (qmail 1995 invoked by uid 500); 9 Apr 2015 12:34:19 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 1966 invoked by uid 500); 9 Apr 2015 12:34:19 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 1922 invoked by uid 99); 9 Apr 2015 12:34:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Apr 2015 12:34:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 09 Apr 2015 12:34:17 +0000 Received: (qmail 99627 invoked by uid 99); 9 Apr 2015 12:33:53 -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, 09 Apr 2015 12:33:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 57E4DDFFF0; Thu, 9 Apr 2015 12:33:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Date: Thu, 09 Apr 2015 12:34:08 -0000 Message-Id: <90536ca722ba43d2b3ef3a90322f9a4c@git.apache.org> In-Reply-To: <44c6697d259e4f499b0c726d244dbe09@git.apache.org> References: <44c6697d259e4f499b0c726d244dbe09@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [17/50] [abbrv] incubator-ignite git commit: # ignite-180-1 X-Virus-Checked: Checked by ClamAV on apache.org # ignite-180-1 Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/597c6c00 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/597c6c00 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/597c6c00 Branch: refs/heads/ignite-80 Commit: 597c6c002ce9beb645c7db8ea4557e6afe58aa78 Parents: 8c74c78 Author: sboikov Authored: Wed Apr 8 14:43:14 2015 +0300 Committer: sboikov Committed: Wed Apr 8 14:43:14 2015 +0300 ---------------------------------------------------------------------- .../apache/ignite/examples/datastructures/IgniteQueueExample.java | 3 --- .../apache/ignite/examples/datastructures/IgniteSetExample.java | 3 --- .../cache/datastructures/GridCacheQueueApiSelfAbstractTest.java | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/597c6c00/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteQueueExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteQueueExample.java b/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteQueueExample.java index af2cf09..fae9523 100644 --- a/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteQueueExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteQueueExample.java @@ -36,9 +36,6 @@ import java.util.*; * start node with {@code examples/config/example-ignite.xml} configuration. */ public class IgniteQueueExample { - /** Cache name. */ - private static final String CACHE_NAME = IgniteQueueExample.class.getSimpleName(); - /** Number of retries */ private static final int RETRIES = 20; http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/597c6c00/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteSetExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteSetExample.java b/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteSetExample.java index 02f043c..29f7f37 100644 --- a/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteSetExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/datastructures/IgniteSetExample.java @@ -35,9 +35,6 @@ import java.util.*; * start node with {@code examples/config/example-ignite.xml} configuration. */ public class IgniteSetExample { - /** Cache name. */ - private static final String CACHE_NAME = IgniteSetExample.class.getSimpleName(); - /** Set instance. */ private static IgniteSet set; http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/597c6c00/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/GridCacheQueueApiSelfAbstractTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/GridCacheQueueApiSelfAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/GridCacheQueueApiSelfAbstractTest.java index 012401d..22e8170 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/GridCacheQueueApiSelfAbstractTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/GridCacheQueueApiSelfAbstractTest.java @@ -510,7 +510,7 @@ public abstract class GridCacheQueueApiSelfAbstractTest extends IgniteCollection /** * @throws Exception If failed. */ - public void testReuseHash() throws Exception { + public void testReuseCache() throws Exception { CollectionConfiguration colCfg = collectionConfiguration(); IgniteQueue queue1 = grid(0).queue("Queue1", 0, colCfg);