refactor: Account for async change for identify function
This commit is contained in:
parent
ff388179fb
commit
ac257dca1d
2 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ async def run_tasks_data_item_incremental(
|
|||
async with open_data_file(file_path) as file:
|
||||
classified_data = ingestion.classify(file)
|
||||
# data_id is the hash of file contents + owner id to avoid duplicate data
|
||||
data_id = ingestion.identify(classified_data, user)
|
||||
data_id = await ingestion.identify(classified_data, user)
|
||||
else:
|
||||
# If data was already processed by Cognee get data id
|
||||
data_id = data_item.id
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ async def ingest_data(
|
|||
|
||||
# data_id is the hash of original file contents + owner id to avoid duplicate data
|
||||
|
||||
data_id = ingestion.identify(classified_data, user)
|
||||
data_id = await ingestion.identify(classified_data, user)
|
||||
original_file_metadata = classified_data.get_metadata()
|
||||
|
||||
# Find metadata from Cognee data storage text file
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue