Skip to content
Snippets Groups Projects
Commit 65d54c5e authored by Erik Johnston's avatar Erik Johnston Committed by Andrew Morgan
Browse files

Fix phone home stats (#6418)

Fix phone home stats
parent f9c9e1f0
No related branches found
No related tags found
No related merge requests found
Fix phone home stats reporting.
...@@ -585,7 +585,7 @@ def run(hs): ...@@ -585,7 +585,7 @@ def run(hs):
def performance_stats_init(): def performance_stats_init():
_stats_process.clear() _stats_process.clear()
_stats_process.append( _stats_process.append(
(int(hs.get_clock().time(), resource.getrusage(resource.RUSAGE_SELF))) (int(hs.get_clock().time()), resource.getrusage(resource.RUSAGE_SELF))
) )
def start_phone_stats_home(): def start_phone_stats_home():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment