1
0

Fix phone home stats (#6418)

* commit '65d54c5e8':
  Fix phone home stats (#6418)
This commit is contained in:
Andrew Morgan
2020-03-18 16:33:14 +00:00
2 changed files with 2 additions and 1 deletions

1
changelog.d/6418.bugfix Normal file
View File

@@ -0,0 +1 @@
Fix phone home stats reporting.

View File

@@ -585,7 +585,7 @@ def run(hs):
def performance_stats_init():
_stats_process.clear()
_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():