Skip to content

Commit 0419a42

Browse files
committed
fix(discourse): Remove early break that was limiting topics to batch size
1 parent e399eeb commit 0419a42

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

backend/onyx/connectors/discourse/connector.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,6 @@ def _get_latest_topics(
182182
continue
183183

184184
topic_ids.append(topic["id"])
185-
if len(topic_ids) >= self.batch_size:
186-
break
187185

188186
return topic_ids
189187

0 commit comments

Comments
 (0)