Skip to content

Commit

Permalink
fix: correct typo for parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
kanenorman committed Nov 28, 2024
1 parent aa583e5 commit 9394e23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def _fulltext_retrieval(
except Exception as e:
error_msg = f"Failed to retrieve documents from MongoDB Atlas: {e}"
if filters:
error_msg += "\nEnsure fields in filters are included in the `keyword_search_index` configuration."
error_msg += "\nEnsure fields in filters are included in the `full_text_search_index` configuration."
raise DocumentStoreError(error_msg) from e

return [self._mongo_doc_to_haystack_doc(doc) for doc in documents]
Expand Down

0 comments on commit 9394e23

Please sign in to comment.