@@ -33,6 +33,7 @@ def run():
p_list.append(p3)
for p in p_list:
+ p.daemon = True
p.start()
p.join()
@@ -86,6 +86,7 @@ def main(process_num=30):
pl.append(proc)
for num in range(process_num):
+ pl[num].daemon = True
pl[num].start()
@@ -34,6 +34,7 @@ class ProxyValidSchedule(object):
thread_list.append(ProxyCheck())
for thread in thread_list:
+ thread.daemon = True
thread.start()