Object requesting fix

This commit is contained in:
Peter Šurda 2017-01-17 00:32:05 +01:00
parent 9ed59dd825
commit 9197c425d2
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 2 additions and 6 deletions

View File

@ -178,15 +178,11 @@ class Missing(object):
with self.lock:
if objectHash in self.hashes:
del self.hashes[objectHash]
self.pending[current_thread().peer]['received'] = time.time()
toDelete = []
if current_thread().peer in self.pending:
self.pending[current_thread().peer]['received'] = time.time()
for thread in self.pending.keys():
with self.lock:
if objectHash in self.pending[thread]['objects']:
toDelete.append(objectHash)
for thread in toDelete:
with self.lock:
if thread in self.pending:
self.pending[thread]['objects'].remove(objectHash)
def stop(self):