mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
check_send_receive_time: Use time.perf_counter() for duration timing.
This commit is contained in:
committed by
Tim Abbott
parent
f42153f670
commit
cf24d2c25e
@@ -125,7 +125,7 @@ try:
|
|||||||
except Exception:
|
except Exception:
|
||||||
report("CRITICAL", msg=f"Error subscribing to Zulips:\n{traceback.format_exc()}")
|
report("CRITICAL", msg=f"Error subscribing to Zulips:\n{traceback.format_exc()}")
|
||||||
msg_to_send = str(random.getrandbits(64))
|
msg_to_send = str(random.getrandbits(64))
|
||||||
time_start = time.time()
|
time_start = time.perf_counter()
|
||||||
|
|
||||||
send_zulip(
|
send_zulip(
|
||||||
zulip_sender,
|
zulip_sender,
|
||||||
@@ -141,7 +141,7 @@ msg_content: List[str] = []
|
|||||||
|
|
||||||
while msg_to_send not in msg_content:
|
while msg_to_send not in msg_content:
|
||||||
messages = get_zulips()
|
messages = get_zulips()
|
||||||
seconds_diff = time.time() - time_start
|
seconds_diff = time.perf_counter() - time_start
|
||||||
|
|
||||||
msg_content = [m["content"] for m in messages]
|
msg_content = [m["content"] for m in messages]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user