Skip to content

Commit 181c4e0

Browse files
authored
Merge pull request #111 from aws-controllers-k8s/dbinstance/tags/deltafn
Fix `computeTagsDelta` function
2 parents 10ddefd + 195b8c8 commit 181c4e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/resource/db_instance/hooks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ func computeTagsDelta(
532532
}
533533

534534
latestTags := map[string]string{}
535-
for _, tag := range desired {
535+
for _, tag := range latest {
536536
latestTags[*tag.Key] = *tag.Value
537537
}
538538

0 commit comments

Comments
 (0)