From f746d46b2029167c4340a0b26ccb2d26b7524483 Mon Sep 17 00:00:00 2001 From: dbs Date: Tue, 9 Nov 2010 14:56:01 +0000 Subject: [PATCH] Typo: Pass in the array of servers to the memcached client if we have one git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2064 9efc2488-bf62-4759-914b-345cdb29e865 --- src/python/osrf/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/osrf/cache.py b/src/python/osrf/cache.py index b5b3e6c..c3d03e6 100644 --- a/src/python/osrf/cache.py +++ b/src/python/osrf/cache.py @@ -24,7 +24,7 @@ class CacheClient(object): ''' global _client if servers: - self.client = memcache.Client(server, debug=1) + self.client = memcache.Client(servers, debug=1) else: if not _client: raise CacheException( -- 2.43.2