You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,9 @@
19
19
error_message="Invalid Protocol Schema: The endpoint that data is being requested from is using an invalid or insecure. Exception: requests.exceptions.InvalidSchema",
20
20
),
21
21
InvalidURL: ErrorResolution(
22
-
response_action=ResponseAction.FAIL,
23
-
failure_type=FailureType.config_error,
24
-
error_message="Invalid URL specified: The endpoint that data is being requested from is not a valid URL. Exception: requests.exceptions.InvalidURL",
22
+
response_action=ResponseAction.RETRY,
23
+
failure_type=FailureType.transient_error,
24
+
error_message="Temporary DNS resolution error occurred. Retrying...",
0 commit comments