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 B4A31200CFD for ; Wed, 6 Sep 2017 16:28:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B3814161D3C; Wed, 6 Sep 2017 14:28:23 +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 F13F3161F7B for ; Wed, 6 Sep 2017 16:28:22 +0200 (CEST) Received: (qmail 4536 invoked by uid 500); 6 Sep 2017 14:28:22 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 3737 invoked by uid 99); 6 Sep 2017 14:28:18 -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, 06 Sep 2017 14:28:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1A655F56C3; Wed, 6 Sep 2017 14:28:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ptupitsyn@apache.org To: commits@ignite.apache.org Date: Wed, 06 Sep 2017 14:28:28 -0000 Message-Id: <79223d27ab8340c98fe51a6fecbc632c@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [12/23] ignite git commit: IGNITE-6179: Improved reliability of DynamicIndexAbstractConcurrentSelfTest.testClientReconnectWithCacheRestart. This closes #2596. archived-at: Wed, 06 Sep 2017 14:28:23 -0000 IGNITE-6179: Improved reliability of DynamicIndexAbstractConcurrentSelfTest.testClientReconnectWithCacheRestart. This closes #2596. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1202f3f5 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1202f3f5 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1202f3f5 Branch: refs/heads/ignite-5896 Commit: 1202f3f57ae3de670108e9f08ca5b1b0ca1c7499 Parents: 3a91757 Author: vk Authored: Wed Sep 6 10:41:16 2017 +0300 Committer: devozerov Committed: Wed Sep 6 10:41:16 2017 +0300 ---------------------------------------------------------------------- .../cache/index/DynamicIndexAbstractConcurrentSelfTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/1202f3f5/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicIndexAbstractConcurrentSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicIndexAbstractConcurrentSelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicIndexAbstractConcurrentSelfTest.java index 7b53f73..3190b5e 100644 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicIndexAbstractConcurrentSelfTest.java +++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicIndexAbstractConcurrentSelfTest.java @@ -699,7 +699,7 @@ public abstract class DynamicIndexAbstractConcurrentSelfTest extends DynamicInde final QueryIndex idx = index(IDX_NAME_2, field(FIELD_NAME_1), field(aliasUnescaped(FIELD_NAME_2))); - queryProcessor(srv).dynamicIndexCreate(CACHE_NAME, CACHE_NAME, TBL_NAME, idx, false); + queryProcessor(srv).dynamicIndexCreate(CACHE_NAME, CACHE_NAME, TBL_NAME, idx, false).get(); } });