[openstack-dev] [Neutron] new contributor failing tests - help!

2014-04-14 Thread mar...@redhat.com
Hi, I am really stumped by a Jenkins failure for one of my reviews... @ https://review.openstack.org/#/c/59212/ if any kind soul has any pointers/help I will be very grateful. The strange thing is that Jenkins +1 this patchset (Apr 2) but subsequently failed as described below: The failure is fro

Re: [openstack-dev] [Neutron] new contributor failing tests - help!

2014-04-14 Thread Kevin Benton
Hi Mario, Here is the problem: >>> import netaddr >>> p = netaddr.IPNetwork('2001:0db8::/64') >>> str(p) '2001:db8::/64' Now that you are converting CIDR strings to netaddr objects and back, it's causing redundant info to be dropped. You will just have to remove the references to 2001:0db8::/64 a

Re: [openstack-dev] [Neutron] new contributor failing tests - help!

2014-04-15 Thread mar...@redhat.com
On 14/04/14 19:51, Kevin Benton wrote: > Hi Mario, > > Here is the problem: import netaddr p = netaddr.IPNetwork('2001:0db8::/64') str(p) > '2001:db8::/64' > > Now that you are converting CIDR strings to netaddr objects and back, it's > causing redundant info to be dropped. You wil