버그 수정

This commit is contained in:
2020-04-27 02:07:34 +09:00
parent 2c45d38a66
commit 227b0a08ed
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()