This commit is contained in:
Lex Berezhny 2019-07-17 21:59:19 -04:00
parent 046459a72d
commit d5f8af471a

View file

@ -125,8 +125,6 @@ def measure(func):
start = time.perf_counter()
try:
return func(*args, **kwargs)
except:
raise
finally:
elapsed = int((time.perf_counter()-start)*1000)
metric['total'] = elapsed