*** xgerman has quit IRC | 00:01 | |
*** saipandi has quit IRC | 00:03 | |
*** sballe_ has quit IRC | 00:03 | |
*** saipandi has joined #openstack-neutron | 00:03 | |
*** sballe_ has joined #openstack-neutron | 00:03 | |
*** mdorman has quit IRC | 00:04 | |
*** dave_tucker_zzz is now known as dave_tucker | 00:05 | |
*** ChuckC_ has quit IRC | 00:07 | |
*** mlavalle has quit IRC | 00:08 | |
*** dimsum_ has quit IRC | 00:10 | |
*** dimsum_ has joined #openstack-neutron | 00:10 | |
*** seizadi has quit IRC | 00:11 | |
*** armax has left #openstack-neutron | 00:14 | |
*** otherwiseguy has quit IRC | 00:14 | |
*** dave_tucker is now known as dave_tucker_zzz | 00:14 | |
*** dimsum_ has quit IRC | 00:14 | |
*** otherwiseguy has joined #openstack-neutron | 00:14 | |
*** sballe_ has quit IRC | 00:15 | |
*** sballe_ has joined #openstack-neutron | 00:15 | |
*** dave_tucker_zzz is now known as dave_tucker | 00:16 | |
*** Sukhdev has quit IRC | 00:16 | |
*** dave_tucker is now known as dave_tucker_zzz | 00:17 | |
*** vivek-ebay has quit IRC | 00:17 | |
*** aranjan has quit IRC | 00:17 | |
*** a_le has joined #openstack-neutron | 00:19 | |
*** kk_ has quit IRC | 00:21 | |
*** shashankhegde has quit IRC | 00:23 | |
*** marun has joined #openstack-neutron | 00:24 | |
*** smcquaid has quit IRC | 00:26 | |
*** otherwiseguy has quit IRC | 00:26 | |
*** marun has quit IRC | 00:29 | |
*** cjellick has quit IRC | 00:30 | |
*** yamahata_ has quit IRC | 00:34 | |
*** VijayB_ has quit IRC | 00:34 | |
*** parkit has quit IRC | 00:34 | |
*** parkit has joined #openstack-neutron | 00:37 | |
*** tflynn has quit IRC | 00:39 | |
*** sgordon_ has quit IRC | 00:40 | |
*** VijayB_ has joined #openstack-neutron | 00:40 | |
*** chuckC has joined #openstack-neutron | 00:41 | |
*** nlahouti has quit IRC | 00:41 | |
*** zhhuabj has quit IRC | 00:44 | |
prometheanfire | guess not... | 00:44 |
---|---|---|
prometheanfire | this is sad, was working with ovs, but switching to linuxbridge makes everything break | 00:45 |
larsks | What inspired the switch to linuxbridge? | 00:45 |
*** parkit has quit IRC | 00:45 | |
larsks | Also, what interface is it looking for that doesn't exist? | 00:45 |
*** baoli has joined #openstack-neutron | 00:46 | |
*** parkit has joined #openstack-neutron | 00:47 | |
*** SridharRamaswamy has quit IRC | 00:48 | |
*** a_le has quit IRC | 00:49 | |
openstackgerrit | Armando Migliaccio proposed a change to openstack/neutron: Fix deadlock while deleting external networks with associated FIP's https://review.openstack.org/124483 | 00:51 |
prometheanfire | larsks: performance mainly (for the reason | 00:53 |
prometheanfire | larsks: here's a link of neutron-linuxbridge-agent running on the compute node https://gist.github.com/prometheanfire/08b833d129e2a7f35f3a | 00:54 |
larsks | That section of the code is trying to locate an interface name given an ip address...it iterates over all the available interfaces, calling 'ip addr show <ifname> to <addr>' | 01:02 |
larsks | If the given interface does not have <addr> it should return nothing, but not result in an error. | 01:02 |
larsks | prometheanfire: Is tunl0@NONE a device actually being used on your system? | 01:03 |
prometheanfire | it is | 01:04 |
prometheanfire | at the bottom of the paste is a snippet from 'ip link' | 01:04 |
larsks | But is it being used? It looks unconfigured in that example. | 01:05 |
prometheanfire | if I set the local_ip in /etc/neutron/plugins/linuxbridge/linuxbridge_conf.ini it will try to use it | 01:05 |
prometheanfire | it's not in use | 01:05 |
prometheanfire | at all | 01:05 |
prometheanfire | it's the device for ipinip support | 01:05 |
*** dimsum_ has joined #openstack-neutron | 01:06 | |
larsks | Can you just 'modprobe -r ipip'? Or are you using ipip tunnels? | 01:07 |
prometheanfire | this is a static kernel, no modules | 01:07 |
prometheanfire | that's another bug btw :P | 01:07 |
larsks | Ah. Hmm. | 01:07 |
*** parkit has quit IRC | 01:07 | |
*** parkit has joined #openstack-neutron | 01:08 | |
prometheanfire | https://github.com/openstack/neutron/blob/stable/icehouse/neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py#L566 | 01:08 |
prometheanfire | that section should just be 'return os.path.exists('/sys/module/vxlan')' | 01:08 |
larsks | So, I'm waffling about whether to call this a neutron bug or an 'iproute2' bug. | 01:09 |
prometheanfire | that'll allow for static kernel | 01:09 |
prometheanfire | ya, I dunno | 01:09 |
prometheanfire | I can update iproute2 | 01:09 |
prometheanfire | pick a version :P | 01:09 |
prometheanfire | Available versions: 2.6.29.1-r1 2.6.35-r2 ~2.6.35-r3 2.6.38 ~3.1.0 3.3.0 ~3.4.0 ~3.5.1 ~3.6.0 ~3.7.0 3.8.0{tbz2} ~3.9.0 ~3.10.0 ~3.11.0 ~3.12.0 ~3.14.0 ~3.15.0 ~3.16.0 ~3.16.0-r1 **9999 {atm berkdb +iptables ipv6 minimal selinux} | 01:09 |
prometheanfire | I'll try latest non-git | 01:10 |
larsks | On my system, I would probably fix this by simply skipping over device names of the form '<name>@<something>'. | 01:10 |
prometheanfire | agreed | 01:11 |
larsks | ...but that is the wrong general solution. | 01:11 |
larsks | Because, e.g., macvlan interfaces look like '<macvlan_name>@<primary_if_name>'. | 01:11 |
prometheanfire | yepyep | 01:11 |
larsks | I guess I would yell at iproute2. If you list something in 'ip addr' then I ought to be able to 'ip addr show' that thing. | 01:12 |
prometheanfire | still get the error with the latest iproute2 | 01:12 |
prometheanfire | sys-apps/iproute2-3.16.0-r1 | 01:12 |
prometheanfire | ip addr show to 10.10.4.4 works | 01:13 |
prometheanfire | returns the interface with it | 01:13 |
*** cnesa14 has quit IRC | 01:13 | |
prometheanfire | why not just do that instead? | 01:13 |
*** _cjones_ has quit IRC | 01:13 | |
*** _cjones_ has joined #openstack-neutron | 01:13 | |
larsks | I don't know for sure; would have to experiment. However, for the current mechanism, I think the solution is given <foo>@<bar>, strip the '@<bar>' component. Given your exmaple, "tunl0" is a valid interface name. | 01:14 |
larsks | Similarly for macvlan interfaces, the part before the '@' is what you actually need to use in things like 'ip addr show'. | 01:14 |
*** _cjones_ has quit IRC | 01:14 | |
prometheanfire | oh | 01:14 |
prometheanfire | you use return codes | 01:14 |
*** _cjones_ has joined #openstack-neutron | 01:14 | |
prometheanfire | wonder if the bridges I use are causing it to happen | 01:15 |
prometheanfire | sec, think I might know why | 01:15 |
prometheanfire | I'm thinking it's trying to find the IP in another namespace | 01:16 |
*** radez_g0n3 is now known as radez | 01:16 | |
larsks | I guess that's possible, although it should still be handling the interface name differently. So maybe there are multiple problems :) | 01:16 |
prometheanfire | I see you are familiar with neutron :P | 01:17 |
prometheanfire | I do have another question | 01:19 |
prometheanfire | if using linuxbridge, do you still set this for the firewall? | 01:19 |
prometheanfire | firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver | 01:19 |
*** flashgordon is now known as jogo | 01:19 | |
larsks | So, I have never used the linuxbridge driver. I would *guess* that you actually want the non-OVS version (IptablesFirewallDriver). But I really have no idea. | 01:20 |
prometheanfire | ok | 01:20 |
*** manishg has quit IRC | 01:21 | |
*** VijayB_ has quit IRC | 01:21 | |
prometheanfire | where is get_interface_by_ip defined? | 01:21 |
larsks | According to your traceback, /usr/lib64/python2.7/site-packages/neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py | 01:23 |
prometheanfire | that's where the function's called | 01:24 |
prometheanfire | where's the code :D | 01:24 |
*** _cjones_ has quit IRC | 01:24 | |
prometheanfire | the backend for what's actually running | 01:24 |
*** _cjones_ has joined #openstack-neutron | 01:24 | |
*** jp_at_hp has quit IRC | 01:25 | |
*** lazy_prince has quit IRC | 01:25 | |
larsks | No, it's defined in that file. | 01:26 |
larsks | https://github.com/openstack/neutron/blob/master/neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py#L147 | 01:26 |
prometheanfire | think it's this | 01:26 |
prometheanfire | 2014-09-27 01:13:57.152 7501 TRACE neutron File "/usr/lib64/python2.7/site-packages/neutron/agent/linux/ip_lib.py", line 332, in list | 01:26 |
HenryG | salv-orlando: please review https://review.openstack.org/76520 when you get a chance | 01:26 |
larsks | The get_devices() method comes from ip_lib.py. | 01:26 |
prometheanfire | agya | 01:27 |
*** _cjones_ has quit IRC | 01:27 | |
*** _cjones_ has joined #openstack-neutron | 01:27 | |
HenryG | mestery: Can you target https://bugs.launchpad.net/neutron/+bug/1346444 for juno? | 01:27 |
*** _cjones_ has quit IRC | 01:28 | |
*** _cjones_ has joined #openstack-neutron | 01:29 | |
HenryG | mestery: It's just tests to prevent regressions in DB migrations. | 01:29 |
*** _cjones_ has quit IRC | 01:33 | |
*** dsneddon is now known as dsneddon_gone | 01:34 | |
*** jdaggett has quit IRC | 01:36 | |
*** dougwig has quit IRC | 01:37 | |
openstackgerrit | Lars Kellogg-Stedman proposed a change to openstack/neutron: Handle interfaces names in 'ip link' output with '@' https://review.openstack.org/124557 | 01:37 |
*** sweston has quit IRC | 01:38 | |
*** lori is now known as lori|away | 01:38 | |
*** dave_tucker_zzz is now known as dave_tucker | 01:40 | |
larsks | ...but lars makred the change as a wip, because looking at the test cases this might be messy. | 01:49 |
*** dave_tucker is now known as dave_tucker_zzz | 01:52 | |
*** diegows has quit IRC | 01:54 | |
*** dimsum_ has quit IRC | 02:06 | |
*** dimsum_ has joined #openstack-neutron | 02:06 | |
*** vivek-ebay has joined #openstack-neutron | 02:09 | |
*** dimsum_ has quit IRC | 02:11 | |
*** spandhe has quit IRC | 02:11 | |
*** vivek-eb_ has joined #openstack-neutron | 02:12 | |
*** vivek-ebay has quit IRC | 02:13 | |
*** _cjones_ has joined #openstack-neutron | 02:20 | |
*** ramishra has joined #openstack-neutron | 02:21 | |
*** ijw has joined #openstack-neutron | 02:21 | |
*** VijayB_ has joined #openstack-neutron | 02:22 | |
*** aranjan has joined #openstack-neutron | 02:23 | |
*** gildub has quit IRC | 02:23 | |
*** VijayB_ has quit IRC | 02:26 | |
*** ijw has quit IRC | 02:26 | |
*** aranjan_ has joined #openstack-neutron | 02:26 | |
*** aranjan has quit IRC | 02:30 | |
*** aranjan_ has quit IRC | 02:31 | |
*** fifieldt has quit IRC | 02:31 | |
*** killer_prince has joined #openstack-neutron | 02:35 | |
*** killer_prince is now known as lazy_prince | 02:36 | |
prometheanfire | oh nice | 02:37 |
prometheanfire | that's the one line patch I was looking for :P | 02:39 |
*** ivar-lazzaro has quit IRC | 02:40 | |
openstackgerrit | Armando Migliaccio proposed a change to openstack/neutron: Add check for DVR router while creating VPN service https://review.openstack.org/121038 | 02:41 |
*** yamahata_ has joined #openstack-neutron | 02:45 | |
*** radez is now known as radez_g0n3 | 02:47 | |
*** wanghong has quit IRC | 02:47 | |
*** Longgeek has joined #openstack-neutron | 02:55 | |
prometheanfire | with that patch I'm making progress | 02:57 |
prometheanfire | :D | 02:57 |
*** parkit has quit IRC | 02:57 | |
*** wanghong has joined #openstack-neutron | 02:59 | |
*** yamahata_ has quit IRC | 03:03 | |
*** harlowja is now known as harlowja_away | 03:05 | |
*** _cjones_ has quit IRC | 03:07 | |
*** _cjones_ has joined #openstack-neutron | 03:07 | |
*** drjones has joined #openstack-neutron | 03:13 | |
*** _cjones_ has quit IRC | 03:16 | |
*** drjones has quit IRC | 03:17 | |
*** Longgeek_ has joined #openstack-neutron | 03:21 | |
*** Longgeek has quit IRC | 03:23 | |
*** otherwiseguy has joined #openstack-neutron | 03:27 | |
*** ramishra has quit IRC | 03:29 | |
*** ramishra has joined #openstack-neutron | 03:29 | |
*** a_le has joined #openstack-neutron | 03:40 | |
*** dsneddon_gone has quit IRC | 03:46 | |
*** xgerman has joined #openstack-neutron | 03:49 | |
*** sgordon has quit IRC | 03:51 | |
*** nlahouti has joined #openstack-neutron | 03:53 | |
*** signed8bit has joined #openstack-neutron | 03:59 | |
*** daya_k has joined #openstack-neutron | 04:04 | |
*** otherwiseguy has quit IRC | 04:05 | |
*** itlinux has left #openstack-neutron | 04:17 | |
*** carl_baldwin has joined #openstack-neutron | 04:19 | |
*** nlahouti has quit IRC | 04:22 | |
*** nlahouti has joined #openstack-neutron | 04:22 | |
*** Sukhdev has joined #openstack-neutron | 04:23 | |
*** ijw has joined #openstack-neutron | 04:24 | |
*** aranjan has joined #openstack-neutron | 04:26 | |
*** flaviof is now known as flaviof_zzz | 04:27 | |
*** ijw has quit IRC | 04:29 | |
*** signed8bit has quit IRC | 04:33 | |
*** jdaggett has joined #openstack-neutron | 04:34 | |
*** Apsu has quit IRC | 04:36 | |
*** _cjones_ has joined #openstack-neutron | 04:41 | |
*** a_le has quit IRC | 04:42 | |
*** yamahata_ has joined #openstack-neutron | 04:42 | |
*** dougwig has joined #openstack-neutron | 04:44 | |
*** carl_baldwin has quit IRC | 04:45 | |
*** sweston has joined #openstack-neutron | 04:45 | |
*** Apsu has joined #openstack-neutron | 04:46 | |
*** carl_baldwin has joined #openstack-neutron | 04:47 | |
*** _cjones_ has quit IRC | 04:50 | |
*** _cjones_ has joined #openstack-neutron | 04:50 | |
*** leenheer has joined #openstack-neutron | 04:52 | |
*** _cjones_ has quit IRC | 04:55 | |
*** dimsum_ has joined #openstack-neutron | 04:56 | |
*** aranjan_ has joined #openstack-neutron | 04:57 | |
*** dimsum_ has quit IRC | 05:01 | |
*** aranjan has quit IRC | 05:01 | |
*** reed has quit IRC | 05:01 | |
*** aranjan_ has quit IRC | 05:02 | |
*** baoli has quit IRC | 05:04 | |
*** seizadi has joined #openstack-neutron | 05:05 | |
*** zhhuabj has joined #openstack-neutron | 05:07 | |
*** carl_baldwin has quit IRC | 05:07 | |
*** xgerman has quit IRC | 05:08 | |
*** tflynn has joined #openstack-neutron | 05:11 | |
*** amcrn_ has quit IRC | 05:13 | |
*** daya_k has quit IRC | 05:17 | |
*** linuxgeek_ has quit IRC | 05:24 | |
*** ijw has joined #openstack-neutron | 05:25 | |
*** seizadi has quit IRC | 05:25 | |
*** ijw has quit IRC | 05:30 | |
*** tflynn has quit IRC | 05:37 | |
*** aranjan has joined #openstack-neutron | 05:38 | |
*** tflynn has joined #openstack-neutron | 05:41 | |
*** dvorkinista has joined #openstack-neutron | 05:49 | |
*** tflynn has quit IRC | 05:54 | |
*** tflynn has joined #openstack-neutron | 05:55 | |
*** dvorkinista has quit IRC | 05:59 | |
*** dvorkinista has joined #openstack-neutron | 06:01 | |
*** leenheer has quit IRC | 06:01 | |
openstackgerrit | OpenStack Proposal Bot proposed a change to openstack/neutron: Imported Translations from Transifex https://review.openstack.org/123943 | 06:16 |
*** yamahata_ has quit IRC | 06:19 | |
*** dvorkinista has quit IRC | 06:20 | |
*** Sukhdev has quit IRC | 06:23 | |
*** nlahouti1 has joined #openstack-neutron | 06:26 | |
*** nlahouti2 has joined #openstack-neutron | 06:27 | |
*** tflynn has quit IRC | 06:27 | |
*** nlahouti has quit IRC | 06:28 | |
*** yamahata_ has joined #openstack-neutron | 06:30 | |
*** nlahouti1 has quit IRC | 06:31 | |
*** britthou_ has joined #openstack-neutron | 06:34 | |
*** yamahata_ has quit IRC | 06:34 | |
*** daya_k has joined #openstack-neutron | 06:35 | |
*** nlahouti2 has quit IRC | 06:35 | |
*** nlahouti has joined #openstack-neutron | 06:35 | |
*** britthouser has quit IRC | 06:37 | |
*** aranjan_ has joined #openstack-neutron | 06:38 | |
*** tflynn has joined #openstack-neutron | 06:40 | |
*** ramishra has quit IRC | 06:40 | |
*** aranjan has quit IRC | 06:41 | |
*** lazy_prince has quit IRC | 06:42 | |
*** tflynn has quit IRC | 06:42 | |
*** aranjan_ has quit IRC | 06:42 | |
*** tflynn has joined #openstack-neutron | 06:43 | |
*** dimsum_ has joined #openstack-neutron | 06:45 | |
*** killer_prince has joined #openstack-neutron | 06:46 | |
*** killer_prince is now known as lazy_prince | 06:46 | |
*** dkehnm has quit IRC | 06:49 | |
*** dimsum_ has quit IRC | 06:50 | |
*** dkehn has quit IRC | 06:51 | |
*** dkehnm has joined #openstack-neutron | 06:51 | |
*** dkehn has joined #openstack-neutron | 06:53 | |
*** xuhanp has joined #openstack-neutron | 07:00 | |
*** HenryG_ has joined #openstack-neutron | 07:08 | |
*** HenryG has quit IRC | 07:11 | |
*** stanzgy has joined #openstack-neutron | 07:13 | |
*** tflynn has quit IRC | 07:18 | |
*** sballe has quit IRC | 07:25 | |
*** nimrodsun___ has quit IRC | 07:25 | |
*** dougwig has quit IRC | 07:25 | |
*** sweston has quit IRC | 07:25 | |
*** jdaggett has quit IRC | 07:25 | |
*** zhiyan has quit IRC | 07:25 | |
*** s0mik has quit IRC | 07:25 | |
*** ctracey_ has quit IRC | 07:25 | |
*** vivek-eb_ has quit IRC | 07:26 | |
*** s0mik has joined #openstack-neutron | 07:30 | |
*** s0mik has quit IRC | 07:30 | |
*** zhipeng has quit IRC | 07:31 | |
*** nlahouti has quit IRC | 07:33 | |
*** trinaths has joined #openstack-neutron | 07:38 | |
*** daya_k has quit IRC | 07:39 | |
*** trinaths1 has joined #openstack-neutron | 07:40 | |
*** trinaths has quit IRC | 07:43 | |
trinaths1 | Hi All , Good Afternoon | 07:50 |
*** zhipeng has joined #openstack-neutron | 07:52 | |
*** xuhanp has quit IRC | 07:52 | |
*** zhipeng has quit IRC | 07:57 | |
prometheanfire | larsks: got it all working, thanks :D | 08:11 |
*** ijw has joined #openstack-neutron | 08:28 | |
*** jamiehannaford has joined #openstack-neutron | 08:32 | |
*** ijw has quit IRC | 08:33 | |
*** Longgeek_ has quit IRC | 08:39 | |
*** Longgeek has joined #openstack-neutron | 08:40 | |
*** Longgeek has quit IRC | 08:45 | |
*** trinaths1 has quit IRC | 09:02 | |
*** zhipeng has joined #openstack-neutron | 09:13 | |
*** zhipeng has quit IRC | 09:27 | |
*** igordcard has joined #openstack-neutron | 09:28 | |
*** zhipeng has joined #openstack-neutron | 09:33 | |
*** salv-orlando has quit IRC | 09:38 | |
*** igordcard has quit IRC | 09:40 | |
*** Longgeek has joined #openstack-neutron | 09:40 | |
*** Longgeek has quit IRC | 09:41 | |
*** Longgeek has joined #openstack-neutron | 09:41 | |
*** Longgeek has quit IRC | 09:42 | |
*** yfauser has joined #openstack-neutron | 10:06 | |
*** yfauser has left #openstack-neutron | 10:06 | |
*** saipandi has quit IRC | 10:09 | |
*** stanzgy has quit IRC | 10:24 | |
*** wanghong has quit IRC | 10:58 | |
*** wanghong has joined #openstack-neutron | 10:58 | |
*** Longgeek has joined #openstack-neutron | 11:13 | |
*** Longgeek has quit IRC | 11:17 | |
*** Longgeek has joined #openstack-neutron | 11:24 | |
*** ijw has joined #openstack-neutron | 11:32 | |
*** dimsum_ has joined #openstack-neutron | 11:36 | |
*** ijw has quit IRC | 11:37 | |
*** dimsum_ has quit IRC | 11:40 | |
*** Longgeek has quit IRC | 11:41 | |
*** rotbeard has joined #openstack-neutron | 11:51 | |
*** diegows has joined #openstack-neutron | 12:07 | |
*** dimsum_ has joined #openstack-neutron | 12:16 | |
*** ijw has joined #openstack-neutron | 12:33 | |
*** diegows has quit IRC | 12:35 | |
*** ijw has quit IRC | 12:38 | |
*** ZZelle has quit IRC | 13:03 | |
*** ZZelle has joined #openstack-neutron | 13:03 | |
*** ihrachyshka has joined #openstack-neutron | 13:05 | |
*** Longgeek has joined #openstack-neutron | 13:24 | |
*** dimsum_ has quit IRC | 13:28 | |
*** dimsum_ has joined #openstack-neutron | 13:29 | |
*** dimsum_ has quit IRC | 13:33 | |
*** ijw has joined #openstack-neutron | 13:34 | |
*** ijw has quit IRC | 13:39 | |
*** jckasper has quit IRC | 13:43 | |
*** karimb has joined #openstack-neutron | 13:45 | |
*** jckasper has joined #openstack-neutron | 13:54 | |
*** jckasper_ has joined #openstack-neutron | 13:55 | |
*** jckasper has quit IRC | 13:55 | |
*** lazy_prince has quit IRC | 13:58 | |
*** baoli has joined #openstack-neutron | 14:01 | |
*** xuhanp has joined #openstack-neutron | 14:06 | |
*** otherwiseguy has joined #openstack-neutron | 14:10 | |
*** zhipeng_ has joined #openstack-neutron | 14:15 | |
*** zhipeng has quit IRC | 14:19 | |
*** baoli has quit IRC | 14:19 | |
*** dimsum_ has joined #openstack-neutron | 14:21 | |
*** killer_prince has joined #openstack-neutron | 14:23 | |
*** killer_prince is now known as lazy_prince | 14:23 | |
*** dkehnm has quit IRC | 14:27 | |
*** xuhanp has quit IRC | 14:28 | |
*** zhhuabj has quit IRC | 14:29 | |
*** zhipeng_ has quit IRC | 14:31 | |
*** a_le has joined #openstack-neutron | 14:32 | |
*** a_le has quit IRC | 14:37 | |
*** JayJ__ has joined #openstack-neutron | 14:46 | |
*** aranjan has joined #openstack-neutron | 14:47 | |
*** dkehnm has joined #openstack-neutron | 14:51 | |
openstackgerrit | A change was merged to openstack/neutron: Eliminate OrderedDict from test_api_v2.py https://review.openstack.org/123189 | 15:04 |
*** SridharRamaswamy has joined #openstack-neutron | 15:15 | |
*** leenheer has joined #openstack-neutron | 15:16 | |
*** yfauser has joined #openstack-neutron | 15:18 | |
*** yfauser has left #openstack-neutron | 15:18 | |
openstackgerrit | A change was merged to openstack/neutron: Add unit tests covering single operations to ODL https://review.openstack.org/116199 | 15:20 |
*** SridharRamaswamy has quit IRC | 15:22 | |
*** leenheer has quit IRC | 15:28 | |
*** leenheer has joined #openstack-neutron | 15:29 | |
*** JayJ__ has quit IRC | 15:33 | |
*** karimb has quit IRC | 15:35 | |
*** ijw has joined #openstack-neutron | 15:37 | |
*** shashankhegde has joined #openstack-neutron | 15:37 | |
*** ollivier has joined #openstack-neutron | 15:39 | |
*** ijw_ has joined #openstack-neutron | 15:40 | |
*** ijw has quit IRC | 15:41 | |
*** xgerman has joined #openstack-neutron | 15:41 | |
*** baoli has joined #openstack-neutron | 15:43 | |
*** ihrachyshka has quit IRC | 15:45 | |
*** leenheer has quit IRC | 15:47 | |
*** xgerman has quit IRC | 15:55 | |
*** otherwiseguy has quit IRC | 15:57 | |
*** gangil has joined #openstack-neutron | 15:58 | |
*** nlahouti has joined #openstack-neutron | 16:06 | |
*** thomasem has joined #openstack-neutron | 16:11 | |
*** leenheer has joined #openstack-neutron | 16:14 | |
*** dimsum_ has quit IRC | 16:21 | |
*** dimsum_ has joined #openstack-neutron | 16:21 | |
*** dimsum_ has quit IRC | 16:26 | |
*** JayJ__ has joined #openstack-neutron | 16:28 | |
*** dvorkinista has joined #openstack-neutron | 16:30 | |
*** gangil has quit IRC | 16:30 | |
*** SumitNaiksatam_ has joined #openstack-neutron | 16:33 | |
*** SumitNaiksatam has quit IRC | 16:36 | |
*** SumitNaiksatam_ is now known as SumitNaiksatam | 16:36 | |
*** aranjan has quit IRC | 16:37 | |
*** aranjan has joined #openstack-neutron | 16:39 | |
*** cnesa14 has joined #openstack-neutron | 16:39 | |
*** vivek-ebay has joined #openstack-neutron | 16:39 | |
*** leenheer has quit IRC | 16:39 | |
*** thomasem has quit IRC | 16:40 | |
*** leenheer has joined #openstack-neutron | 16:40 | |
*** gangil has joined #openstack-neutron | 16:41 | |
*** gangil has joined #openstack-neutron | 16:41 | |
*** vivek-eb_ has joined #openstack-neutron | 16:43 | |
*** vivek-ebay has quit IRC | 16:43 | |
*** dvorkinista has quit IRC | 16:45 | |
*** SumitNaiksatam_ has joined #openstack-neutron | 16:45 | |
*** SumitNaiksatam has quit IRC | 16:48 | |
*** SumitNaiksatam_ is now known as SumitNaiksatam | 16:48 | |
*** dvorkinista has joined #openstack-neutron | 16:52 | |
*** yfried has joined #openstack-neutron | 16:57 | |
*** suresh12 has joined #openstack-neutron | 16:57 | |
*** Longgeek has quit IRC | 16:58 | |
*** Longgeek has joined #openstack-neutron | 16:59 | |
*** Longgeek has quit IRC | 17:03 | |
*** thedodd has joined #openstack-neutron | 17:09 | |
*** tsg has joined #openstack-neutron | 17:09 | |
*** thedodd has quit IRC | 17:13 | |
*** a_le has joined #openstack-neutron | 17:15 | |
*** a_le has quit IRC | 17:15 | |
*** a_le has joined #openstack-neutron | 17:16 | |
*** JayJ__ has quit IRC | 17:16 | |
*** ijw_ has quit IRC | 17:16 | |
*** gangil has quit IRC | 17:17 | |
*** rotbeard has quit IRC | 17:17 | |
*** _cjones_ has joined #openstack-neutron | 17:20 | |
*** changbl_ has quit IRC | 17:22 | |
*** shashankhegde has quit IRC | 17:23 | |
*** dbyte has joined #openstack-neutron | 17:26 | |
*** JayJ__ has joined #openstack-neutron | 17:27 | |
*** rharwood has quit IRC | 17:29 | |
*** aranjan has quit IRC | 17:29 | |
*** rharwood has joined #openstack-neutron | 17:29 | |
*** aranjan has joined #openstack-neutron | 17:29 | |
*** nimissa1 has joined #openstack-neutron | 17:31 | |
*** q3k has quit IRC | 17:31 | |
*** tsg has quit IRC | 17:31 | |
*** aranjan has quit IRC | 17:34 | |
*** dfarrell07 has joined #openstack-neutron | 17:35 | |
*** dvorkinista has quit IRC | 17:37 | |
*** cnesa14 has quit IRC | 17:37 | |
*** HenryG_ has quit IRC | 17:37 | |
*** sbalukoff has quit IRC | 17:37 | |
*** insequent has quit IRC | 17:37 | |
*** mitz has quit IRC | 17:37 | |
*** dave_tucker_zzz has quit IRC | 17:37 | |
*** JoshNang has quit IRC | 17:37 | |
*** corvus has quit IRC | 17:37 | |
*** chrisf has quit IRC | 17:37 | |
*** cgoncalves has quit IRC | 17:37 | |
*** radez_g0n3 has quit IRC | 17:37 | |
*** phschwartz has quit IRC | 17:37 | |
*** nimissa has quit IRC | 17:37 | |
*** mugsie has quit IRC | 17:37 | |
*** blogan has quit IRC | 17:37 | |
*** dguerri has quit IRC | 17:37 | |
*** clarkb has quit IRC | 17:37 | |
*** mtreinish has quit IRC | 17:37 | |
*** lifeless has quit IRC | 17:37 | |
*** dvorkinista has joined #openstack-neutron | 17:40 | |
*** ollivier has left #openstack-neutron | 17:40 | |
*** shashankhegde has joined #openstack-neutron | 17:42 | |
*** q3k has joined #openstack-neutron | 17:44 | |
*** linuxgeek_ has joined #openstack-neutron | 17:45 | |
*** cnesa14 has joined #openstack-neutron | 17:46 | |
*** HenryG_ has joined #openstack-neutron | 17:46 | |
*** sbalukoff has joined #openstack-neutron | 17:46 | |
*** insequent has joined #openstack-neutron | 17:46 | |
*** mitz has joined #openstack-neutron | 17:46 | |
*** dave_tucker_zzz has joined #openstack-neutron | 17:46 | |
*** JoshNang has joined #openstack-neutron | 17:46 | |
*** corvus has joined #openstack-neutron | 17:46 | |
*** chrisf has joined #openstack-neutron | 17:46 | |
*** cgoncalves has joined #openstack-neutron | 17:46 | |
*** radez_g0n3 has joined #openstack-neutron | 17:46 | |
*** phschwartz has joined #openstack-neutron | 17:46 | |
*** mugsie has joined #openstack-neutron | 17:46 | |
*** blogan has joined #openstack-neutron | 17:46 | |
*** dguerri has joined #openstack-neutron | 17:46 | |
*** clarkb has joined #openstack-neutron | 17:46 | |
*** mtreinish has joined #openstack-neutron | 17:46 | |
*** lifeless has joined #openstack-neutron | 17:46 | |
*** JayJ__ has quit IRC | 17:47 | |
*** diegows has joined #openstack-neutron | 17:47 | |
*** dvorkinista has quit IRC | 17:48 | |
*** emagana has joined #openstack-neutron | 17:53 | |
*** JayJ__ has joined #openstack-neutron | 17:53 | |
*** dimsum_ has joined #openstack-neutron | 17:54 | |
openstackgerrit | A change was merged to openstack/neutron: Revert "Cleanup floatingips also on router delete" https://review.openstack.org/121729 | 17:55 |
*** _cjones_ has quit IRC | 18:00 | |
*** _cjones_ has joined #openstack-neutron | 18:00 | |
*** igordcard has joined #openstack-neutron | 18:03 | |
*** dvorkinista has joined #openstack-neutron | 18:12 | |
*** vivek-eb_ has quit IRC | 18:12 | |
*** _cjones_ has quit IRC | 18:13 | |
*** _cjones_ has joined #openstack-neutron | 18:13 | |
*** emagana has quit IRC | 18:14 | |
*** vivek-eb_ has joined #openstack-neutron | 18:16 | |
*** _cjones_ has quit IRC | 18:18 | |
*** JayJ__ has quit IRC | 18:19 | |
*** JayJ__ has joined #openstack-neutron | 18:19 | |
*** shashankhegde has quit IRC | 18:20 | |
*** salv-orlando has joined #openstack-neutron | 18:21 | |
*** JayJ___ has joined #openstack-neutron | 18:22 | |
*** JayJ__ has quit IRC | 18:24 | |
*** JayJ___ has quit IRC | 18:27 | |
*** suresh12 has quit IRC | 18:28 | |
*** suresh12 has joined #openstack-neutron | 18:30 | |
*** aepifanov has joined #openstack-neutron | 18:32 | |
*** tsg has joined #openstack-neutron | 18:33 | |
*** vivek-eb_ has quit IRC | 18:33 | |
*** dfarrell07 has quit IRC | 18:33 | |
*** xgerman has joined #openstack-neutron | 18:39 | |
*** xgerman has quit IRC | 18:47 | |
*** suresh12 has quit IRC | 18:47 | |
*** dimsum_ has quit IRC | 18:58 | |
*** dimsum_ has joined #openstack-neutron | 18:59 | |
*** aranjan has joined #openstack-neutron | 18:59 | |
*** dimsum_ has quit IRC | 19:03 | |
*** jamiehannaford has quit IRC | 19:10 | |
*** aranjan has quit IRC | 19:13 | |
*** dbyte has quit IRC | 19:14 | |
*** shashankhegde has joined #openstack-neutron | 19:14 | |
*** suresh12 has joined #openstack-neutron | 19:18 | |
*** baoli has quit IRC | 19:19 | |
*** baoli has joined #openstack-neutron | 19:19 | |
*** suresh12 has quit IRC | 19:26 | |
*** salv-orlando has quit IRC | 19:26 | |
*** shashankhegde has quit IRC | 19:27 | |
openstackgerrit | Kevin Benton proposed a change to openstack/neutron: Remove some duplicate unit tests https://review.openstack.org/122911 | 19:27 |
*** aranjan has joined #openstack-neutron | 19:29 | |
*** baoli has quit IRC | 19:29 | |
openstackgerrit | Kevin Benton proposed a change to openstack/neutron: Remove some duplicate unit tests https://review.openstack.org/122911 | 19:30 |
openstackgerrit | Kevin Benton proposed a change to openstack/neutron: Fix broken port query in Extraroute test case https://review.openstack.org/122929 | 19:30 |
*** baoli has joined #openstack-neutron | 19:34 | |
*** Guest70419 has joined #openstack-neutron | 19:35 | |
*** Guest70419 has left #openstack-neutron | 19:36 | |
*** SumitNaiksatam has quit IRC | 19:42 | |
*** aranjan has quit IRC | 19:43 | |
*** SumitNaiksatam has joined #openstack-neutron | 19:43 | |
*** diegows has quit IRC | 19:48 | |
*** Longgeek has joined #openstack-neutron | 19:59 | |
*** dvorkinista has quit IRC | 20:00 | |
*** Longgeek has quit IRC | 20:03 | |
*** changbl_ has joined #openstack-neutron | 20:07 | |
*** sgordon_ has joined #openstack-neutron | 20:15 | |
*** britthou_ has quit IRC | 20:17 | |
*** harlowja_away has quit IRC | 20:23 | |
*** dougwig has joined #openstack-neutron | 20:27 | |
*** aranjan has joined #openstack-neutron | 20:32 | |
*** vivek-ebay has joined #openstack-neutron | 20:32 | |
*** chuckC_ has joined #openstack-neutron | 20:34 | |
*** tsg has quit IRC | 20:34 | |
*** aranjan has quit IRC | 20:35 | |
*** mordred_ has joined #openstack-neutron | 20:37 | |
*** dhellmann has joined #openstack-neutron | 20:37 | |
*** openstack has joined #openstack-neutron | 20:45 | |
*** suresh12 has quit IRC | 20:47 | |
*** chuckC_ has quit IRC | 20:48 | |
*** baoli has quit IRC | 20:50 | |
*** jeraldv has joined #openstack-neutron | 20:57 | |
*** dimsum_ has joined #openstack-neutron | 21:01 | |
*** dimsum_ has quit IRC | 21:06 | |
*** liusheng has quit IRC | 21:06 | |
*** liusheng has joined #openstack-neutron | 21:07 | |
*** cnesa15 has joined #openstack-neutron | 21:07 | |
*** cnesa14 has quit IRC | 21:08 | |
*** jeraldv has quit IRC | 21:16 | |
*** jeraldv has joined #openstack-neutron | 21:18 | |
*** dvorkinista has joined #openstack-neutron | 21:19 | |
*** vivek-ebay has quit IRC | 21:24 | |
*** leenheer has joined #openstack-neutron | 21:25 | |
*** a_le has quit IRC | 21:29 | |
*** a_le has joined #openstack-neutron | 21:30 | |
*** aranjan has joined #openstack-neutron | 21:30 | |
*** suresh12 has joined #openstack-neutron | 21:40 | |
*** aranjan has quit IRC | 21:42 | |
*** sballe__ has joined #openstack-neutron | 21:45 | |
*** suresh12 has quit IRC | 21:46 | |
*** sballe_ has quit IRC | 21:48 | |
*** sballe__ has quit IRC | 21:48 | |
*** liusheng has quit IRC | 21:48 | |
*** sballe__ has joined #openstack-neutron | 21:49 | |
*** liusheng has joined #openstack-neutron | 21:49 | |
*** otherwiseguy has joined #openstack-neutron | 21:52 | |
*** dimsum_ has joined #openstack-neutron | 22:08 | |
*** tsg has joined #openstack-neutron | 22:15 | |
*** tflynn has joined #openstack-neutron | 22:17 | |
*** igordcard has quit IRC | 22:17 | |
*** sgordon_ has quit IRC | 22:21 | |
*** dvorkinista has quit IRC | 22:28 | |
*** Guest___ has joined #openstack-neutron | 22:30 | |
*** aranjan has joined #openstack-neutron | 22:30 | |
*** salv-orlando has joined #openstack-neutron | 22:30 | |
*** zhipeng has joined #openstack-neutron | 22:35 | |
*** Guest___ has quit IRC | 22:38 | |
*** jaschluc has joined #openstack-neutron | 22:38 | |
*** otherwiseguy has quit IRC | 22:39 | |
*** jaschluc has quit IRC | 22:41 | |
openstackgerrit | A change was merged to openstack/neutron: Do not assume order of body and tags elements https://review.openstack.org/112248 | 22:42 |
*** aranjan has quit IRC | 22:44 | |
*** nlahouti has quit IRC | 22:45 | |
*** aranjan has joined #openstack-neutron | 22:47 | |
*** nlahouti has joined #openstack-neutron | 22:48 | |
*** tflynn has quit IRC | 22:49 | |
*** arborism has joined #openstack-neutron | 22:53 | |
*** dvorkinista has joined #openstack-neutron | 22:59 | |
*** dvorkini_ has joined #openstack-neutron | 23:01 | |
*** aranjan_ has joined #openstack-neutron | 23:04 | |
*** dvorkinista has quit IRC | 23:04 | |
*** aranjan has quit IRC | 23:04 | |
*** dvorkini_ has quit IRC | 23:05 | |
*** SridharRamaswamy has joined #openstack-neutron | 23:08 | |
*** yamahata_ has joined #openstack-neutron | 23:09 | |
*** diegows has joined #openstack-neutron | 23:18 | |
*** aranjan has joined #openstack-neutron | 23:23 | |
*** dimsum_ has quit IRC | 23:23 | |
*** dimsum_ has joined #openstack-neutron | 23:24 | |
*** aranjan_ has quit IRC | 23:26 | |
*** aranjan has quit IRC | 23:27 | |
*** dimsum_ has quit IRC | 23:28 | |
*** cnesa15 has quit IRC | 23:33 | |
*** SridharRamaswamy has quit IRC | 23:44 | |
*** dfarrell07 has joined #openstack-neutron | 23:49 | |
*** shashankhegde has joined #openstack-neutron | 23:52 | |
*** suresh12 has joined #openstack-neutron | 23:54 | |
*** suresh12 has quit IRC | 23:58 | |
*** tsg has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!