调整PDF等待提示文案

This commit is contained in:
2026-06-23 13:10:26 +08:00
parent 1e9404cc7d
commit b6be8b4593
5 changed files with 6 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ class PdfGenerationLimiter:
while self._active >= limit:
remaining = deadline - monotonic()
if remaining <= 0:
raise PdfGenerationBusy("当前PDF生成任务较多,请稍后重试")
raise PdfGenerationBusy("当前查询人数较多,请稍后重试")
self._condition.wait(remaining)
self._active += 1