From c4df090fc5a16713f913242b2465e7e1d5b9eb35 Mon Sep 17 00:00:00 2001 From: Suvodhoy Sinha Date: Mon, 9 Jun 2025 23:15:46 +0530 Subject: [PATCH] fix(discourse): Remove early break that was limiting topics to batch size --- backend/onyx/connectors/discourse/connector.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/onyx/connectors/discourse/connector.py b/backend/onyx/connectors/discourse/connector.py index 807095b92cd..12772542b62 100644 --- a/backend/onyx/connectors/discourse/connector.py +++ b/backend/onyx/connectors/discourse/connector.py @@ -182,8 +182,6 @@ def _get_latest_topics( continue topic_ids.append(topic["id"]) - if len(topic_ids) >= self.batch_size: - break return topic_ids