]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
fix event_send for re-assign floating ip
authorlzklibj <lzklibj@cn.ibm.com>
Tue, 21 Oct 2014 06:55:53 +0000 (23:55 -0700)
committerlzklibj <lzklibj@cn.ibm.com>
Tue, 11 Nov 2014 02:20:10 +0000 (18:20 -0800)
commitadd8944d4dba2a69e8f7da47f120d5dc63952f77
tree5df137b7e72cf97352d731cb2845ac8676ed04a5
parent6db9fac9387696aae6f36c920d2e6b3989352f62
fix event_send for re-assign floating ip

Neutron can associate a floating ip to a new port
without disassociate from original instance port.
This situation will send network changed event only
for new instance port, and that event object contains
the new instance's id.

In this case nova will update new instance's info
but not original one's in nova's database table
instance_info_caches. For nova can get new instance's
id from the above event. So in table instance_info_caches,
both original instance and new instance will have the
same floating ip in their records. And this make it
possible that, in most situation, after your re-assign
floating ip, run "nova list" will return incorrect info,
multiple instances have a same floating ip, and this may
confuse users.

Nova will sync data in table instance_info_caches, but it
may take dozens of seconds.
The new added code will send network changed event for the
original instance, and this will make nova update instance_
_info_caches table in a few seconds.

Change-Id: If3ee11535f649fc51bf1a52806008c1c5c0e73b6
Closes-Bug: 1381886
neutron/notifiers/nova.py
neutron/tests/unit/notifiers/test_notifiers_nova.py