Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(kafka_topic): insufficient brokers error #1501

Merged
merged 1 commit into from
Jan 2, 2024
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ nav_order: 1

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD

- Fix insufficient brokers error when create kafka topic

## [4.11.0] - 2024-01-02

- Add support for `aiven_organization_group_project`. Please note that this resource is in the beta stage, and to use it, you would need to set the environment variable PROVIDER_AIVEN_ENABLE_BETA to a non-zero value.
Expand Down
2 changes: 1 addition & 1 deletion internal/sdkprovider/kafkatopicrepository/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (rep *repository) Create(ctx context.Context, project, service string, req

// We must retry this one
if reInsufficientBrokers.MatchString(err.Error()) {
return nil
return retry.RetryableError(err)
}

// Other errors are non-retryable
Expand Down
Loading