Skip to content

Commit

Permalink
fix: ignore 404 conversation not found for conversation parts stream (#…
Browse files Browse the repository at this point in the history
…188)

* fix: ignore 404 for conversation parts

* fix: set cdk version
  • Loading branch information
am6010 committed May 17, 2024
1 parent 3fc0ff6 commit e1f3848
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-intercom/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import find_packages, setup

MAIN_REQUIREMENTS = [
"airbyte-cdk",
"airbyte-cdk==0.67",
]

TEST_REQUIREMENTS = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,15 @@ definitions:
$ref: "#/definitions/substream_semi_incremental/retriever/record_selector"
extractor:
field_path: ["conversation_parts", "conversation_parts"]
requester:
$ref: "#/definitions/requester"
error_handler:
type: DefaultErrorHandler
description: "404 - conversation not found, ignore"
response_filters:
- http_codes: [ 404 ]
action: IGNORE

company_segments:
$ref: "#/definitions/substream_semi_incremental"
$parameters:
Expand Down

0 comments on commit e1f3848

Please sign in to comment.