From 63c918402ccd0f218b1a9577d9df098f81c215c7 Mon Sep 17 00:00:00 2001 From: Michal Jez Date: Thu, 22 Sep 2022 14:54:35 -0400 Subject: [PATCH] Use page size of 100 for issue_events --- tap_github/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_github/streams.py b/tap_github/streams.py index 278dd05a..18b2c349 100644 --- a/tap_github/streams.py +++ b/tap_github/streams.py @@ -683,7 +683,7 @@ class IssueEvents(IncrementalOrderedStream): replication_method = "INCREMENTAL" replication_keys = "created_at" key_properties = ["id"] - path = "issues/events?sort=created_at&direction=desc" + path = "issues/events?sort=created_at&direction=desc&per_page=100" class Events(IncrementalStream): '''