Skip to content

Commit 02dcdd2

Browse files
authored
fix(source-instagram): Disable cache for InstagramMediaChildrenTransformation (#55685)
1 parent d8d480f commit 02dcdd2

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

airbyte-integrations/connectors/source-instagram/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ data:
77
connectorSubtype: api
88
connectorType: source
99
definitionId: 6acf6b55-4f1e-4fca-944e-1a3caef8aba8
10-
dockerImageTag: 3.2.1
10+
dockerImageTag: 3.2.2
1111
dockerRepository: airbyte/source-instagram
1212
githubIssueLabel: source-instagram
1313
icon: instagram.svg

airbyte-integrations/connectors/source-instagram/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "3.2.1"
6+
version = "3.2.2"
77
name = "source-instagram"
88
description = "Source implementation for Instagram."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-instagram/source_instagram/components.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def get_http_response(name: str, path: str, request_params: Dict, config: Config
3838
http_client = HttpClient(
3939
name=name,
4040
logger=http_logger,
41-
use_cache=True,
41+
use_cache=False,
4242
error_handler=error_handler,
4343
)
4444
_, response = http_client.send_request(

docs/integrations/sources/instagram.md

+1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ for more information.
146146

147147
| Version | Date | Pull Request | Subject |
148148
|:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------|
149+
| 3.2.2 | 2025-03-10 | [55685](https://github.com/airbytehq/airbyte/pull/55685) | Disable cache for InstagramMediaChildrenTransformation |
149150
| 3.2.1 | 2025-03-08 | [55463](https://github.com/airbytehq/airbyte/pull/55463) | Update dependencies |
150151
| 3.2.0 | 2025-02-28 | [54364](https://github.com/airbytehq/airbyte/pull/54364) | Update to CDK v6 |
151152
| 3.1.9 | 2025-03-01 | [54789](https://github.com/airbytehq/airbyte/pull/54789) | Update dependencies |

0 commit comments

Comments
 (0)