Activity log for bug #1311804

Date Who What changed Old value New value Message
2014-04-23 17:47:47 Sergey Vasilenko bug added bug
2014-04-23 18:12:57 Sergey Vasilenko description In ip_lib in IpNetnsComand losted root_helper. Without it L3 agent can't create interfaces inside network namespace: 2014-04-23 16:15:44.760 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['ip', '-o', 'netns', 'list'] create_process / usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.781 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['ip', '-o', 'netns', 'list'] Exit code: 0 Stdout: '' Stderr: '' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:74 2014-04-23 16:15:44.782 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['sudo', 'neutron-rootwrap', '/etc/neutron/roo twrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] create_process /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.864 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 Stdout: '' Stderr: 'Could not create /var/run/netns/qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9: File exists\n' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:7 4 Traceback (most recent call last): File "/usr/lib/python2.6/site-packages/eventlet/greenpool.py", line 80, in _spawn_n_impl func(*args, **kwargs) File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 438, in process_router p['ip_cidr'], p['mac_address']) File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 707, in internal_network_added prefix=INTERNAL_DEV_PREFIX) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/interface.py", line 195, in plug namespace_obj = ip.ensure_namespace(namespace) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 136, in ensure_namespace ip = self.netns.add(name) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 446, in add self._as_root('add', name, use_root_namespace=True) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 217, in _as_root kwargs.get('use_root_namespace', False)) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 70, in _as_root namespace) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 81, in _execute root_helper=root_helper) File "/usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py", line 76, in execute raise RuntimeError(m) RuntimeError: Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 CENTOS 6.5 Reproduced on typical Openstack installation in any segmentation type with one L3-agent. In ip_lib in IpNetnsComand losted root_helper. Without it L3 agent can't create interfaces inside network namespace, because in Centos 'ip netns list' returns empty list if start without root privileges. in the log below exception happens because namespace already exists (see full log in attach), but can't detected by ip netns list without root_wrapper. 2014-04-23 16:15:44.760 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['ip', '-o', 'netns', 'list'] create_process / usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.781 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['ip', '-o', 'netns', 'list'] Exit code: 0 Stdout: '' Stderr: '' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:74 2014-04-23 16:15:44.782 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['sudo', 'neutron-rootwrap', '/etc/neutron/roo twrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] create_process /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.864 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 Stdout: '' Stderr: 'Could not create /var/run/netns/qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9: File exists\n' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:7 4 Traceback (most recent call last):   File "/usr/lib/python2.6/site-packages/eventlet/greenpool.py", line 80, in _spawn_n_impl     func(*args, **kwargs)   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 438, in process_router     p['ip_cidr'], p['mac_address'])   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 707, in internal_network_added     prefix=INTERNAL_DEV_PREFIX)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/interface.py", line 195, in plug     namespace_obj = ip.ensure_namespace(namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 136, in ensure_namespace     ip = self.netns.add(name)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 446, in add     self._as_root('add', name, use_root_namespace=True)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 217, in _as_root     kwargs.get('use_root_namespace', False))   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 70, in _as_root     namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 81, in _execute     root_helper=root_helper)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py", line 76, in execute     raise RuntimeError(m) RuntimeError: Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255
2014-04-23 18:15:05 Sergey Vasilenko attachment added log file of l3-agent https://bugs.launchpad.net/neutron/+bug/1311804/+attachment/4094526/+files/l3-agent.log.5
2014-04-23 18:25:34 Eugene Nikanorov neutron: status New Incomplete
2014-04-23 18:28:49 Sergey Vasilenko description CENTOS 6.5 Reproduced on typical Openstack installation in any segmentation type with one L3-agent. In ip_lib in IpNetnsComand losted root_helper. Without it L3 agent can't create interfaces inside network namespace, because in Centos 'ip netns list' returns empty list if start without root privileges. in the log below exception happens because namespace already exists (see full log in attach), but can't detected by ip netns list without root_wrapper. 2014-04-23 16:15:44.760 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['ip', '-o', 'netns', 'list'] create_process / usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.781 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['ip', '-o', 'netns', 'list'] Exit code: 0 Stdout: '' Stderr: '' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:74 2014-04-23 16:15:44.782 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['sudo', 'neutron-rootwrap', '/etc/neutron/roo twrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] create_process /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.864 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 Stdout: '' Stderr: 'Could not create /var/run/netns/qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9: File exists\n' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:7 4 Traceback (most recent call last):   File "/usr/lib/python2.6/site-packages/eventlet/greenpool.py", line 80, in _spawn_n_impl     func(*args, **kwargs)   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 438, in process_router     p['ip_cidr'], p['mac_address'])   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 707, in internal_network_added     prefix=INTERNAL_DEV_PREFIX)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/interface.py", line 195, in plug     namespace_obj = ip.ensure_namespace(namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 136, in ensure_namespace     ip = self.netns.add(name)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 446, in add     self._as_root('add', name, use_root_namespace=True)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 217, in _as_root     kwargs.get('use_root_namespace', False))   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 70, in _as_root     namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 81, in _execute     root_helper=root_helper)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py", line 76, in execute     raise RuntimeError(m) RuntimeError: Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 CENTOS 6.5 Reproduced on typical Openstack installation in any segmentation type with one L3-agent. In ip_lib in IpNetnsComand losted root_helper. Without it L3 agent can't create interfaces inside network namespace, because in Centos 'ip netns list' returns empty list if start without root privileges. [root@node-2 ~]# uname -a Linux node-2.domain.tld 2.6.32-431.11.2.el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux [root@node-2 ~]# ip netns haproxy qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9 [root@node-2 ~]# su -m neutron -c 'ip netns' [root@node-2 ~]# in the log below exception happens because namespace already exists (see full log in attach), but can't detected by ip netns list without root_wrapper. 2014-04-23 16:15:44.760 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['ip', '-o', 'netns', 'list'] create_process / usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.781 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['ip', '-o', 'netns', 'list'] Exit code: 0 Stdout: '' Stderr: '' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:74 2014-04-23 16:15:44.782 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['sudo', 'neutron-rootwrap', '/etc/neutron/roo twrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] create_process /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.864 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 Stdout: '' Stderr: 'Could not create /var/run/netns/qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9: File exists\n' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:7 4 Traceback (most recent call last):   File "/usr/lib/python2.6/site-packages/eventlet/greenpool.py", line 80, in _spawn_n_impl     func(*args, **kwargs)   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 438, in process_router     p['ip_cidr'], p['mac_address'])   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 707, in internal_network_added     prefix=INTERNAL_DEV_PREFIX)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/interface.py", line 195, in plug     namespace_obj = ip.ensure_namespace(namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 136, in ensure_namespace     ip = self.netns.add(name)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 446, in add     self._as_root('add', name, use_root_namespace=True)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 217, in _as_root     kwargs.get('use_root_namespace', False))   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 70, in _as_root     namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 81, in _execute     root_helper=root_helper)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py", line 76, in execute     raise RuntimeError(m) RuntimeError: Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255
2014-04-23 18:29:21 Sergey Vasilenko description CENTOS 6.5 Reproduced on typical Openstack installation in any segmentation type with one L3-agent. In ip_lib in IpNetnsComand losted root_helper. Without it L3 agent can't create interfaces inside network namespace, because in Centos 'ip netns list' returns empty list if start without root privileges. [root@node-2 ~]# uname -a Linux node-2.domain.tld 2.6.32-431.11.2.el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux [root@node-2 ~]# ip netns haproxy qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9 [root@node-2 ~]# su -m neutron -c 'ip netns' [root@node-2 ~]# in the log below exception happens because namespace already exists (see full log in attach), but can't detected by ip netns list without root_wrapper. 2014-04-23 16:15:44.760 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['ip', '-o', 'netns', 'list'] create_process / usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.781 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['ip', '-o', 'netns', 'list'] Exit code: 0 Stdout: '' Stderr: '' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:74 2014-04-23 16:15:44.782 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['sudo', 'neutron-rootwrap', '/etc/neutron/roo twrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] create_process /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.864 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 Stdout: '' Stderr: 'Could not create /var/run/netns/qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9: File exists\n' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:7 4 Traceback (most recent call last):   File "/usr/lib/python2.6/site-packages/eventlet/greenpool.py", line 80, in _spawn_n_impl     func(*args, **kwargs)   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 438, in process_router     p['ip_cidr'], p['mac_address'])   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 707, in internal_network_added     prefix=INTERNAL_DEV_PREFIX)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/interface.py", line 195, in plug     namespace_obj = ip.ensure_namespace(namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 136, in ensure_namespace     ip = self.netns.add(name)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 446, in add     self._as_root('add', name, use_root_namespace=True)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 217, in _as_root     kwargs.get('use_root_namespace', False))   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 70, in _as_root     namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 81, in _execute     root_helper=root_helper)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py", line 76, in execute     raise RuntimeError(m) RuntimeError: Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 CENTOS 6.5 Reproduced on typical Openstack installation in any segmentation type with one L3-agent. In ip_lib in IpNetnsComand losted root_helper. Without it L3 agent can't create interfaces inside network namespace, because in Centos 'ip netns list' returns empty list if start without root privileges. [root@node-2 ~]# uname -a Linux node-2.domain.tld 2.6.32-431.11.2.el6.x86_64 #1 SMP Tue Mar 25 19:59:55 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux [root@node-2 ~]# ip netns list haproxy qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9 [root@node-2 ~]# su -m neutron -c 'ip netns list' [root@node-2 ~]# in the log below exception happens because namespace already exists (see full log in attach), but can't detected by ip netns list without root_wrapper. 2014-04-23 16:15:44.760 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['ip', '-o', 'netns', 'list'] create_process / usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.781 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['ip', '-o', 'netns', 'list'] Exit code: 0 Stdout: '' Stderr: '' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:74 2014-04-23 16:15:44.782 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Running command: ['sudo', 'neutron-rootwrap', '/etc/neutron/roo twrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] create_process /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:48 2014-04-23 16:15:44.864 28240 DEBUG neutron.agent.linux.utils [req-d0f812f6-d987-45f5-9cff-11f1fa52fed6 None] Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255 Stdout: '' Stderr: 'Could not create /var/run/netns/qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9: File exists\n' execute /usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py:7 4 Traceback (most recent call last):   File "/usr/lib/python2.6/site-packages/eventlet/greenpool.py", line 80, in _spawn_n_impl     func(*args, **kwargs)   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 438, in process_router     p['ip_cidr'], p['mac_address'])   File "/usr/lib/python2.6/site-packages/neutron/agent/l3_agent.py", line 707, in internal_network_added     prefix=INTERNAL_DEV_PREFIX)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/interface.py", line 195, in plug     namespace_obj = ip.ensure_namespace(namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 136, in ensure_namespace     ip = self.netns.add(name)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 446, in add     self._as_root('add', name, use_root_namespace=True)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 217, in _as_root     kwargs.get('use_root_namespace', False))   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 70, in _as_root     namespace)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py", line 81, in _execute     root_helper=root_helper)   File "/usr/lib/python2.6/site-packages/neutron/agent/linux/utils.py", line 76, in execute     raise RuntimeError(m) RuntimeError: Command: ['sudo', 'neutron-rootwrap', '/etc/neutron/rootwrap.conf', 'ip', 'netns', 'add', 'qrouter-b582586e-70e3-4a38-8b19-039f30ce87a9'] Exit code: 255
2014-04-24 08:27:14 Vladimir Kuklin neutron: status Incomplete Confirmed
2014-04-27 09:29:22 Mike Scherbakov tags icehouse-backport-potential
2014-06-03 09:16:48 Chen Xin Jiang bug added subscriber Chen Xin Jiang
2014-06-05 09:02:36 Vladimir Kuklin neutron: status Confirmed Invalid
2014-06-05 09:03:36 Vladimir Kuklin bug task added fuel
2014-06-05 09:03:48 Vladimir Kuklin nominated for series fuel/4.1.x
2014-06-05 09:03:48 Vladimir Kuklin bug task added fuel/4.1.x
2014-06-05 09:03:48 Vladimir Kuklin nominated for series fuel/5.0.x
2014-06-05 09:03:48 Vladimir Kuklin bug task added fuel/5.0.x
2014-06-05 09:13:14 Vladimir Kuklin fuel/5.0.x: status New Fix Committed
2014-06-05 09:13:22 Vladimir Kuklin bug task deleted fuel/5.0.x
2014-06-17 07:23:57 Sergii Golovatiuk fuel/4.1.x: status New Invalid
2014-06-17 07:24:03 Sergii Golovatiuk fuel: status New Invalid
2014-07-28 19:41:05 Kevin Benton neutron: status Invalid Confirmed
2014-07-28 19:43:33 OpenStack Infra neutron: status Confirmed In Progress
2014-07-28 19:43:33 OpenStack Infra neutron: assignee Kevin Benton (kevinbenton)
2014-08-12 22:22:30 Dmitry Pyzhov bug task deleted fuel/4.1.x
2014-08-12 22:22:59 Dmitry Pyzhov fuel: milestone 4.1.1
2014-08-18 10:46:38 Eugene Nikanorov neutron: importance Undecided Low
2014-08-18 11:11:30 Eugene Nikanorov neutron: importance Low Medium
2014-12-30 05:41:30 OpenStack Infra neutron: status In Progress Fix Committed
2015-02-05 14:40:56 Thierry Carrez neutron: status Fix Committed Fix Released
2015-02-05 14:40:56 Thierry Carrez neutron: milestone kilo-2
2015-04-30 09:39:01 Thierry Carrez neutron: milestone kilo-2 2015.1.0