From e2b00163ea662b15e304c8455f4e4b3427d527c5 Mon Sep 17 00:00:00 2001 From: Tyler Hillery Date: Wed, 8 May 2024 18:15:06 -0700 Subject: [PATCH] fix: releases replication key --- tap_github/repository_streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_github/repository_streams.py b/tap_github/repository_streams.py index 0eb505a9..de8371e8 100644 --- a/tap_github/repository_streams.py +++ b/tap_github/repository_streams.py @@ -665,7 +665,7 @@ class ReleasesStream(GitHubRestStream): primary_keys = ["id"] parent_stream_type = RepositoryStream state_partitioning_keys = ["repo", "org"] - replication_key = "published_at" + replication_key = "created_at" MAX_RESULTS_LIMIT = 10000