Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-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 5A670105D9 for ; Sun, 17 Nov 2013 01:35:04 +0000 (UTC) Received: (qmail 70646 invoked by uid 500); 17 Nov 2013 01:35:03 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 70624 invoked by uid 500); 17 Nov 2013 01:35:03 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 70617 invoked by uid 99); 17 Nov 2013 01:35:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Nov 2013 01:35:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Nov 2013 01:35:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C5EF92388868; Sun, 17 Nov 2013 01:34:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1542632 - /subversion/trunk/subversion/libsvn_repos/repos_pool.c Date: Sun, 17 Nov 2013 01:34:40 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131117013440.C5EF92388868@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stefan2 Date: Sun Nov 17 01:34:40 2013 New Revision: 1542632 URL: http://svn.apache.org/r1542632 Log: * subversion/libsvn_repos/repos_pool.c (svn_repos__repos_pool_create): temporily disable actual caching to fix test suite on Windows Modified: subversion/trunk/subversion/libsvn_repos/repos_pool.c Modified: subversion/trunk/subversion/libsvn_repos/repos_pool.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/repos_pool.c?rev=1542632&r1=1542631&r2=1542632&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_repos/repos_pool.c (original) +++ subversion/trunk/subversion/libsvn_repos/repos_pool.c Sun Nov 17 01:34:40 2013 @@ -72,7 +72,8 @@ svn_repos__repos_pool_create(svn_repos__ /* no getter nor setter is required but we also can't share repos * instances */ SVN_ERR(svn_object_pool__create(&object_pool, NULL, NULL, - 4, APR_UINT32_MAX, FALSE, thread_safe, +/* ### temp. disabled 4, APR_UINT32_MAX, FALSE, thread_safe, */ + 0, 0, FALSE, thread_safe, pool)); root_pool = svn_object_pool__pool(object_pool);