Fix Occasionally dropped Issues (#921)

This commit is contained in:
Yuhong Sun 2024-01-09 22:16:02 -08:00 committed by GitHub
parent 6201c1b585
commit 1791edec03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,7 +144,9 @@ class GithubConnector(LoadConnector, PollConnector):
def poll_source(
self, start: SecondsSinceUnixEpoch, end: SecondsSinceUnixEpoch
) -> GenerateDocumentsOutput:
start_datetime = datetime.utcfromtimestamp(start)
# Sometimes Issues are not updated right away, giving more than enough buffer with 1h
offset_start = max(0, int(start - 60 * 60))
start_datetime = datetime.utcfromtimestamp(offset_start)
end_datetime = datetime.utcfromtimestamp(end)
return self._fetch_from_github(start_datetime, end_datetime)