diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-09-24 18:30:10 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-09-24 18:30:10 +0200 |
| commit | 387138410532daad174ed602fd03f4f979cd3d81 (patch) | |
| tree | 56d2d7d86bd34a1db02d2c5aa7891ca374948b88 /packages/meshbay-node/src/meshbay_node/indexer | |
| parent | 6e9afe3e54ab6fb0162393150b7892655b4561d4 (diff) | |
| download | meshbay-387138410532daad174ed602fd03f4f979cd3d81.tar.gz | |
refactor(node): move per-app enrichment out of NodeDaemon
The _enrich_*/_reenrich_* methods and _on_enriched become
EnrichmentMixin in meshbay_node/enrichment.py, with the two directory
helpers only they use. APP_DIR_KEYS stays on NodeDaemon.
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/src/meshbay_node/indexer')
| -rw-r--r-- | packages/meshbay-node/src/meshbay_node/indexer/enrich_audio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-node/src/meshbay_node/indexer/enrich_audio.py b/packages/meshbay-node/src/meshbay_node/indexer/enrich_audio.py index dd6b2c0..397f760 100644 --- a/packages/meshbay-node/src/meshbay_node/indexer/enrich_audio.py +++ b/packages/meshbay-node/src/meshbay_node/indexer/enrich_audio.py @@ -442,7 +442,7 @@ class AudioEnricher: the returned task must be held by the caller for the same reason `WebRTCPeerSession._spawn` holds streaming tasks (a bare `ensure_future` can be garbage-collected mid-flight). `root_path` is - the caller's own root boundary for this entry (daemon.py resolves + the caller's own root boundary for this entry (enrichment.py resolves it via `RootSet.split`) — see `_artist_album_from_ancestors`. """ task = asyncio.ensure_future(self._run(entry, file_path, on_done, root_path)) |