Skip to content

Commit

Permalink
maxsize to 4096 (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
WANDY666 authored Jul 23, 2024
1 parent 08b5e08 commit 59f30ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightllm/server/metrics/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async def _func(*args, **kwargs):

self._generate_latest = async_wrap(self.conn.root.generate_latest)

self.task_queue = queue.Queue(maxsize=1024)
self.task_queue = queue.Queue(maxsize=4096)
self.daemon = True
self.start()

Expand Down

0 comments on commit 59f30ec

Please sign in to comment.