From dev-return-46841-archive-asf-public=cust-asf.ponee.io@ignite.apache.org Fri Aug 2 08:14:03 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 64CC9180647 for ; Fri, 2 Aug 2019 10:14:03 +0200 (CEST) Received: (qmail 51777 invoked by uid 500); 2 Aug 2019 08:14:02 -0000 Mailing-List: contact dev-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 dev@ignite.apache.org Received: (qmail 51603 invoked by uid 99); 2 Aug 2019 08:14:01 -0000 Received: from mailrelay1-us-west.apache.org (HELO mailrelay1-us-west.apache.org) (209.188.14.139) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Aug 2019 08:14:01 +0000 Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id C9154E2F9D for ; Fri, 2 Aug 2019 08:14:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 3033F21405 for ; Fri, 2 Aug 2019 08:14:00 +0000 (UTC) Date: Fri, 2 Aug 2019 08:14:00 +0000 (UTC) From: "Kanunnikov Pavel (JIRA)" To: dev@ignite.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (IGNITE-12034) containsKey() does not work correct in some cases MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Kanunnikov Pavel created IGNITE-12034: ----------------------------------------- Summary: containsKey() does not work correct in some cases Key: IGNITE-12034 URL: https://issues.apache.org/jira/browse/IGNITE-12034 Project: Ignite Issue Type: Bug Affects Versions: 2.7.5 Reporter: Kanunnikov Pavel Attachments: reproducing_example.java {{containsKey()}} method does not work correct in some cases. Steps to reproduce: # create cache with {{CacheMode.LOCAL}} cache mode and {{CacheAtomicityMode.TRANSACTIONAL}} atomicity mode # start transaction # put some entry to the cache # commit and close transaction # start another new transaction # try to call {{containsKey()}} for the existing entry (which has been added at step 3) # check result. It will be {{false}}. But entry with such key exists! We can also get it by {{get() method}}. # commit/rollback and close transaction Bug checked in versions: {{2.6.0}}, {{2.7.0}}, {{2.7.5}}. Simple reproducing example attached to this issue. -- This message was sent by Atlassian JIRA (v7.6.14#76016)