Skip to content

Commit

Permalink
fixing linter
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroEsc committed Apr 2, 2024
1 parent 12c5810 commit 9351092
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ func validateHelmReleaseReplicaCount(rp *v1alpha1.Redpanda, hr *helmv2beta2.Helm
if doCheckDefMinTopicReplicas {
if requestedReplicas < minimumTopicReplicas {
// nolint:goerr113 // error is not wrapping existing error
return fmt.Errorf("requested replicas of %d is less than replication factor %s", requestedReplicas, minimumTopicReplicas)
return fmt.Errorf("requested replicas of %d is less than replication factor %d", requestedReplicas, minimumTopicReplicas)
}
}

Expand Down

0 comments on commit 9351092

Please sign in to comment.