From 282b658b476f1ae59d0764d58df1b6b6b2dbb67a Mon Sep 17 00:00:00 2001 From: Keith Thompson Date: Wed, 8 Jan 2025 12:28:43 +0000 Subject: [PATCH] Retry requests that return HTTP 500 --- .../connectors/source-shopify/source_shopify/utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-shopify/source_shopify/utils.py b/airbyte-integrations/connectors/source-shopify/source_shopify/utils.py index fa510b87ba915..4c450f950cd2a 100644 --- a/airbyte-integrations/connectors/source-shopify/source_shopify/utils.py +++ b/airbyte-integrations/connectors/source-shopify/source_shopify/utils.py @@ -44,12 +44,7 @@ def __new__(self, stream: str) -> Mapping[str, Any]: response_action=ResponseAction.IGNORE, failure_type=FailureType.config_error, error_message=f"Stream `{stream}`. Not available or missing.", - ), - 500: ErrorResolution( - response_action=ResponseAction.IGNORE, - failure_type=FailureType.config_error, - error_message=f"Stream `{stream}`. Entity might not be available or missing.", - ), + ) # extend the mapping with more handable errors, if needed. }