Skip to content

Commit

Permalink
Merge pull request #3584 from onyx-dot-app/bugfix/log_spacing
Browse files Browse the repository at this point in the history
fix formatting
  • Loading branch information
rkuo-danswer authored Jan 3, 2025
2 parents ef5e5c8 + 8f0fb70 commit 66f9124
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/onyx/document_index/vespa/indexing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ def _does_document_exist(
if doc_fetch_response.status_code != 200:
logger.debug(f"Failed to check for document with URL {doc_url}")
raise RuntimeError(
f"Unexpected fetch document by ID value from Vespa "
f"with error {doc_fetch_response.status_code}"
f"Index name: {index_name}"
f"Doc chunk id: {doc_chunk_id}"
f"Unexpected fetch document by ID value from Vespa: "
f"error={doc_fetch_response.status_code} "
f"index={index_name} "
f"doc_chunk_id={doc_chunk_id}"
)
return True

Expand Down

0 comments on commit 66f9124

Please sign in to comment.