Remove trailing colons from queue names in function wrappers
This commit is contained in:
parent
e4dd83ee3d
commit
387d817fc2
1 changed files with 2 additions and 2 deletions
|
|
@ -469,7 +469,7 @@ class LightRAG:
|
||||||
self.embedding_func = priority_limit_async_func_call(
|
self.embedding_func = priority_limit_async_func_call(
|
||||||
self.embedding_func_max_async,
|
self.embedding_func_max_async,
|
||||||
llm_timeout=self.default_embedding_timeout,
|
llm_timeout=self.default_embedding_timeout,
|
||||||
queue_name="Embedding func:",
|
queue_name="Embedding func",
|
||||||
)(self.embedding_func)
|
)(self.embedding_func)
|
||||||
|
|
||||||
# Initialize all storages
|
# Initialize all storages
|
||||||
|
|
@ -566,7 +566,7 @@ class LightRAG:
|
||||||
self.llm_model_func = priority_limit_async_func_call(
|
self.llm_model_func = priority_limit_async_func_call(
|
||||||
self.llm_model_max_async,
|
self.llm_model_max_async,
|
||||||
llm_timeout=self.default_llm_timeout,
|
llm_timeout=self.default_llm_timeout,
|
||||||
queue_name="LLM func:",
|
queue_name="LLM func",
|
||||||
)(
|
)(
|
||||||
partial(
|
partial(
|
||||||
self.llm_model_func, # type: ignore
|
self.llm_model_func, # type: ignore
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue