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
4 changes: 2 additions & 2 deletions website/cue/reference/components/sinks.cue
Original file line number Diff line number Diff line change
Expand Up @@ -635,12 +635,12 @@ components: sinks: [Name=string]: {

retry_policy: {
title: "Retry policy"
body: """
body: *"""
Vector will retry failed requests (status == 429, >= 500, and != 501).
Other responses will not be retried. You can control the number of
retry attempts and backoff rate with the `request.retry_attempts` and
`request.retry_backoff_secs` options.
"""
""" | string
}
}
}
Expand Down
10 changes: 10 additions & 0 deletions website/cue/reference/components/sinks/gcp_cloud_storage.cue
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,16 @@ components: sinks: gcp_cloud_storage: {
"""
}

retry_policy: {
title: "Retry policy"
body: """
Vector will retry failed requests (status == 401, == 408, == 429, >= 500, and != 501).
Other responses will not be retried. You can control the number of
retry attempts and backoff rate with the `request.retry_attempts` and
`request.retry_backoff_secs` options.
"""
}

storage_class: {
title: "Storage Class"
body: """
Expand Down
Loading