Return-Path: X-Original-To: apmail-tuscany-commits-archive@www.apache.org Delivered-To: apmail-tuscany-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5E35997DD for ; Wed, 14 Dec 2011 03:35:48 +0000 (UTC) Received: (qmail 84928 invoked by uid 500); 14 Dec 2011 03:35:48 -0000 Delivered-To: apmail-tuscany-commits-archive@tuscany.apache.org Received: (qmail 84851 invoked by uid 500); 14 Dec 2011 03:35:46 -0000 Mailing-List: contact commits-help@tuscany.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tuscany.apache.org Delivered-To: mailing list commits@tuscany.apache.org Received: (qmail 84843 invoked by uid 99); 14 Dec 2011 03:35:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 03:35:43 +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; Wed, 14 Dec 2011 03:35:42 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B52C923889E1 for ; Wed, 14 Dec 2011 03:35:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1214043 - in /tuscany/sca-cpp/trunk: components/cache/cache.composite components/cache/memcache.cpp samples/store-cluster/shared/shared.composite Date: Wed, 14 Dec 2011 03:35:21 -0000 To: commits@tuscany.apache.org From: jsdelfino@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111214033521.B52C923889E1@eris.apache.org> Author: jsdelfino Date: Wed Dec 14 03:35:21 2011 New Revision: 1214043 URL: http://svn.apache.org/viewvc?rev=1214043&view=rev Log: Change memcached component configuration syntax to use spaces instead of commas between memcached addresses. Modified: tuscany/sca-cpp/trunk/components/cache/cache.composite tuscany/sca-cpp/trunk/components/cache/memcache.cpp tuscany/sca-cpp/trunk/samples/store-cluster/shared/shared.composite Modified: tuscany/sca-cpp/trunk/components/cache/cache.composite URL: http://svn.apache.org/viewvc/tuscany/sca-cpp/trunk/components/cache/cache.composite?rev=1214043&r1=1214042&r2=1214043&view=diff ============================================================================== --- tuscany/sca-cpp/trunk/components/cache/cache.composite (original) +++ tuscany/sca-cpp/trunk/components/cache/cache.composite Wed Dec 14 03:35:21 2011 @@ -26,7 +26,7 @@ - localhost,localhost:11212,localhost:11213 + localhost localhost:11212 localhost:11213 @@ -34,7 +34,7 @@ - localhost:11411,localhost:11412,localhost:11413 + localhost:11411 localhost:11412 localhost:11413 Modified: tuscany/sca-cpp/trunk/components/cache/memcache.cpp URL: http://svn.apache.org/viewvc/tuscany/sca-cpp/trunk/components/cache/memcache.cpp?rev=1214043&r1=1214042&r2=1214043&view=diff ============================================================================== --- tuscany/sca-cpp/trunk/components/cache/memcache.cpp (original) +++ tuscany/sca-cpp/trunk/components/cache/memcache.cpp Wed Dec 14 03:35:21 2011 @@ -102,7 +102,7 @@ private: const failable start(unused const list& params) { // Connect to memcached const value servers = ((lambda)>)car(params))(list()); - memcache::MemCached& ch = *(new (gc_new()) memcache::MemCached(tokenize(",", servers))); + memcache::MemCached& ch = *(new (gc_new()) memcache::MemCached(tokenize(" ", servers))); // Return the component implementation lambda function return value(lambda&)>(applyCache(ch))); Modified: tuscany/sca-cpp/trunk/samples/store-cluster/shared/shared.composite URL: http://svn.apache.org/viewvc/tuscany/sca-cpp/trunk/samples/store-cluster/shared/shared.composite?rev=1214043&r1=1214042&r2=1214043&view=diff ============================================================================== --- tuscany/sca-cpp/trunk/samples/store-cluster/shared/shared.composite (original) +++ tuscany/sca-cpp/trunk/samples/store-cluster/shared/shared.composite Wed Dec 14 03:35:21 2011 @@ -37,7 +37,7 @@ - localhost:11211,localhost:11212,localhost:11213 + localhost:11211 localhost:11212 localhost:11213