From: <ssk...@vh...> - 2005-09-16 08:37:29
|
Author: sskracic Date: 2005-09-16 10:28:09 +0200 (Fri, 16 Sep 2005) New Revision: 817 Modified: ccm-core/trunk/src/com/arsdigita/persistence/PooledConnectionSource.java Log: We don't want this cache to be synced across peer hosts, since it contains host specific information. Modified: ccm-core/trunk/src/com/arsdigita/persistence/PooledConnectionSource.java =================================================================== --- ccm-core/trunk/src/com/arsdigita/persistence/PooledConnectionSource.java 2005-09-16 08:26:30 UTC (rev 816) +++ ccm-core/trunk/src/com/arsdigita/persistence/PooledConnectionSource.java 2005-09-16 08:28:09 UTC (rev 817) @@ -52,7 +52,8 @@ private static CacheTable s_connectionTags = new CacheTable("jdbcConnectionTags", RuntimeConfig.getConfig().getJDBCPoolSize() + 10, - CacheTable.MAX_CACHE_AGE); + CacheTable.MAX_CACHE_AGE, + false); private String m_url; private int m_size; |