Go: fix warnings (#17738)

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2026-08-03 21:30:01 +08:00
committed by GitHub
parent d357eea8ef
commit 86021932ae
103 changed files with 437 additions and 439 deletions

View File

@@ -126,7 +126,7 @@ def reset_document_for_reparse(doc, tenant_id, parser_id=None, pipeline_id=None)
# Update document
e = DocumentService.update_by_id(doc.id, update_fields)
if not e:
return get_error_data_result(message="Document not found!")
return get_error_data_result(message="document not found")
# Update document statistics before deleting all document rows. Pipeline
# compilation rows may exist even when token_num is zero, so the doc-store
@@ -141,9 +141,9 @@ def reset_document_for_reparse(doc, tenant_id, parser_id=None, pipeline_id=None)
doc.process_duration * -1,
)
except LookupError:
return get_error_data_result(message="Document not found!")
return get_error_data_result(message="document not found")
if not e:
return get_error_data_result(message="Document not found!")
return get_error_data_result(message="document not found")
settings.docStoreConn.delete({"doc_id": doc.id}, search.index_name(tenant_id), doc.kb_id)
# Delete chunk images

View File

@@ -601,7 +601,7 @@ def get_file_content(uid: str, file_id: str):
"""
e, file = FileService.get_by_id(file_id)
if not e:
return False, "Document not found!"
return False, "document not found"
if not check_file_team_permission(file, uid):
return False, "no authorization"
return True, file