mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
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:
parent
4ce787f238
commit
9a695ba364
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user