Skip to content

Commit

Permalink
fix(kafka_topic): insufficient brokers error (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov authored Jan 2, 2024
1 parent 696836e commit f8557ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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

0 comments on commit f8557ab

Please sign in to comment.