Skip to content

Commit c6b1077

Browse files
committed
🐛 (tasks) Use async app for manager
1 parent 354a735 commit c6b1077

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ingestors/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async def ingest(job: DatasetJob) -> None:
3030
def _run_ingest():
3131
to_analyze: list[EntityProxy] = []
3232
to_index: list[EntityProxy] = []
33-
manager = Manager(sync_app, job.dataset, job.context)
33+
manager = Manager(app, job.dataset, job.context)
3434

3535
try:
3636
for entity in job.get_entities():

0 commit comments

Comments
 (0)