[CalendarServer-changes] [2763] CalendarServer/trunk/twistedcaldav/memcachepool.py

source_changes at macosforge.org source_changes at macosforge.org
Tue Jul 29 18:32:13 PDT 2008


Revision: 2763
          http://trac.macosforge.org/projects/calendarserver/changeset/2763
Author:   wsanchez at apple.com
Date:     2008-07-29 18:32:13 -0700 (Tue, 29 Jul 2008)
Log Message:
-----------
Set maxClients to the configured value instead of 5.

Modified Paths:
--------------
    CalendarServer/trunk/twistedcaldav/memcachepool.py

Modified: CalendarServer/trunk/twistedcaldav/memcachepool.py
===================================================================
--- CalendarServer/trunk/twistedcaldav/memcachepool.py	2008-07-30 01:14:30 UTC (rev 2762)
+++ CalendarServer/trunk/twistedcaldav/memcachepool.py	2008-07-30 01:32:13 UTC (rev 2763)
@@ -358,9 +358,8 @@
 def installPool(serverAddress, maxClients=5, reactor=None):
     global _memCachePool
     _memCachePool = MemCachePool(serverAddress,
-                                   maxClients=5,
-                                   reactor=None)
+                                 maxClients=maxClients,
+                                 reactor=None)
 
-
 def defaultCachePool():
     return _memCachePool
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20080729/631ade65/attachment.html 


More information about the calendarserver-changes mailing list