Skip to content

Commit e136e3c

Browse files
Turn off default httpavailabilitystrategy for source-zendesk-chat (GA) (#22026)
* Turn off default for source-zendesk-chat (GA) * Update streams.py * Update streams.py * Update zendesk-chat.md * auto-bump connector version --------- Co-authored-by: Octavia Squidington III <[email protected]>
1 parent b116cf2 commit e136e3c

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@
19911991
- name: Zendesk Chat
19921992
sourceDefinitionId: 40d24d0f-b8f9-4fe0-9e6c-b06c0f3f45e4
19931993
dockerRepository: airbyte/source-zendesk-chat
1994-
dockerImageTag: 0.1.11
1994+
dockerImageTag: 0.1.12
19951995
documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-chat
19961996
icon: zendesk-chat.svg
19971997
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16157,7 +16157,7 @@
1615716157
supportsNormalization: false
1615816158
supportsDBT: false
1615916159
supported_destination_sync_modes: []
16160-
- dockerImage: "airbyte/source-zendesk-chat:0.1.11"
16160+
- dockerImage: "airbyte/source-zendesk-chat:0.1.12"
1616116161
spec:
1616216162
documentationUrl: "https://docs.airbyte.com/integrations/sources/zendesk-chat"
1616316163
connectionSpecification:

airbyte-integrations/connectors/source-zendesk-chat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ RUN pip install .
1616

1717
ENTRYPOINT ["python", "/airbyte/integration_code/main_dev.py"]
1818

19-
LABEL io.airbyte.version=0.1.11
19+
LABEL io.airbyte.version=0.1.12
2020
LABEL io.airbyte.name=airbyte/source-zendesk-chat

airbyte-integrations/connectors/source-zendesk-chat/source_zendesk_chat/streams.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import pendulum
1111
import requests
12+
from airbyte_cdk.sources.streams.availability_strategy import AvailabilityStrategy
1213
from airbyte_cdk.sources.streams.http import HttpStream
1314

1415

@@ -20,6 +21,10 @@ class Stream(HttpStream, ABC):
2021

2122
limit = 100
2223

24+
@property
25+
def availability_strategy(self) -> Optional["AvailabilityStrategy"]:
26+
return None
27+
2328
def request_kwargs(
2429
self,
2530
stream_state: Mapping[str, Any],

docs/integrations/sources/zendesk-chat.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ The connector is restricted by Zendesk's [requests limitation](https://developer
7777
## Changelog
7878

7979
| Version | Date | Pull Request | Subject |
80-
| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------- |
80+
|:--------| :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------- |
81+
| 0.1.12 | 2023-01-27 | [22026](https://github.com/airbytehq/airbyte/pull/22026) | Set `AvailabilityStrategy` for streams explicitly to `None` |
8182
| 0.1.11 | 2022-10-18 | [17745](https://github.com/airbytehq/airbyte/pull/17745) | Add Engagements Stream and fix infity looping |
8283
| 0.1.10 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream states. |
8384
| 0.1.9 | 2022-08-23 | [15879](https://github.com/airbytehq/airbyte/pull/15879) | Corrected specification and stream schemas to support backward capability |

0 commit comments

Comments
 (0)