Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
vimystic committed Nov 11, 2024
1 parent 3d50513 commit 212e049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/fullnode/build_pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func BuildPods(crd *cosmosv1.CosmosFullNode, cksums ConfigChecksums, startingOrd
pods []diff.Resource[*corev1.Pod]
)
candidates := podCandidates(crd)
for i := int32(startingOrdinal); i < crd.Spec.Replicas; i++ {
for i := startingOrdinal; i < crd.Spec.Replicas; i++ {
pod, err := builder.WithOrdinal(i).Build()
if err != nil {
return nil, err
Expand Down

0 comments on commit 212e049

Please sign in to comment.