self.clients instead of self.client

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664834 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Slee 2006-10-24 18:55:36 +00:00
parent 4ce787f238
commit 9a695ba364

View File

@ -88,7 +88,7 @@ class TThreadPoolServer(TServer):
"""Loop around getting clients from the shared queue and process them."""
while True:
try:
client = self.client.get()
client = self.clients.get()
self.serveClient(client)
except Exception, x:
print '%s, %s, %s' % (type(x), x, traceback.format_exc())