Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions airbyte-integrations/connectors/source-granola/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,16 @@ definitions:
authenticator:
type: BearerAuthenticator
api_token: "{{ config['api_key'] }}"
# Prefer Retry-After when present; otherwise use exponential backoff.
error_handler:
type: DefaultErrorHandler
max_retries: 5
backoff_strategies:
- type: WaitTimeFromHeader
header: Retry-After
max_waiting_time_in_seconds: 60
- type: ExponentialBackoffStrategy
factor: 5

streams:
- $ref: "#/definitions/streams/notes"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 9023923c-002f-4131-9554-3ebdf56540a4
dockerImageTag: 0.2.11
dockerImageTag: 0.2.12
dockerRepository: airbyte/source-granola
documentationUrl: https://docs.airbyte.com/integrations/sources/granola
githubIssueLabel: source-granola
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/granola.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ For programmatic configuration, use these parameter names:

| Version | Date | Pull Request | Subject |
| :------ | :--- | :----------- | :------ |
| 0.2.12 | 2026-08-12 | [84278](https://github.com/airbytehq/airbyte/pull/84278) | Retry rate-limited and server-error responses with backoff honoring Retry-After |
| 0.2.11 | 2026-08-11 | [83964](https://github.com/airbytehq/airbyte/pull/83964) | Update dependencies |
| 0.2.10 | 2026-08-04 | [83481](https://github.com/airbytehq/airbyte/pull/83481) | Update dependencies |
| 0.2.9 | 2026-07-28 | [82970](https://github.com/airbytehq/airbyte/pull/82970) | Update dependencies |
Expand Down
Loading