Fix issue #183 (CPU 100% usage) #277

Merged
ghost merged 1 commits from cpu100percentfix into master 2013-07-01 19:05:39 +02:00

View File

@ -66,7 +66,10 @@ class receiveDataThread(threading.Thread):
shared.printLock.release()
while True:
try:
dataLen = len(self.data)
self.data += self.sock.recv(4096)
if len(self.data) == dataLen: # recv returns 0 bytes when the remote closes the connection
raise Exception("Remote closed the connection")
except socket.timeout:
shared.printLock.acquire()
print 'Timeout occurred waiting for data from', self.HOST + '. Closing receiveData thread. (ID:', str(id(self)) + ')'