Skip to content

Commit 8351be1

Browse files
committed
Fix a type mismatch that was detected in #507
1 parent 35d5bf0 commit 8351be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/aws/albec2/ec2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ func (e *EC2) GetSecurityGroups(names []*string) (sgs []*string, err error) {
287287
}
288288

289289
for _, sg := range describeSecurityGroupsOutput.SecurityGroups {
290-
albcache.Set(cacheName, *sg.GroupName, *sg.GroupId, GetSecurityGroupsCacheTTL)
290+
albcache.Set(cacheName, *sg.GroupName, sg.GroupId, GetSecurityGroupsCacheTTL)
291291
sgs = append(sgs, sg.GroupId)
292292
}
293293

0 commit comments

Comments
 (0)