Slots can be updated without removing & adding

This commit is contained in:
Simon
2018-06-24 09:39:44 -04:00
parent 348914aba9
commit 1ac510ff53
5 changed files with 59 additions and 15 deletions

View File

@@ -163,14 +163,6 @@ class RemoteDirectoryCrawler:
directory.close()
in_q.put(path)
break
except TimeoutError:
if timeout_retries > 0:
timeout_retries -= 1
# TODO: Remove debug info
print("TIMEOUT, " + str(timeout_retries) + " retries left")
in_q.put(path)
else:
print("Dropping listing for " + path)
finally:
in_q.task_done()