You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OCPBUGS-55324: fix nil field access when describing security groups
Previously, call to DescribeSecurityGroups accesses the session field directly from metadata,
which depends on call to VPC to populate that field. However, function VPC, which
internally call populateSubnets is now constructing the ec2 client differently
so session is field not initialized there, causing nil access.
The commit ensures the session field is initialized by using getting
func Session instead.
0 commit comments