Skip to content

Commit

Permalink
Merge pull request #250 from JoelSpeed/patch-1
Browse files Browse the repository at this point in the history
Fix copy/paste error in IPPermissionSet.Ungroup
  • Loading branch information
k8s-ci-robot committed Sep 3, 2021
2 parents a43d818 + 315d55a commit 3ae9359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/providers/v1/sets_ippermissions.go
Expand Up @@ -68,7 +68,7 @@ func (s IPPermissionSet) Ungroup() IPPermissionSet {
c := &ec2.IpPermission{}
*c = *p
c.UserIdGroupPairs = []*ec2.UserIdGroupPair{u}
l2 = append(l, c)
l2 = append(l2, c)
}
}

Expand Down

0 comments on commit 3ae9359

Please sign in to comment.