Skip to content
Snippets Groups Projects
Commit cb9b23ec authored by Augie Fackler's avatar Augie Fackler
Browse files

catapipe: fix bug introduced when switching to the timer api

Differential Revision: https://phab.mercurial-scm.org/D4818
parent a24f4638
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@
if session not in _threadmap:
_threadmap[session] = len(_threadmap)
pid = _threadmap[session]
ts_micros = (now - start).total_seconds() * 1000000
ts_micros = (now - start) * 1000000
out.write(json.dumps(
{
"name": label,
......
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