This commit is contained in:
Nelson Chen 2015-11-15 21:44:55 +00:00
commit 5814b0d18b
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ def getBestServer(servers):
else:
cum.append(3600)
h.close()
avg = round((sum(cum) / 6) * 1000, 3)
avg = round((sum(cum) / 3) * 1000, 3)
results[avg] = server
fastest = sorted(results.keys())[0]
best = results[fastest]