airbyte-source-shopify 2.6.6.dev202503182156__py3-none-any.whl → 2.6.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-shopify
3
- Version: 2.6.6.dev202503182156
3
+ Version: 2.6.7
4
4
  Summary: Source CDK implementation for Shopify.
5
5
  License: ELv2
6
6
  Author: Airbyte
@@ -59,11 +59,11 @@ source_shopify/shopify_graphql/bulk/status.py,sha256=RmuQ2XsYL3iRCpVGxea9F1wXGmb
59
59
  source_shopify/shopify_graphql/bulk/tools.py,sha256=nUQ2ZmPTKJNJdfLToR6KJtLKcJFCChSifkAOvwg0Vss,4065
60
60
  source_shopify/source.py,sha256=WmtSMHMop9NvREj0VUR6P8qWYWyv21y6rFk42bPBzAo,8445
61
61
  source_shopify/spec.json,sha256=ITYWiQ-NrI5VISk5qmUQhp9ChUE2FV18d8xzVzPwvAg,6144
62
- source_shopify/streams/base_streams.py,sha256=48LEiGAc4M42nAE1hkKc5rQ9bbCW9sP4ifUDzmHW0EY,40660
62
+ source_shopify/streams/base_streams.py,sha256=-Yww6tSot5xG4MSwSK2JWHjR3DDFYM9q5Lw3GAKDNsc,40491
63
63
  source_shopify/streams/streams.py,sha256=UoWe89U5xfM2jdgCpWqRv5S4tXGM7GTMU0gq8nCr9oU,9618
64
64
  source_shopify/transform.py,sha256=mn0htL812_90zc_YszGQa0hHcIZQpYYdmk8IqpZm5TI,4685
65
65
  source_shopify/utils.py,sha256=CAEKcxIroBo6kRFCyvC1bfOyfbGy7Z7seqZB7Eekl44,14209
66
- airbyte_source_shopify-2.6.6.dev202503182156.dist-info/METADATA,sha256=j_4mOhe8sSDBYqnY6pU8BUotLXliyuazzOwXHQ8JPKs,5325
67
- airbyte_source_shopify-2.6.6.dev202503182156.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
68
- airbyte_source_shopify-2.6.6.dev202503182156.dist-info/entry_points.txt,sha256=SyTwKSsPk9MCdPf01saWpnp8hcmZOgBssVcSIvMbBeQ,57
69
- airbyte_source_shopify-2.6.6.dev202503182156.dist-info/RECORD,,
66
+ airbyte_source_shopify-2.6.7.dist-info/METADATA,sha256=Dv_Lf_jP4uhetiy79atzdQ4zTWfWBUH46NyAo9pyfng,5309
67
+ airbyte_source_shopify-2.6.7.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
68
+ airbyte_source_shopify-2.6.7.dist-info/entry_points.txt,sha256=SyTwKSsPk9MCdPf01saWpnp8hcmZOgBssVcSIvMbBeQ,57
69
+ airbyte_source_shopify-2.6.7.dist-info/RECORD,,
@@ -80,12 +80,6 @@ class ShopifyStream(HttpStream, ABC):
80
80
  params["order"] = f"{self.order_field} asc"
81
81
  params[self.filter_field] = self.default_filter_field_value
82
82
  return params
83
-
84
- def backoff_time(self, response):
85
- if response.status_code == 500:
86
- return 10
87
- else:
88
- return super().backoff_time(response)
89
83
 
90
84
  @limiter.balance_rate_limit()
91
85
  def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: