We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addc46e commit 75d03b3Copy full SHA for 75d03b3
src/sinks/gcs_common/config.rs
@@ -152,6 +152,7 @@ impl RetryLogic for GcsRetryLogic {
152
let status = response.inner.status();
153
154
match status {
155
+ StatusCode::UNAUTHORIZED => RetryAction::Retry("unauthorized".into()),
156
StatusCode::TOO_MANY_REQUESTS => RetryAction::Retry("too many requests".into()),
157
StatusCode::NOT_IMPLEMENTED => {
158
RetryAction::DontRetry("endpoint not implemented".into())
0 commit comments