[Opensrf-commits] r2064 - trunk/src/python/osrf (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Nov 9 09:56:03 EST 2010
Author: dbs
Date: 2010-11-09 09:56:01 -0500 (Tue, 09 Nov 2010)
New Revision: 2064
Modified:
trunk/src/python/osrf/cache.py
Log:
Typo: Pass in the array of servers to the memcached client if we have one
Modified: trunk/src/python/osrf/cache.py
===================================================================
--- trunk/src/python/osrf/cache.py 2010-11-09 14:46:03 UTC (rev 2063)
+++ trunk/src/python/osrf/cache.py 2010-11-09 14:56:01 UTC (rev 2064)
@@ -24,7 +24,7 @@
'''
global _client
if servers:
- self.client = memcache.Client(server, debug=1)
+ self.client = memcache.Client(servers, debug=1)
else:
if not _client:
raise CacheException(
More information about the opensrf-commits
mailing list