버그 수정

This commit is contained in:
2020-04-27 02:07:34 +09:00
parent ad8acaf296
commit e0036ca32b
18 changed files with 186 additions and 100 deletions
+3 -3
View File
@@ -51,13 +51,13 @@ def main():
for resetPath in autoResetList:
future = executor.submit(run, resetPath)
waiters.append(future)
for idx in range(4):
for idx in range(10):
for webPath in servList:
future = executor.submit(run, webPath)
waiters.append(future)
if idx == 3:
if idx == 9:
break
time.sleep(15)
time.sleep(6)
for future in waiters:
future.done()