diff --git a/airbyte-integrations/connectors/source-hubspot/source_hubspot/streams.py b/airbyte-integrations/connectors/source-hubspot/source_hubspot/streams.py index 72a60ed43949..1ecb79215aea 100644 --- a/airbyte-integrations/connectors/source-hubspot/source_hubspot/streams.py +++ b/airbyte-integrations/connectors/source-hubspot/source_hubspot/streams.py @@ -1144,14 +1144,14 @@ def _process_search( { "filters": [{"value": int(self._state.timestamp() * 1000), "propertyName": self.last_modified_field, "operator": "GTE"}], "sorts": [{"propertyName": self.last_modified_field, "direction": "ASCENDING"}], - #"properties": properties_list, + "properties": properties_list, "limit": 100, } if self.state else { "filters": [{"value": int(self._start_date.timestamp() * 1000), "propertyName": self.last_modified_field, "operator": "GTE"}], "sorts": [{"propertyName": self.last_modified_field, "direction": "ASCENDING"}], - #"properties": properties_list, + "properties": properties_list, "limit": 100, } )