Saturday, 2014-09-27

*** xgerman has quit IRC00:01
*** saipandi has quit IRC00:03
*** sballe_ has quit IRC00:03
*** saipandi has joined #openstack-neutron00:03
*** sballe_ has joined #openstack-neutron00:03
*** mdorman has quit IRC00:04
*** dave_tucker_zzz is now known as dave_tucker00:05
*** ChuckC_ has quit IRC00:07
*** mlavalle has quit IRC00:08
*** dimsum_ has quit IRC00:10
*** dimsum_ has joined #openstack-neutron00:10
*** seizadi has quit IRC00:11
*** armax has left #openstack-neutron00:14
*** otherwiseguy has quit IRC00:14
*** dave_tucker is now known as dave_tucker_zzz00:14
*** dimsum_ has quit IRC00:14
*** otherwiseguy has joined #openstack-neutron00:14
*** sballe_ has quit IRC00:15
*** sballe_ has joined #openstack-neutron00:15
*** dave_tucker_zzz is now known as dave_tucker00:16
*** Sukhdev has quit IRC00:16
*** dave_tucker is now known as dave_tucker_zzz00:17
*** vivek-ebay has quit IRC00:17
*** aranjan has quit IRC00:17
*** a_le has joined #openstack-neutron00:19
*** kk_ has quit IRC00:21
*** shashankhegde has quit IRC00:23
*** marun has joined #openstack-neutron00:24
*** smcquaid has quit IRC00:26
*** otherwiseguy has quit IRC00:26
*** marun has quit IRC00:29
*** cjellick has quit IRC00:30
*** yamahata_ has quit IRC00:34
*** VijayB_ has quit IRC00:34
*** parkit has quit IRC00:34
*** parkit has joined #openstack-neutron00:37
*** tflynn has quit IRC00:39
*** sgordon_ has quit IRC00:40
*** VijayB_ has joined #openstack-neutron00:40
*** chuckC has joined #openstack-neutron00:41
*** nlahouti has quit IRC00:41
*** zhhuabj has quit IRC00:44
prometheanfireguess not...00:44
prometheanfirethis is sad, was working with ovs, but switching to linuxbridge makes everything break00:45
larsksWhat inspired the switch to linuxbridge?00:45
*** parkit has quit IRC00:45
larsksAlso, what interface is it looking for that doesn't exist?00:45
*** baoli has joined #openstack-neutron00:46
*** parkit has joined #openstack-neutron00:47
*** SridharRamaswamy has quit IRC00:48
*** a_le has quit IRC00:49
openstackgerritArmando Migliaccio proposed a change to openstack/neutron: Fix deadlock while deleting external networks with associated FIP's  https://review.openstack.org/12448300:51
prometheanfirelarsks: performance mainly (for the reason00:53
prometheanfirelarsks: here's a link of neutron-linuxbridge-agent running on the compute node https://gist.github.com/prometheanfire/08b833d129e2a7f35f3a00:54
larsksThat 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
larsksIf the given interface does not have <addr> it should return nothing, but not result in an error.01:02
larsksprometheanfire: Is tunl0@NONE a device actually being used on your system?01:03
prometheanfireit is01:04
prometheanfireat the bottom of the paste is a snippet from 'ip link'01:04
larsksBut is it being used?  It looks unconfigured in that example.01:05
prometheanfireif I set the local_ip in /etc/neutron/plugins/linuxbridge/linuxbridge_conf.ini it will try to use it01:05
prometheanfireit's not in use01:05
prometheanfireat all01:05
prometheanfireit's the device for ipinip support01:05
*** dimsum_ has joined #openstack-neutron01:06
larsksCan you just 'modprobe -r ipip'? Or are you using ipip tunnels?01:07
prometheanfirethis is a static kernel, no modules01:07
prometheanfirethat's another bug btw :P01:07
larsksAh. Hmm.01:07
*** parkit has quit IRC01:07
*** parkit has joined #openstack-neutron01:08
prometheanfirehttps://github.com/openstack/neutron/blob/stable/icehouse/neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py#L56601:08
prometheanfirethat section should just be 'return os.path.exists('/sys/module/vxlan')'01:08
larsksSo, I'm waffling about whether to call this a neutron bug or an 'iproute2' bug.01:09
prometheanfirethat'll allow for static kernel01:09
prometheanfireya, I dunno01:09
prometheanfireI can update iproute201:09
prometheanfirepick a version :P01: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
prometheanfireI'll try latest non-git01:10
larsksOn my system, I would probably fix this by simply skipping over device names of the form '<name>@<something>'.01:10
prometheanfireagreed01:11
larsks...but that is the wrong general solution.01:11
larsksBecause, e.g., macvlan interfaces look like '<macvlan_name>@<primary_if_name>'.01:11
prometheanfireyepyep01:11
larsksI 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
prometheanfirestill get the error with the latest iproute201:12
prometheanfiresys-apps/iproute2-3.16.0-r101:12
prometheanfireip addr show to 10.10.4.4 works01:13
prometheanfirereturns the interface with it01:13
*** cnesa14 has quit IRC01:13
prometheanfirewhy not just do that instead?01:13
*** _cjones_ has quit IRC01:13
*** _cjones_ has joined #openstack-neutron01:13
larsksI 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
larsksSimilarly 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 IRC01:14
prometheanfireoh01:14
prometheanfireyou use return codes01:14
*** _cjones_ has joined #openstack-neutron01:14
prometheanfirewonder if the bridges I use are causing it to happen01:15
prometheanfiresec, think I might know why01:15
prometheanfireI'm thinking it's trying to find the IP in another namespace01:16
*** radez_g0n3 is now known as radez01:16
larsksI guess that's possible, although it should still be handling the interface name differently.  So maybe there are multiple problems :)01:16
prometheanfireI see you are familiar with neutron :P01:17
prometheanfireI do have another question01:19
prometheanfireif using linuxbridge, do you still set this for the firewall?01:19
prometheanfirefirewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver01:19
*** flashgordon is now known as jogo01:19
larsksSo, 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
prometheanfireok01:20
*** manishg has quit IRC01:21
*** VijayB_ has quit IRC01:21
prometheanfirewhere is get_interface_by_ip defined?01:21
larsksAccording to your traceback, /usr/lib64/python2.7/site-packages/neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py01:23
prometheanfirethat's where the function's called01:24
prometheanfirewhere's the code :D01:24
*** _cjones_ has quit IRC01:24
prometheanfirethe backend for what's actually running01:24
*** _cjones_ has joined #openstack-neutron01:24
*** jp_at_hp has quit IRC01:25
*** lazy_prince has quit IRC01:25
larsksNo, it's defined in that file.01:26
larskshttps://github.com/openstack/neutron/blob/master/neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py#L14701:26
prometheanfirethink it's this01:26
prometheanfire2014-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 list01:26
HenryGsalv-orlando: please review https://review.openstack.org/76520 when you get a chance01:26
larsksThe get_devices() method comes from ip_lib.py.01:26
prometheanfireagya01:27
*** _cjones_ has quit IRC01:27
*** _cjones_ has joined #openstack-neutron01:27
HenryGmestery: Can you target https://bugs.launchpad.net/neutron/+bug/1346444 for juno?01:27
*** _cjones_ has quit IRC01:28
*** _cjones_ has joined #openstack-neutron01:29
HenryGmestery: It's just tests to prevent regressions in DB migrations.01:29
*** _cjones_ has quit IRC01:33
*** dsneddon is now known as dsneddon_gone01:34
*** jdaggett has quit IRC01:36
*** dougwig has quit IRC01:37
openstackgerritLars Kellogg-Stedman proposed a change to openstack/neutron: Handle interfaces names in 'ip link' output with '@'  https://review.openstack.org/12455701:37
*** sweston has quit IRC01:38
*** lori is now known as lori|away01:38
*** dave_tucker_zzz is now known as dave_tucker01: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_zzz01:52
*** diegows has quit IRC01:54
*** dimsum_ has quit IRC02:06
*** dimsum_ has joined #openstack-neutron02:06
*** vivek-ebay has joined #openstack-neutron02:09
*** dimsum_ has quit IRC02:11
*** spandhe has quit IRC02:11
*** vivek-eb_ has joined #openstack-neutron02:12
*** vivek-ebay has quit IRC02:13
*** _cjones_ has joined #openstack-neutron02:20
*** ramishra has joined #openstack-neutron02:21
*** ijw has joined #openstack-neutron02:21
*** VijayB_ has joined #openstack-neutron02:22
*** aranjan has joined #openstack-neutron02:23
*** gildub has quit IRC02:23
*** VijayB_ has quit IRC02:26
*** ijw has quit IRC02:26
*** aranjan_ has joined #openstack-neutron02:26
*** aranjan has quit IRC02:30
*** aranjan_ has quit IRC02:31
*** fifieldt has quit IRC02:31
*** killer_prince has joined #openstack-neutron02:35
*** killer_prince is now known as lazy_prince02:36
prometheanfireoh nice02:37
prometheanfirethat's the one line patch I was looking for :P02:39
*** ivar-lazzaro has quit IRC02:40
openstackgerritArmando Migliaccio proposed a change to openstack/neutron: Add check for DVR router while creating VPN service  https://review.openstack.org/12103802:41
*** yamahata_ has joined #openstack-neutron02:45
*** radez is now known as radez_g0n302:47
*** wanghong has quit IRC02:47
*** Longgeek has joined #openstack-neutron02:55
prometheanfirewith that patch I'm making progress02:57
prometheanfire:D02:57
*** parkit has quit IRC02:57
*** wanghong has joined #openstack-neutron02:59
*** yamahata_ has quit IRC03:03
*** harlowja is now known as harlowja_away03:05
*** _cjones_ has quit IRC03:07
*** _cjones_ has joined #openstack-neutron03:07
*** drjones has joined #openstack-neutron03:13
*** _cjones_ has quit IRC03:16
*** drjones has quit IRC03:17
*** Longgeek_ has joined #openstack-neutron03:21
*** Longgeek has quit IRC03:23
*** otherwiseguy has joined #openstack-neutron03:27
*** ramishra has quit IRC03:29
*** ramishra has joined #openstack-neutron03:29
*** a_le has joined #openstack-neutron03:40
*** dsneddon_gone has quit IRC03:46
*** xgerman has joined #openstack-neutron03:49
*** sgordon has quit IRC03:51
*** nlahouti has joined #openstack-neutron03:53
*** signed8bit has joined #openstack-neutron03:59
*** daya_k has joined #openstack-neutron04:04
*** otherwiseguy has quit IRC04:05
*** itlinux has left #openstack-neutron04:17
*** carl_baldwin has joined #openstack-neutron04:19
*** nlahouti has quit IRC04:22
*** nlahouti has joined #openstack-neutron04:22
*** Sukhdev has joined #openstack-neutron04:23
*** ijw has joined #openstack-neutron04:24
*** aranjan has joined #openstack-neutron04:26
*** flaviof is now known as flaviof_zzz04:27
*** ijw has quit IRC04:29
*** signed8bit has quit IRC04:33
*** jdaggett has joined #openstack-neutron04:34
*** Apsu has quit IRC04:36
*** _cjones_ has joined #openstack-neutron04:41
*** a_le has quit IRC04:42
*** yamahata_ has joined #openstack-neutron04:42
*** dougwig has joined #openstack-neutron04:44
*** carl_baldwin has quit IRC04:45
*** sweston has joined #openstack-neutron04:45
*** Apsu has joined #openstack-neutron04:46
*** carl_baldwin has joined #openstack-neutron04:47
*** _cjones_ has quit IRC04:50
*** _cjones_ has joined #openstack-neutron04:50
*** leenheer has joined #openstack-neutron04:52
*** _cjones_ has quit IRC04:55
*** dimsum_ has joined #openstack-neutron04:56
*** aranjan_ has joined #openstack-neutron04:57
*** dimsum_ has quit IRC05:01
*** aranjan has quit IRC05:01
*** reed has quit IRC05:01
*** aranjan_ has quit IRC05:02
*** baoli has quit IRC05:04
*** seizadi has joined #openstack-neutron05:05
*** zhhuabj has joined #openstack-neutron05:07
*** carl_baldwin has quit IRC05:07
*** xgerman has quit IRC05:08
*** tflynn has joined #openstack-neutron05:11
*** amcrn_ has quit IRC05:13
*** daya_k has quit IRC05:17
*** linuxgeek_ has quit IRC05:24
*** ijw has joined #openstack-neutron05:25
*** seizadi has quit IRC05:25
*** ijw has quit IRC05:30
*** tflynn has quit IRC05:37
*** aranjan has joined #openstack-neutron05:38
*** tflynn has joined #openstack-neutron05:41
*** dvorkinista has joined #openstack-neutron05:49
*** tflynn has quit IRC05:54
*** tflynn has joined #openstack-neutron05:55
*** dvorkinista has quit IRC05:59
*** dvorkinista has joined #openstack-neutron06:01
*** leenheer has quit IRC06:01
openstackgerritOpenStack Proposal Bot proposed a change to openstack/neutron: Imported Translations from Transifex  https://review.openstack.org/12394306:16
*** yamahata_ has quit IRC06:19
*** dvorkinista has quit IRC06:20
*** Sukhdev has quit IRC06:23
*** nlahouti1 has joined #openstack-neutron06:26
*** nlahouti2 has joined #openstack-neutron06:27
*** tflynn has quit IRC06:27
*** nlahouti has quit IRC06:28
*** yamahata_ has joined #openstack-neutron06:30
*** nlahouti1 has quit IRC06:31
*** britthou_ has joined #openstack-neutron06:34
*** yamahata_ has quit IRC06:34
*** daya_k has joined #openstack-neutron06:35
*** nlahouti2 has quit IRC06:35
*** nlahouti has joined #openstack-neutron06:35
*** britthouser has quit IRC06:37
*** aranjan_ has joined #openstack-neutron06:38
*** tflynn has joined #openstack-neutron06:40
*** ramishra has quit IRC06:40
*** aranjan has quit IRC06:41
*** lazy_prince has quit IRC06:42
*** tflynn has quit IRC06:42
*** aranjan_ has quit IRC06:42
*** tflynn has joined #openstack-neutron06:43
*** dimsum_ has joined #openstack-neutron06:45
*** killer_prince has joined #openstack-neutron06:46
*** killer_prince is now known as lazy_prince06:46
*** dkehnm has quit IRC06:49
*** dimsum_ has quit IRC06:50
*** dkehn has quit IRC06:51
*** dkehnm has joined #openstack-neutron06:51
*** dkehn has joined #openstack-neutron06:53
*** xuhanp has joined #openstack-neutron07:00
*** HenryG_ has joined #openstack-neutron07:08
*** HenryG has quit IRC07:11
*** stanzgy has joined #openstack-neutron07:13
*** tflynn has quit IRC07:18
*** sballe has quit IRC07:25
*** nimrodsun___ has quit IRC07:25
*** dougwig has quit IRC07:25
*** sweston has quit IRC07:25
*** jdaggett has quit IRC07:25
*** zhiyan has quit IRC07:25
*** s0mik has quit IRC07:25
*** ctracey_ has quit IRC07:25
*** vivek-eb_ has quit IRC07:26
*** s0mik has joined #openstack-neutron07:30
*** s0mik has quit IRC07:30
*** zhipeng has quit IRC07:31
*** nlahouti has quit IRC07:33
*** trinaths has joined #openstack-neutron07:38
*** daya_k has quit IRC07:39
*** trinaths1 has joined #openstack-neutron07:40
*** trinaths has quit IRC07:43
trinaths1Hi All , Good Afternoon07:50
*** zhipeng has joined #openstack-neutron07:52
*** xuhanp has quit IRC07:52
*** zhipeng has quit IRC07:57
prometheanfirelarsks: got it all working, thanks :D08:11
*** ijw has joined #openstack-neutron08:28
*** jamiehannaford has joined #openstack-neutron08:32
*** ijw has quit IRC08:33
*** Longgeek_ has quit IRC08:39
*** Longgeek has joined #openstack-neutron08:40
*** Longgeek has quit IRC08:45
*** trinaths1 has quit IRC09:02
*** zhipeng has joined #openstack-neutron09:13
*** zhipeng has quit IRC09:27
*** igordcard has joined #openstack-neutron09:28
*** zhipeng has joined #openstack-neutron09:33
*** salv-orlando has quit IRC09:38
*** igordcard has quit IRC09:40
*** Longgeek has joined #openstack-neutron09:40
*** Longgeek has quit IRC09:41
*** Longgeek has joined #openstack-neutron09:41
*** Longgeek has quit IRC09:42
*** yfauser has joined #openstack-neutron10:06
*** yfauser has left #openstack-neutron10:06
*** saipandi has quit IRC10:09
*** stanzgy has quit IRC10:24
*** wanghong has quit IRC10:58
*** wanghong has joined #openstack-neutron10:58
*** Longgeek has joined #openstack-neutron11:13
*** Longgeek has quit IRC11:17
*** Longgeek has joined #openstack-neutron11:24
*** ijw has joined #openstack-neutron11:32
*** dimsum_ has joined #openstack-neutron11:36
*** ijw has quit IRC11:37
*** dimsum_ has quit IRC11:40
*** Longgeek has quit IRC11:41
*** rotbeard has joined #openstack-neutron11:51
*** diegows has joined #openstack-neutron12:07
*** dimsum_ has joined #openstack-neutron12:16
*** ijw has joined #openstack-neutron12:33
*** diegows has quit IRC12:35
*** ijw has quit IRC12:38
*** ZZelle has quit IRC13:03
*** ZZelle has joined #openstack-neutron13:03
*** ihrachyshka has joined #openstack-neutron13:05
*** Longgeek has joined #openstack-neutron13:24
*** dimsum_ has quit IRC13:28
*** dimsum_ has joined #openstack-neutron13:29
*** dimsum_ has quit IRC13:33
*** ijw has joined #openstack-neutron13:34
*** ijw has quit IRC13:39
*** jckasper has quit IRC13:43
*** karimb has joined #openstack-neutron13:45
*** jckasper has joined #openstack-neutron13:54
*** jckasper_ has joined #openstack-neutron13:55
*** jckasper has quit IRC13:55
*** lazy_prince has quit IRC13:58
*** baoli has joined #openstack-neutron14:01
*** xuhanp has joined #openstack-neutron14:06
*** otherwiseguy has joined #openstack-neutron14:10
*** zhipeng_ has joined #openstack-neutron14:15
*** zhipeng has quit IRC14:19
*** baoli has quit IRC14:19
*** dimsum_ has joined #openstack-neutron14:21
*** killer_prince has joined #openstack-neutron14:23
*** killer_prince is now known as lazy_prince14:23
*** dkehnm has quit IRC14:27
*** xuhanp has quit IRC14:28
*** zhhuabj has quit IRC14:29
*** zhipeng_ has quit IRC14:31
*** a_le has joined #openstack-neutron14:32
*** a_le has quit IRC14:37
*** JayJ__ has joined #openstack-neutron14:46
*** aranjan has joined #openstack-neutron14:47
*** dkehnm has joined #openstack-neutron14:51
openstackgerritA change was merged to openstack/neutron: Eliminate OrderedDict from test_api_v2.py  https://review.openstack.org/12318915:04
*** SridharRamaswamy has joined #openstack-neutron15:15
*** leenheer has joined #openstack-neutron15:16
*** yfauser has joined #openstack-neutron15:18
*** yfauser has left #openstack-neutron15:18
openstackgerritA change was merged to openstack/neutron: Add unit tests covering single operations to ODL  https://review.openstack.org/11619915:20
*** SridharRamaswamy has quit IRC15:22
*** leenheer has quit IRC15:28
*** leenheer has joined #openstack-neutron15:29
*** JayJ__ has quit IRC15:33
*** karimb has quit IRC15:35
*** ijw has joined #openstack-neutron15:37
*** shashankhegde has joined #openstack-neutron15:37
*** ollivier has joined #openstack-neutron15:39
*** ijw_ has joined #openstack-neutron15:40
*** ijw has quit IRC15:41
*** xgerman has joined #openstack-neutron15:41
*** baoli has joined #openstack-neutron15:43
*** ihrachyshka has quit IRC15:45
*** leenheer has quit IRC15:47
*** xgerman has quit IRC15:55
*** otherwiseguy has quit IRC15:57
*** gangil has joined #openstack-neutron15:58
*** nlahouti has joined #openstack-neutron16:06
*** thomasem has joined #openstack-neutron16:11
*** leenheer has joined #openstack-neutron16:14
*** dimsum_ has quit IRC16:21
*** dimsum_ has joined #openstack-neutron16:21
*** dimsum_ has quit IRC16:26
*** JayJ__ has joined #openstack-neutron16:28
*** dvorkinista has joined #openstack-neutron16:30
*** gangil has quit IRC16:30
*** SumitNaiksatam_ has joined #openstack-neutron16:33
*** SumitNaiksatam has quit IRC16:36
*** SumitNaiksatam_ is now known as SumitNaiksatam16:36
*** aranjan has quit IRC16:37
*** aranjan has joined #openstack-neutron16:39
*** cnesa14 has joined #openstack-neutron16:39
*** vivek-ebay has joined #openstack-neutron16:39
*** leenheer has quit IRC16:39
*** thomasem has quit IRC16:40
*** leenheer has joined #openstack-neutron16:40
*** gangil has joined #openstack-neutron16:41
*** gangil has joined #openstack-neutron16:41
*** vivek-eb_ has joined #openstack-neutron16:43
*** vivek-ebay has quit IRC16:43
*** dvorkinista has quit IRC16:45
*** SumitNaiksatam_ has joined #openstack-neutron16:45
*** SumitNaiksatam has quit IRC16:48
*** SumitNaiksatam_ is now known as SumitNaiksatam16:48
*** dvorkinista has joined #openstack-neutron16:52
*** yfried has joined #openstack-neutron16:57
*** suresh12 has joined #openstack-neutron16:57
*** Longgeek has quit IRC16:58
*** Longgeek has joined #openstack-neutron16:59
*** Longgeek has quit IRC17:03
*** thedodd has joined #openstack-neutron17:09
*** tsg has joined #openstack-neutron17:09
*** thedodd has quit IRC17:13
*** a_le has joined #openstack-neutron17:15
*** a_le has quit IRC17:15
*** a_le has joined #openstack-neutron17:16
*** JayJ__ has quit IRC17:16
*** ijw_ has quit IRC17:16
*** gangil has quit IRC17:17
*** rotbeard has quit IRC17:17
*** _cjones_ has joined #openstack-neutron17:20
*** changbl_ has quit IRC17:22
*** shashankhegde has quit IRC17:23
*** dbyte has joined #openstack-neutron17:26
*** JayJ__ has joined #openstack-neutron17:27
*** rharwood has quit IRC17:29
*** aranjan has quit IRC17:29
*** rharwood has joined #openstack-neutron17:29
*** aranjan has joined #openstack-neutron17:29
*** nimissa1 has joined #openstack-neutron17:31
*** q3k has quit IRC17:31
*** tsg has quit IRC17:31
*** aranjan has quit IRC17:34
*** dfarrell07 has joined #openstack-neutron17:35
*** dvorkinista has quit IRC17:37
*** cnesa14 has quit IRC17:37
*** HenryG_ has quit IRC17:37
*** sbalukoff has quit IRC17:37
*** insequent has quit IRC17:37
*** mitz has quit IRC17:37
*** dave_tucker_zzz has quit IRC17:37
*** JoshNang has quit IRC17:37
*** corvus has quit IRC17:37
*** chrisf has quit IRC17:37
*** cgoncalves has quit IRC17:37
*** radez_g0n3 has quit IRC17:37
*** phschwartz has quit IRC17:37
*** nimissa has quit IRC17:37
*** mugsie has quit IRC17:37
*** blogan has quit IRC17:37
*** dguerri has quit IRC17:37
*** clarkb has quit IRC17:37
*** mtreinish has quit IRC17:37
*** lifeless has quit IRC17:37
*** dvorkinista has joined #openstack-neutron17:40
*** ollivier has left #openstack-neutron17:40
*** shashankhegde has joined #openstack-neutron17:42
*** q3k has joined #openstack-neutron17:44
*** linuxgeek_ has joined #openstack-neutron17:45
*** cnesa14 has joined #openstack-neutron17:46
*** HenryG_ has joined #openstack-neutron17:46
*** sbalukoff has joined #openstack-neutron17:46
*** insequent has joined #openstack-neutron17:46
*** mitz has joined #openstack-neutron17:46
*** dave_tucker_zzz has joined #openstack-neutron17:46
*** JoshNang has joined #openstack-neutron17:46
*** corvus has joined #openstack-neutron17:46
*** chrisf has joined #openstack-neutron17:46
*** cgoncalves has joined #openstack-neutron17:46
*** radez_g0n3 has joined #openstack-neutron17:46
*** phschwartz has joined #openstack-neutron17:46
*** mugsie has joined #openstack-neutron17:46
*** blogan has joined #openstack-neutron17:46
*** dguerri has joined #openstack-neutron17:46
*** clarkb has joined #openstack-neutron17:46
*** mtreinish has joined #openstack-neutron17:46
*** lifeless has joined #openstack-neutron17:46
*** JayJ__ has quit IRC17:47
*** diegows has joined #openstack-neutron17:47
*** dvorkinista has quit IRC17:48
*** emagana has joined #openstack-neutron17:53
*** JayJ__ has joined #openstack-neutron17:53
*** dimsum_ has joined #openstack-neutron17:54
openstackgerritA change was merged to openstack/neutron: Revert "Cleanup floatingips also on router delete"  https://review.openstack.org/12172917:55
*** _cjones_ has quit IRC18:00
*** _cjones_ has joined #openstack-neutron18:00
*** igordcard has joined #openstack-neutron18:03
*** dvorkinista has joined #openstack-neutron18:12
*** vivek-eb_ has quit IRC18:12
*** _cjones_ has quit IRC18:13
*** _cjones_ has joined #openstack-neutron18:13
*** emagana has quit IRC18:14
*** vivek-eb_ has joined #openstack-neutron18:16
*** _cjones_ has quit IRC18:18
*** JayJ__ has quit IRC18:19
*** JayJ__ has joined #openstack-neutron18:19
*** shashankhegde has quit IRC18:20
*** salv-orlando has joined #openstack-neutron18:21
*** JayJ___ has joined #openstack-neutron18:22
*** JayJ__ has quit IRC18:24
*** JayJ___ has quit IRC18:27
*** suresh12 has quit IRC18:28
*** suresh12 has joined #openstack-neutron18:30
*** aepifanov has joined #openstack-neutron18:32
*** tsg has joined #openstack-neutron18:33
*** vivek-eb_ has quit IRC18:33
*** dfarrell07 has quit IRC18:33
*** xgerman has joined #openstack-neutron18:39
*** xgerman has quit IRC18:47
*** suresh12 has quit IRC18:47
*** dimsum_ has quit IRC18:58
*** dimsum_ has joined #openstack-neutron18:59
*** aranjan has joined #openstack-neutron18:59
*** dimsum_ has quit IRC19:03
*** jamiehannaford has quit IRC19:10
*** aranjan has quit IRC19:13
*** dbyte has quit IRC19:14
*** shashankhegde has joined #openstack-neutron19:14
*** suresh12 has joined #openstack-neutron19:18
*** baoli has quit IRC19:19
*** baoli has joined #openstack-neutron19:19
*** suresh12 has quit IRC19:26
*** salv-orlando has quit IRC19:26
*** shashankhegde has quit IRC19:27
openstackgerritKevin Benton proposed a change to openstack/neutron: Remove some duplicate unit tests  https://review.openstack.org/12291119:27
*** aranjan has joined #openstack-neutron19:29
*** baoli has quit IRC19:29
openstackgerritKevin Benton proposed a change to openstack/neutron: Remove some duplicate unit tests  https://review.openstack.org/12291119:30
openstackgerritKevin Benton proposed a change to openstack/neutron: Fix broken port query in Extraroute test case  https://review.openstack.org/12292919:30
*** baoli has joined #openstack-neutron19:34
*** Guest70419 has joined #openstack-neutron19:35
*** Guest70419 has left #openstack-neutron19:36
*** SumitNaiksatam has quit IRC19:42
*** aranjan has quit IRC19:43
*** SumitNaiksatam has joined #openstack-neutron19:43
*** diegows has quit IRC19:48
*** Longgeek has joined #openstack-neutron19:59
*** dvorkinista has quit IRC20:00
*** Longgeek has quit IRC20:03
*** changbl_ has joined #openstack-neutron20:07
*** sgordon_ has joined #openstack-neutron20:15
*** britthou_ has quit IRC20:17
*** harlowja_away has quit IRC20:23
*** dougwig has joined #openstack-neutron20:27
*** aranjan has joined #openstack-neutron20:32
*** vivek-ebay has joined #openstack-neutron20:32
*** chuckC_ has joined #openstack-neutron20:34
*** tsg has quit IRC20:34
*** aranjan has quit IRC20:35
*** mordred_ has joined #openstack-neutron20:37
*** dhellmann has joined #openstack-neutron20:37
*** openstack has joined #openstack-neutron20:45
*** suresh12 has quit IRC20:47
*** chuckC_ has quit IRC20:48
*** baoli has quit IRC20:50
*** jeraldv has joined #openstack-neutron20:57
*** dimsum_ has joined #openstack-neutron21:01
*** dimsum_ has quit IRC21:06
*** liusheng has quit IRC21:06
*** liusheng has joined #openstack-neutron21:07
*** cnesa15 has joined #openstack-neutron21:07
*** cnesa14 has quit IRC21:08
*** jeraldv has quit IRC21:16
*** jeraldv has joined #openstack-neutron21:18
*** dvorkinista has joined #openstack-neutron21:19
*** vivek-ebay has quit IRC21:24
*** leenheer has joined #openstack-neutron21:25
*** a_le has quit IRC21:29
*** a_le has joined #openstack-neutron21:30
*** aranjan has joined #openstack-neutron21:30
*** suresh12 has joined #openstack-neutron21:40
*** aranjan has quit IRC21:42
*** sballe__ has joined #openstack-neutron21:45
*** suresh12 has quit IRC21:46
*** sballe_ has quit IRC21:48
*** sballe__ has quit IRC21:48
*** liusheng has quit IRC21:48
*** sballe__ has joined #openstack-neutron21:49
*** liusheng has joined #openstack-neutron21:49
*** otherwiseguy has joined #openstack-neutron21:52
*** dimsum_ has joined #openstack-neutron22:08
*** tsg has joined #openstack-neutron22:15
*** tflynn has joined #openstack-neutron22:17
*** igordcard has quit IRC22:17
*** sgordon_ has quit IRC22:21
*** dvorkinista has quit IRC22:28
*** Guest___ has joined #openstack-neutron22:30
*** aranjan has joined #openstack-neutron22:30
*** salv-orlando has joined #openstack-neutron22:30
*** zhipeng has joined #openstack-neutron22:35
*** Guest___ has quit IRC22:38
*** jaschluc has joined #openstack-neutron22:38
*** otherwiseguy has quit IRC22:39
*** jaschluc has quit IRC22:41
openstackgerritA change was merged to openstack/neutron: Do not assume order of body and tags elements  https://review.openstack.org/11224822:42
*** aranjan has quit IRC22:44
*** nlahouti has quit IRC22:45
*** aranjan has joined #openstack-neutron22:47
*** nlahouti has joined #openstack-neutron22:48
*** tflynn has quit IRC22:49
*** arborism has joined #openstack-neutron22:53
*** dvorkinista has joined #openstack-neutron22:59
*** dvorkini_ has joined #openstack-neutron23:01
*** aranjan_ has joined #openstack-neutron23:04
*** dvorkinista has quit IRC23:04
*** aranjan has quit IRC23:04
*** dvorkini_ has quit IRC23:05
*** SridharRamaswamy has joined #openstack-neutron23:08
*** yamahata_ has joined #openstack-neutron23:09
*** diegows has joined #openstack-neutron23:18
*** aranjan has joined #openstack-neutron23:23
*** dimsum_ has quit IRC23:23
*** dimsum_ has joined #openstack-neutron23:24
*** aranjan_ has quit IRC23:26
*** aranjan has quit IRC23:27
*** dimsum_ has quit IRC23:28
*** cnesa15 has quit IRC23:33
*** SridharRamaswamy has quit IRC23:44
*** dfarrell07 has joined #openstack-neutron23:49
*** shashankhegde has joined #openstack-neutron23:52
*** suresh12 has joined #openstack-neutron23:54
*** suresh12 has quit IRC23:58
*** tsg has quit IRC23:59

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!