Revert "prepopulate last completed dict"

This reverts commit 310711b4e47568adca955d95386da832c4840f3e.
This commit is contained in:
Clint Armstrong
2015-09-09 17:00:26 -04:00
parent 310711b4e4
commit a74a5c8d81

View File

@ -293,7 +293,7 @@ def poll_worker():
thread_stats = {}
for i in range(0, amount_of_workers):
thread_stats[i] = {'last_completed_poll', 0}
thread_stats[i] = {}
t = threading.Thread(target=poll_worker)
t.name = i
t.daemon = True