_clean_updated_sg_member_conntrack_entries() is throwing an AttributeError occasionally
Bug #1488284 reported by
Brian Haley
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
neutron |
Fix Released
|
High
|
Brian Haley |
Bug Description
The IP conntrack manager code that recently merged in https:/
This is due to some bad logic in an if statement:
if not (device_info or pre_device_info):
That is meant to catch the case where either variable is False, but it can't the way it's written, it should be:
if not device_info or not pre_device_info:
continue
Change Id was Ibfd2d6a11aa970
Changed in neutron: | |
assignee: | nobody → Brian Haley (brian-haley) |
Changed in neutron: | |
importance: | Undecided → High |
Changed in neutron: | |
milestone: | none → liberty-3 |
status: | Fix Committed → Fix Released |
Changed in neutron: | |
milestone: | liberty-3 → 7.0.0 |
To post a comment you must log in.
Fix proposed to branch: master /review. openstack. org/216717
Review: https:/