Fix composition loading

Kaveen Kumarasinghe 2 years ago committed by GitHub
parent 6b1e06cc1e
commit 5d5df76aa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -792,7 +792,7 @@ class Index_handler:
)
# Save the composed index
tree_index.save_to_disk(app_root_path()/"indexes"/user_id/name)
tree_index.save_to_disk(app_root_path()/"indexes"/str(user_id)/name)
self.index_storage[user_id].queryable_index = tree_index
@ -822,7 +822,7 @@ class Index_handler:
name = f"composed_index_{date.today().month}_{date.today().day}.json"
# Save the composed index
simple_index.save_to_disk(app_root_path()/"indexes"/user_id/name)
simple_index.save_to_disk(app_root_path()/"indexes"/str(user_id)/name)
self.index_storage[user_id].queryable_index = simple_index
try:

Loading…
Cancel
Save