fix(bridge): 채널 중복 생성 race condition 수정 + AG- 접두사 + metadata 모니터링

This commit is contained in:
2026-03-07 10:58:10 +09:00
parent ba8454c2e1
commit 02c757f703
4 changed files with 123 additions and 58 deletions

View File

@@ -118,7 +118,9 @@ class BrainEventHandler(FileSystemEventHandler):
file_name = path.name
if file_name not in Config.WATCHED_FILES:
return
# Check suffix patterns
if not any(file_name.endswith(s) for s in Config.WATCHED_SUFFIXES):
return
if self._should_debounce(str(path)):
return