##// END OF EJS Templates
catapipe: fix bug introduced when switching to the timer api...
Augie Fackler -
r39971:cb9b23ec default
parent child Browse files
Show More
@@ -71,7 +71,7 b' def main():'
71 if session not in _threadmap:
71 if session not in _threadmap:
72 _threadmap[session] = len(_threadmap)
72 _threadmap[session] = len(_threadmap)
73 pid = _threadmap[session]
73 pid = _threadmap[session]
74 ts_micros = (now - start).total_seconds() * 1000000
74 ts_micros = (now - start) * 1000000
75 out.write(json.dumps(
75 out.write(json.dumps(
76 {
76 {
77 "name": label,
77 "name": label,
General Comments 0
You need to be logged in to leave comments. Login now