Activity log for bug #1960319

Date Who What changed Old value New value Message
2022-02-08 13:42:26 Frode Nordahl bug added bug
2022-04-07 16:08:30 Corey Bryant neutron (Ubuntu): status New Triaged
2022-04-07 16:08:32 Corey Bryant neutron (Ubuntu): importance Undecided High
2022-04-07 17:44:48 Corey Bryant bug task added cloud-archive
2022-04-07 17:44:53 Corey Bryant cloud-archive: status New Triaged
2022-04-07 17:44:55 Corey Bryant cloud-archive: importance Undecided High
2022-04-08 10:11:24 Launchpad Janitor neutron (Ubuntu): status Triaged Fix Released
2022-04-08 11:34:47 Corey Bryant cloud-archive: status Triaged Fix Committed
2022-04-08 13:22:03 Corey Bryant cloud-archive: status Fix Committed Fix Released
2023-01-27 10:22:26 Edward Hope-Morley nominated for series cloud-archive/victoria
2023-01-27 10:22:26 Edward Hope-Morley bug task added cloud-archive/victoria
2023-01-27 10:22:26 Edward Hope-Morley nominated for series cloud-archive/yoga
2023-01-27 10:22:26 Edward Hope-Morley bug task added cloud-archive/yoga
2023-01-27 10:22:26 Edward Hope-Morley nominated for series cloud-archive/ussuri
2023-01-27 10:22:26 Edward Hope-Morley bug task added cloud-archive/ussuri
2023-01-27 10:22:26 Edward Hope-Morley nominated for series cloud-archive/xena
2023-01-27 10:22:26 Edward Hope-Morley bug task added cloud-archive/xena
2023-01-27 10:22:26 Edward Hope-Morley nominated for series cloud-archive/wallaby
2023-01-27 10:22:26 Edward Hope-Morley bug task added cloud-archive/wallaby
2023-01-27 10:22:50 Edward Hope-Morley nominated for series Ubuntu Jammy
2023-01-27 10:22:50 Edward Hope-Morley bug task added neutron (Ubuntu Jammy)
2023-01-27 10:22:50 Edward Hope-Morley nominated for series Ubuntu Focal
2023-01-27 10:22:50 Edward Hope-Morley bug task added neutron (Ubuntu Focal)
2023-01-27 10:22:57 Edward Hope-Morley neutron (Ubuntu Jammy): status New Fix Released
2023-01-27 10:23:00 Edward Hope-Morley cloud-archive/yoga: status New Fix Released
2023-01-27 13:44:33 Edward Hope-Morley attachment added lp1960319-xena.debdiff https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1960319/+attachment/5643654/+files/lp1960319-xena.debdiff
2023-01-27 13:45:01 Edward Hope-Morley attachment added lp1960319-wallaby.debdiff https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1960319/+attachment/5643655/+files/lp1960319-wallaby.debdiff
2023-01-27 13:45:30 Edward Hope-Morley attachment added lp1960319-victoria.debdiff https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1960319/+attachment/5643656/+files/lp1960319-victoria.debdiff
2023-01-27 13:45:58 Edward Hope-Morley attachment added lp1960319-ussuri.debdiff https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1960319/+attachment/5643657/+files/lp1960319-ussuri.debdiff
2023-01-27 13:49:35 Edward Hope-Morley description The Neutron Server code will in some circumstances call out to the `ovsdb-client` binary for OVN database maintenance. [0] This change appeared recently but has been backported all the way to OpenStack Train [1]. The neutron-server does currently not depend on openvswitch-common and as such the call will fail with log entries like: 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event [req-46b888be-d233-4aec-a4d4-3ba04d220f64 - - - - -] Unexpected exception in notify_loop: FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event Traceback (most recent call last): 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/ovsdbapp/event.py", line 143, in notify_loop 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event match.run(event, row, updates) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/ovsdb/ovsdb_monitor.py", line 347, in run 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self.driver.delete_mac_binding_entries(row.external_ip) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py", line 1068, in delete_mac_binding_entries 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event return processutils.execute(*cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/oslo_concurrency/processutils.py", line 383, in execute 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event obj = subprocess.Popen(cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/eventlet/green/subprocess.py", line 58, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event subprocess_orig.Popen.__init__(self, args, 0, *argss, **kwds) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 858, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self._execute_child(args, executable, preexec_fn, close_fds, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 1704, in _execute_child 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event raise child_exception_type(errno_num, err_msg, err_filename) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event 0: https://github.com/openstack/neutron/blob/2999b8e579dd9d5ac6ee5f0ec77ff5607b6a1143/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py#L1113 1: https://review.opendev.org/q/Id84bf17953527c415d611bfc198038fb6f811de3 [Impact] Backporting patch that adds openvswitch-common dependency to neutron-server to prior releases of Openstack (U,V,W,X). [Test Plan] * deploy Openstack with neutron ml2-ovn * create a vm and add a floating ip * check Mac Binding table in southbound database and make note of entries * delete the vm and floating ip * corresponding entries in db should be gone [Regression Potential] This is not expected to have a regression potential. ========================================================================= The Neutron Server code will in some circumstances call out to the `ovsdb-client` binary for OVN database maintenance. [0] This change appeared recently but has been backported all the way to OpenStack Train [1]. The neutron-server does currently not depend on openvswitch-common and as such the call will fail with log entries like: 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event [req-46b888be-d233-4aec-a4d4-3ba04d220f64 - - - - -] Unexpected exception in notify_loop: FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event Traceback (most recent call last): 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/ovsdbapp/event.py", line 143, in notify_loop 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event match.run(event, row, updates) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/ovsdb/ovsdb_monitor.py", line 347, in run 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self.driver.delete_mac_binding_entries(row.external_ip) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py", line 1068, in delete_mac_binding_entries 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event return processutils.execute(*cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/oslo_concurrency/processutils.py", line 383, in execute 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event obj = subprocess.Popen(cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/eventlet/green/subprocess.py", line 58, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event subprocess_orig.Popen.__init__(self, args, 0, *argss, **kwds) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 858, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self._execute_child(args, executable, preexec_fn, close_fds, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 1704, in _execute_child 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event raise child_exception_type(errno_num, err_msg, err_filename) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event 0: https://github.com/openstack/neutron/blob/2999b8e579dd9d5ac6ee5f0ec77ff5607b6a1143/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py#L1113 1: https://review.opendev.org/q/Id84bf17953527c415d611bfc198038fb6f811de3
2023-01-29 22:12:02 Brett Milford bug added subscriber Brett Milford
2023-02-02 18:38:44 Corey Bryant cloud-archive/xena: status New Triaged
2023-02-02 18:38:46 Corey Bryant cloud-archive/wallaby: status New Triaged
2023-02-02 18:38:48 Corey Bryant cloud-archive/victoria: status New Triaged
2023-02-02 18:38:50 Corey Bryant cloud-archive/ussuri: status New Triaged
2023-02-02 18:38:53 Corey Bryant cloud-archive/xena: importance Undecided High
2023-02-02 18:38:54 Corey Bryant cloud-archive/wallaby: importance Undecided High
2023-02-02 18:38:56 Corey Bryant cloud-archive/victoria: importance Undecided High
2023-02-02 18:38:59 Corey Bryant cloud-archive/ussuri: importance Undecided High
2023-02-02 18:39:03 Corey Bryant neutron (Ubuntu Focal): status New Triaged
2023-02-02 18:39:06 Corey Bryant neutron (Ubuntu Focal): importance Undecided High
2023-02-02 19:30:44 Corey Bryant bug added subscriber Ubuntu Stable Release Updates Team
2023-02-02 19:55:18 Corey Bryant cloud-archive/xena: status Triaged Fix Committed
2023-02-02 19:55:19 Corey Bryant tags verification-xena-needed
2023-02-02 19:55:24 Corey Bryant cloud-archive/wallaby: status Triaged Fix Committed
2023-02-02 19:55:25 Corey Bryant tags verification-xena-needed verification-wallaby-needed verification-xena-needed
2023-02-02 19:55:44 Corey Bryant cloud-archive/victoria: status Triaged Fix Committed
2023-02-02 19:55:45 Corey Bryant tags verification-wallaby-needed verification-xena-needed verification-victoria-needed verification-wallaby-needed verification-xena-needed
2023-02-14 15:22:18 Edward Hope-Morley tags verification-victoria-needed verification-wallaby-needed verification-xena-needed verification-victoria-needed verification-wallaby-needed verification-xena-done
2023-02-15 10:05:47 Edward Hope-Morley tags verification-victoria-needed verification-wallaby-needed verification-xena-done verification-victoria-needed verification-wallaby-done verification-xena-done
2023-02-16 11:06:10 Edward Hope-Morley description [Impact] Backporting patch that adds openvswitch-common dependency to neutron-server to prior releases of Openstack (U,V,W,X). [Test Plan] * deploy Openstack with neutron ml2-ovn * create a vm and add a floating ip * check Mac Binding table in southbound database and make note of entries * delete the vm and floating ip * corresponding entries in db should be gone [Regression Potential] This is not expected to have a regression potential. ========================================================================= The Neutron Server code will in some circumstances call out to the `ovsdb-client` binary for OVN database maintenance. [0] This change appeared recently but has been backported all the way to OpenStack Train [1]. The neutron-server does currently not depend on openvswitch-common and as such the call will fail with log entries like: 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event [req-46b888be-d233-4aec-a4d4-3ba04d220f64 - - - - -] Unexpected exception in notify_loop: FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event Traceback (most recent call last): 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/ovsdbapp/event.py", line 143, in notify_loop 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event match.run(event, row, updates) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/ovsdb/ovsdb_monitor.py", line 347, in run 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self.driver.delete_mac_binding_entries(row.external_ip) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py", line 1068, in delete_mac_binding_entries 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event return processutils.execute(*cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/oslo_concurrency/processutils.py", line 383, in execute 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event obj = subprocess.Popen(cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/eventlet/green/subprocess.py", line 58, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event subprocess_orig.Popen.__init__(self, args, 0, *argss, **kwds) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 858, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self._execute_child(args, executable, preexec_fn, close_fds, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 1704, in _execute_child 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event raise child_exception_type(errno_num, err_msg, err_filename) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event 0: https://github.com/openstack/neutron/blob/2999b8e579dd9d5ac6ee5f0ec77ff5607b6a1143/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py#L1113 1: https://review.opendev.org/q/Id84bf17953527c415d611bfc198038fb6f811de3 [Impact] Backporting patch that adds openvswitch-common dependency to neutron-server to prior releases of Openstack (U,V,W,X). [Test Plan] * deploy Openstack with neutron ml2-ovn * log into neutron-api unit and check that openvswitch-common is installed * create a vm and add a floating ip * check Mac Binding table in southbound database and make note of entries * delete the vm and floating ip * corresponding entries in db should be gone [Regression Potential] This is not expected to have a regression potential. ========================================================================= The Neutron Server code will in some circumstances call out to the `ovsdb-client` binary for OVN database maintenance. [0] This change appeared recently but has been backported all the way to OpenStack Train [1]. The neutron-server does currently not depend on openvswitch-common and as such the call will fail with log entries like: 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event [req-46b888be-d233-4aec-a4d4-3ba04d220f64 - - - - -] Unexpected exception in notify_loop: FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event Traceback (most recent call last): 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/ovsdbapp/event.py", line 143, in notify_loop 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event match.run(event, row, updates) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/ovsdb/ovsdb_monitor.py", line 347, in run 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self.driver.delete_mac_binding_entries(row.external_ip) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py", line 1068, in delete_mac_binding_entries 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event return processutils.execute(*cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/oslo_concurrency/processutils.py", line 383, in execute 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event obj = subprocess.Popen(cmd, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3/dist-packages/eventlet/green/subprocess.py", line 58, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event subprocess_orig.Popen.__init__(self, args, 0, *argss, **kwds) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 858, in __init__ 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event self._execute_child(args, executable, preexec_fn, close_fds, 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event File "/usr/lib/python3.8/subprocess.py", line 1704, in _execute_child 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event raise child_exception_type(errno_num, err_msg, err_filename) 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event FileNotFoundError: [Errno 2] No such file or directory: 'ovsdb-client' 2022-02-08 13:38:23.053 386820 ERROR ovsdbapp.event 0: https://github.com/openstack/neutron/blob/2999b8e579dd9d5ac6ee5f0ec77ff5607b6a1143/neutron/plugins/ml2/drivers/ovn/mech_driver/mech_driver.py#L1113 1: https://review.opendev.org/q/Id84bf17953527c415d611bfc198038fb6f811de3
2023-02-16 11:12:01 Edward Hope-Morley tags verification-victoria-needed verification-wallaby-done verification-xena-done verification-victoria-done verification-wallaby-done verification-xena-done
2023-03-06 14:04:26 Łukasz Zemczak neutron (Ubuntu Focal): status Triaged Fix Committed
2023-03-06 14:04:28 Łukasz Zemczak bug added subscriber SRU Verification
2023-03-06 14:04:33 Łukasz Zemczak tags verification-victoria-done verification-wallaby-done verification-xena-done verification-needed verification-needed-focal verification-victoria-done verification-wallaby-done verification-xena-done
2023-03-07 13:28:54 Corey Bryant cloud-archive/ussuri: status Triaged Fix Committed
2023-03-07 13:28:55 Corey Bryant tags verification-needed verification-needed-focal verification-victoria-done verification-wallaby-done verification-xena-done verification-needed verification-needed-focal verification-ussuri-needed verification-victoria-done verification-wallaby-done verification-xena-done
2023-03-07 14:15:39 Mauricio Faria de Oliveira bug added subscriber Mauricio Faria de Oliveira
2023-03-11 15:57:16 Edward Hope-Morley tags verification-needed verification-needed-focal verification-ussuri-needed verification-victoria-done verification-wallaby-done verification-xena-done verification-done-focal verification-needed verification-ussuri-needed verification-victoria-done verification-wallaby-done verification-xena-done
2023-03-13 12:26:18 Edward Hope-Morley tags verification-done-focal verification-needed verification-ussuri-needed verification-victoria-done verification-wallaby-done verification-xena-done verification-done verification-done-focal verification-ussuri-done verification-victoria-done verification-wallaby-done verification-xena-done
2023-03-13 14:25:01 Corey Bryant cloud-archive/xena: status Fix Committed Fix Released
2023-03-13 14:25:55 Corey Bryant cloud-archive/wallaby: status Fix Committed Fix Released
2023-03-13 14:26:36 Corey Bryant cloud-archive/victoria: status Fix Committed Fix Released
2023-03-23 14:46:40 Launchpad Janitor neutron (Ubuntu Focal): status Fix Committed Fix Released
2023-03-27 14:55:47 Corey Bryant cloud-archive/ussuri: status Fix Committed Fix Released