Skip to content

Commit

Permalink
Re-indexing issue fix (#337)
Browse files Browse the repository at this point in the history
re-indexing issue fix
  • Loading branch information
gaya3-zipstack authored May 21, 2024
1 parent 618fbd9 commit 5e2d859
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def handle_index_manager(
args: dict[str, str] = dict()
args["document_manager"] = document
args["profile_manager"] = profile_manager
args[index_id] = doc_id

try:
# Create or get the existing record for this document and
Expand All @@ -50,6 +49,7 @@ def handle_index_manager(
if doc_id not in index_ids:
index_ids_list.append(doc_id)

args[index_id] = doc_id
args["index_ids_history"] = json.dumps(index_ids_list)

# Update the record with the index id
Expand Down

0 comments on commit 5e2d859

Please sign in to comment.