We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d8340 commit 6f4181bCopy full SHA for 6f4181b
ingestors/tasks.py
@@ -77,5 +77,6 @@ def ingest_path(
77
manager.queue_entity(entity)
78
if path.is_dir():
79
DirectoryIngestor.crawl(manager, path)
80
- log.info(f"Emitted {len(manager.emitted)} entities.", emitted=manager.emitted)
+ emitted = list(manager.emitted.iterate())
81
+ log.info(f"Emitted {len(emitted)} entities.", emitted=[e.id for e in emitted])
82
manager.close()
0 commit comments