Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cveticm committed Aug 14, 2023
1 parent 57e14f0 commit a6f0793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/atlasdeployment/serverless_deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func ensureServerlessInstanceState(ctx *workflow.Context, project *mdbv1.AtlasPr
func isTagsEqual(a []*mongodbatlas.Tag, c []*mongodbatlas.Tag) bool {
if len(a) == len(c) {
for i, aTags := range a {
if aTags.Key != (c)[i].Key || aTags.Value != (c)[i].Value {
if aTags.Key != c[i].Key || aTags.Value != c[i].Value {
return false
}
}
Expand Down

0 comments on commit a6f0793

Please sign in to comment.