Skip to content

Commit

Permalink
Merge branch 'fix-state'
Browse files Browse the repository at this point in the history
  • Loading branch information
nezd committed Oct 25, 2023
2 parents 664ef27 + 87ce0bd commit 7783d7b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tap_hubspot/events_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class WebAnalyticsContactsStream(EventsStream):
parent_stream_type = ContactsStream
ignore_parent_replication_key = False
replication_key = "occurredAt"
state_partitioning_keys=[]

def get_url_params(self, context: Optional[dict], next_page_token: Optional[Any]) -> Dict[str, Any]:
params = super().get_url_params(context, next_page_token)
Expand All @@ -64,6 +65,7 @@ class WebAnalyticsDealsStream(EventsStream):
parent_stream_type = DealsStream
ignore_parent_replication_key = False
replication_key = "occurredAt"
state_partitioning_keys=[]

def get_url_params(self, context: Optional[dict], next_page_token: Optional[Any]) -> Dict[str, Any]:
params = super().get_url_params(context, next_page_token)
Expand Down

0 comments on commit 7783d7b

Please sign in to comment.