fix (document_queue): fixed silent fail when requeueing
This commit is contained in:
parent
bdb1ae0786
commit
166bdf7f99
1 changed files with 1 additions and 1 deletions
|
|
@ -1340,7 +1340,7 @@ class LightRAG:
|
|||
"track_id": getattr(status_doc, "track_id", ""),
|
||||
# Clear any error messages and processing metadata
|
||||
"error_msg": "",
|
||||
"metadata": getattr(status_doc.metadata),
|
||||
"metadata": getattr(status_doc, "metadata", {}),
|
||||
}
|
||||
|
||||
# Update the status in to_process_docs as well
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue