From: dbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Date: Tue, 9 Nov 2010 14:56:01 +0000 (+0000)
Subject: Typo: Pass in the array of servers to the memcached client if we have one
X-Git-Tag: osrf_rel_2_0_1~80
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f746d46b2029167c4340a0b26ccb2d26b7524483;p=OpenSRF.git

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
---

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(