From e025d250173331ea9505e8abaad1c46c45f22588 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 5 Apr 2026 15:39:16 +0800 Subject: [PATCH] bugfix --- llmage/accounting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llmage/accounting.py b/llmage/accounting.py index 7c8219d..649a054 100644 --- a/llmage/accounting.py +++ b/llmage/accounting.py @@ -191,8 +191,9 @@ async def backend_accounting(): debug(f'backend accounting started ...') while True: lus = await get_accounting_llmusages() + debug(f'get accounting {len(lus)} lus') for lu in lus: debug(f'backend_accounting(): {lu.id=} handleing...') await llm_accounting(lu) - await asyncio.sleep(0.1) + await asyncio.sleep(10)