Return-Path: Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: (qmail 91216 invoked from network); 14 Feb 2011 10:20:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Feb 2011 10:20:35 -0000 Received: (qmail 27017 invoked by uid 500); 14 Feb 2011 10:20:35 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 26638 invoked by uid 500); 14 Feb 2011 10:20:32 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 26610 invoked by uid 99); 14 Feb 2011 10:20:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Feb 2011 10:20:31 +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 (nike.apache.org: domain of shuber2@jahia.com designates 209.85.215.170 as permitted sender) Received: from [209.85.215.170] (HELO mail-ey0-f170.google.com) (209.85.215.170) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Feb 2011 10:20:22 +0000 Received: by eyf5 with SMTP id 5so1864285eyf.1 for ; Mon, 14 Feb 2011 02:20:02 -0800 (PST) Received: by 10.213.30.20 with SMTP id s20mr3757646ebc.15.1297678801717; Mon, 14 Feb 2011 02:20:01 -0800 (PST) Received: from [10.8.37.157] ([212.147.36.25]) by mx.google.com with ESMTPS id q52sm2332323eei.3.2011.02.14.02.20.00 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 14 Feb 2011 02:20:00 -0800 (PST) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Apple Message framework v1082) Subject: Re: [VOTE] Release Apache Jackrabbit 2.2.4 From: Serge Huber In-Reply-To: Date: Mon, 14 Feb 2011 11:19:59 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <35EEFD8D-9489-41CA-A65B-FB19C12DD5D2@jahia.com> References: To: dev@jackrabbit.apache.org X-Mailer: Apple Mail (2.1082) X-Virus-Checked: Checked by ClamAV on apache.org Hello Thomas,=20 I just tested the patch and this works fine here. Thanks a lot, I = suggest you commit it also on the 2.2 branch if that's ok ? Best regards, Serge Huber. On 14 f=E9vr. 2011, at 10:50, Thomas Mueller wrote: > Hi, >=20 > The H2 database server thinks that the localhost connection is = actually > coming from another machine, and therefore reject it (for security > reasons). To disable this check, apply the following patch: >=20 > ### Eclipse Workspace Patch 1.0 > #P jackrabbit-core > Index: = src/test/java/org/apache/jackrabbit/core/cluster/DbClusterTest.java > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > ---=20 > src/test/java/org/apache/jackrabbit/core/cluster/DbClusterTest.java = (revisi > on 1067983) > +++=20 > src/test/java/org/apache/jackrabbit/core/cluster/DbClusterTest.java = (workin > g copy) > @@ -37,9 +37,9 @@ > public void setUp() throws Exception { > deleteAll(); > server1 =3D Server.createTcpServer("-tcpPort", "9001", = "-baseDir", > - "./target/dbClusterTest/db1").start(); > + "./target/dbClusterTest/db1", = "-tcpAllowOthers").start(); > server2 =3D Server.createTcpServer("-tcpPort", "9002", = "-baseDir", > - "./target/dbClusterTest/db2").start(); > + "./target/dbClusterTest/db2", = "-tcpAllowOthers").start(); > FileUtils.copyFile( > new > = File("./src/test/resources/org/apache/jackrabbit/core/cluster/repository-h= 2 > .xml"), > new = File("./target/dbClusterTest/node1/repository.xml")); >=20 >=20 >=20 > I will apply it in the trunk if this solves the problem for you. >=20 > Regards, > Thomas >=20