chore(api/tasks): apply ruff reformatting (#7594)

This commit is contained in:
Bowen Liang
2024-08-26 13:38:37 +08:00
committed by GitHub
parent 3be756eaed
commit 979422cdc6
29 changed files with 546 additions and 508 deletions

View File

@@ -11,7 +11,7 @@ from extensions.ext_redis import redis_client
from models.dataset import Document, DocumentSegment
@shared_task(queue='dataset')
@shared_task(queue="dataset")
def remove_document_from_index_task(document_id: str):
"""
Async Remove document from index
@@ -19,23 +19,23 @@ def remove_document_from_index_task(document_id: str):
Usage: remove_document_from_index.delay(document_id)
"""
logging.info(click.style('Start remove document segments from index: {}'.format(document_id), fg='green'))
logging.info(click.style("Start remove document segments from index: {}".format(document_id), fg="green"))
start_at = time.perf_counter()
document = db.session.query(Document).filter(Document.id == document_id).first()
if not document:
raise NotFound('Document not found')
raise NotFound("Document not found")
if document.indexing_status != 'completed':
if document.indexing_status != "completed":
return
indexing_cache_key = 'document_{}_indexing'.format(document.id)
indexing_cache_key = "document_{}_indexing".format(document.id)
try:
dataset = document.dataset
if not dataset:
raise Exception('Document has no dataset')
raise Exception("Document has no dataset")
index_processor = IndexProcessorFactory(document.doc_form).init_index_processor()
@@ -49,7 +49,10 @@ def remove_document_from_index_task(document_id: str):
end_at = time.perf_counter()
logging.info(
click.style('Document removed from index: {} latency: {}'.format(document.id, end_at - start_at), fg='green'))
click.style(
"Document removed from index: {} latency: {}".format(document.id, end_at - start_at), fg="green"
)
)
except Exception:
logging.exception("remove document from index failed")
if not document.archived: