Feat: add data source to pipleline logs . (#11075)

### What problem does this PR solve?

#10953

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu
2025-11-07 11:43:59 +08:00
committed by GitHub
parent 5629fbd2ca
commit 34283d4db4
7 changed files with 45 additions and 45 deletions

View File

@ -253,6 +253,8 @@ class NotionConnector(LoadConnector, PollConnector):
all_child_page_ids: list[str] = []
for page in pages:
if isinstance(page, dict):
page = NotionPage(**page)
if page.id in self.indexed_pages:
logging.debug(f"Already indexed page with ID '{page.id}'. Skipping.")
continue