Unverified Commit 610381b7 authored by Yingchun Lai's avatar Yingchun Lai Committed by GitHub
Browse files

[health_generate] fix: fix the /health_generate always success bug (#8028)

parent 1403ea56
...@@ -1359,7 +1359,7 @@ class TokenizerManager: ...@@ -1359,7 +1359,7 @@ class TokenizerManager:
while True: while True:
recv_obj = await self.recv_from_detokenizer.recv_pyobj() recv_obj = await self.recv_from_detokenizer.recv_pyobj()
self._result_dispatcher(recv_obj) self._result_dispatcher(recv_obj)
self.last_receive_tstamp = time.time() self.last_receive_tstamp = time.perf_counter()
def _handle_batch_output( def _handle_batch_output(
self, self,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment