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-integrations/connectors/source-zendesk-support/source_zendesk_support/manifest.yaml
+19-5
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ definitions:
38
38
- type: DefaultErrorHandler
39
39
response_filters:
40
40
- http_codes: [403, 404]
41
-
action: FAIL
41
+
action: IGNORE
42
42
error_message: "Skipping stream {{ parameters.get('name') }}, error message: {{ response.get('error') }}. Please ensure the authenticated user has access to this stream. If the issue persists, contact Zendesk support."
43
43
- type: DefaultErrorHandler
44
44
backoff_strategies:
@@ -406,7 +406,7 @@ definitions:
406
406
action: FAIL
407
407
error_message: "Skipping stream `{{ parameters.get('name') }}`. Timed out waiting for response: {{ response.text }}..."
408
408
- http_codes: [403, 404]
409
-
action: FAIL
409
+
action: IGNORE
410
410
error_message: "Skipping stream {{ parameters.get('name') }}, error message: {{ response.get('error') }}. Please ensure the authenticated user has access to this stream. If the issue persists, contact Zendesk support."
411
411
paginator:
412
412
type: DefaultPaginator
@@ -418,7 +418,7 @@ definitions:
418
418
type: CursorPagination
419
419
page_size: 200
420
420
cursor_value: "{{ response.get('before_url') }}"
421
-
stop_condition: "{{ config.get('ignore_pagination') or 'before_url' not in response }}"
421
+
stop_condition: "{{ config.get('ignore_pagination') or 'before_url' not in response or not last_record }}"
action: FAIL # fail as this stream used to define enterprise plan
489
+
error_message: "Skipping stream {{ parameters.get('name') }}, error message: {{ response.get('error') }}. Please ensure the authenticated user has access to this stream. If the issue persists, contact Zendesk support."
|`2.6.2`| 2024-02-05 |[37761](https://github.com/airbytehq/airbyte/pull/37761)| Add stop condition for `Ticket Audits` when recieved old records; Ignore 403 and 404 status codes. |
161
162
|`2.6.1`| 2024-04-30 |[37723](https://github.com/airbytehq/airbyte/pull/37723)| Add %Y-%m-%dT%H:%M:%S%z to cursor_datetime_formats |
162
163
|`2.6.0`| 2024-04-29 |[36823](https://github.com/airbytehq/airbyte/pull/36823)| Migrate to low code; Add new stream `Ticket Activities`|
163
164
|`2.5.0`| 2024-04-25 |[36388](https://github.com/airbytehq/airbyte/pull/36388)| Fix data type of field in `Tickets` stream schema stream. |
0 commit comments