Return-Path: X-Original-To: apmail-jackrabbit-users-archive@minotaur.apache.org Delivered-To: apmail-jackrabbit-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4AC221031F for ; Thu, 13 Jun 2013 07:19:25 +0000 (UTC) Received: (qmail 71069 invoked by uid 500); 13 Jun 2013 07:19:24 -0000 Delivered-To: apmail-jackrabbit-users-archive@jackrabbit.apache.org Received: (qmail 71044 invoked by uid 500); 13 Jun 2013 07:19:24 -0000 Mailing-List: contact users-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@jackrabbit.apache.org Delivered-To: mailing list users@jackrabbit.apache.org Received: (qmail 71036 invoked by uid 99); 13 Jun 2013 07:19:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jun 2013 07:19:23 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jukka.zitting@gmail.com designates 209.85.219.48 as permitted sender) Received: from [209.85.219.48] (HELO mail-oa0-f48.google.com) (209.85.219.48) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jun 2013 07:19:18 +0000 Received: by mail-oa0-f48.google.com with SMTP id f4so6567217oah.21 for ; Thu, 13 Jun 2013 00:18:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=mVduTxGKl2Ydi05h1O4KYnqqcBRjum0kqkSHlnsUUfg=; b=dnXm+PSN3sBQnETIET0qT3xBMN+VIBs1BkoQcqhI8R/KAOPa4IfprCCCfFZ3ULxthG x8FYeEu+/QITrDuh7GJa43fCMYTNNe4lzFc7qxerGMvmqJGO2hUUaPswtc1soccBiQSY xgZbZKMuhItHq0voOl8iAE2FLxVK7YyUazTGJYFIeAORtGEx+px4G5onMXT2OqDDOLSG AJYf/2R6C0Ht+5KubNYDyEJfmr1BwanHUBpDz+R1MEopGb5PtYDb6r6j2FrWueKq2sV1 yfhhfl/izXTjipsh4tGRXK8hr/z4+Iomw2r/143CWbCR2/MDIahWr3x4pD+630N+X9qR 9kTw== X-Received: by 10.182.43.230 with SMTP id z6mr3934082obl.82.1371107937647; Thu, 13 Jun 2013 00:18:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.113.225 with HTTP; Thu, 13 Jun 2013 00:18:37 -0700 (PDT) In-Reply-To: <1371054262278-4658864.post@n4.nabble.com> References: <1371054262278-4658864.post@n4.nabble.com> From: Jukka Zitting Date: Thu, 13 Jun 2013 10:18:37 +0300 Message-ID: Subject: Re: same parent node update in different thread To: Jackrabbit Users Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi, On Wed, Jun 12, 2013 at 7:24 PM, Saravanan Paramasivan wrote: > is there anything i need to watch out for this warning? Yes. Sessions are not guaranteed to be thread-safe, so you should use a separate session for each thread or alternatively explicitly synchronize access to a shared session. BR, Jukka Zitting