Skip to content

Commit 188fd0c

Browse files
authored
🐛Source Outreach: Fix HTTP 404 during cursor pagination (#43350)
1 parent d8c5a93 commit 188fd0c

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

airbyte-integrations/connectors/source-outreach/README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ poetry install --with dev
2525
**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.com/integrations/sources/outreach)
2626
to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `spec` inside `manifest.yaml` file.
2727
Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information.
28-
See `sample_files/sample_config.json` for a sample config file.
28+
See `integration_tests/sample_config.json` for a sample config file.
2929

3030

3131
### Locally running the connector
@@ -35,11 +35,7 @@ See `sample_files/sample_config.json` for a sample config file.
3535
poetry run source-outreach spec
3636
poetry run source-outreach check --config secrets/config.json
3737
poetry run source-outreach discover --config secrets/config.json
38-
poetry run source-outreach read --config secrets/config.json --catalog sample_files/configured_catalog.json
39-
poetry run source-outreach spec
40-
poetry run source-outreach check --config secrets/config.json
41-
poetry run source-outreach discover --config secrets/config.json
42-
poetry run source-outreach read --config secrets/config.json --catalog sample_files/configured_catalog.json
38+
poetry run source-outreach read --config secrets/config.json --catalog integration_tests/configured_catalog.json
4339
```
4440

4541
### Running tests

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ data:
2626
connectorSubtype: api
2727
connectorType: source
2828
definitionId: 3490c201-5d95-4783-b600-eaf07a4c7787
29-
dockerImageTag: 1.0.9
29+
dockerImageTag: 1.0.10
3030
dockerRepository: airbyte/source-outreach
3131
githubIssueLabel: source-outreach
3232
icon: outreach.svg

airbyte-integrations/connectors/source-outreach/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 = "1.0.9"
6+
version = "1.0.10"
77
name = "source-outreach"
88
description = "Source implementation for outreach."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-outreach/source_outreach/manifest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ definitions:
180180

181181
requester:
182182
type: HttpRequester
183-
url_base: https://api.outreach.io/api/v2
183+
url_base: https://api.outreach.io/api/v2/
184184
http_method: GET
185185
request_parameters:
186186
count: "false"

docs/integrations/sources/outreach.md

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ List of available streams:
5656

5757
| Version | Date | Pull Request | Subject |
5858
| :------ |:-----------| :----- | :------ |
59+
| 1.0.10 | 2024-08-08 | [41107](https://github.com/airbytehq/airbyte/pull/41107) | Fix pagination |
5960
| 1.0.9 | 2024-08-03 | [43128](https://github.com/airbytehq/airbyte/pull/43128) | Update dependencies |
6061
| 1.0.8 | 2024-07-20 | [42254](https://github.com/airbytehq/airbyte/pull/42254) | Update dependencies |
6162
| 1.0.7 | 2024-07-13 | [41786](https://github.com/airbytehq/airbyte/pull/41786) | Update dependencies |

0 commit comments

Comments
 (0)