Tuesday, 2014-10-14

openstackgerritAlessandro Pilotti proposed a change to openstack/neutron: Fixes Hyper-V COM initializazion race condition  https://review.openstack.org/12814000:02
exploreshaifalikevinbenton, here is latest patch https://review.openstack.org/#/c/126141/00:02
*** pritesh has quit IRC00:03
*** SumitNaiksatam has quit IRC00:03
exploreshaifalikevinbenton, have submitted the patch00:05
*** yjiang5 is now known as yjiang5_away00:05
*** britthou_ has quit IRC00:05
*** britthouser has joined #openstack-neutron00:06
*** yjiang5_away has quit IRC00:06
*** marrusl has joined #openstack-neutron00:07
*** ijw_ has joined #openstack-neutron00:11
*** AbsinthMind has joined #openstack-neutron00:11
*** a_le has quit IRC00:13
*** ijw has quit IRC00:14
*** achanda has quit IRC00:16
exploreshaifalikevinbenton, all right Thanks again. Leaving00:16
*** exploreshaifali has quit IRC00:18
*** pritesh has joined #openstack-neutron00:18
*** ramishra has quit IRC00:19
*** tonyb has quit IRC00:20
*** tonyb has joined #openstack-neutron00:20
*** ZZelle_ has quit IRC00:20
*** zzzeek has quit IRC00:21
*** chuckC_ has quit IRC00:22
*** pritesh has quit IRC00:28
*** manishg has quit IRC00:29
*** pritesh has joined #openstack-neutron00:30
*** ChuckC has quit IRC00:32
*** padkrish has quit IRC00:35
*** nlahouti has quit IRC00:35
*** nlahouti has joined #openstack-neutron00:38
*** alexpilotti has quit IRC00:38
*** Sukhdev has quit IRC00:39
*** vivek-ebay has quit IRC00:43
*** vivek-ebay has joined #openstack-neutron00:43
*** SumitNaiksatam has joined #openstack-neutron00:45
*** VijayB_ has quit IRC00:47
*** pritesh has quit IRC00:48
*** VijayB_ has joined #openstack-neutron00:48
*** VijayB has joined #openstack-neutron00:49
*** VijayB_ has quit IRC00:49
*** baoli has quit IRC00:50
*** VijayB has quit IRC00:51
*** ramishra has joined #openstack-neutron00:54
*** mitz_ has quit IRC00:55
*** mitz_ has joined #openstack-neutron00:57
*** shivharis has quit IRC00:59
*** dims_ has quit IRC01:00
*** shivharis has joined #openstack-neutron01:00
*** dims has joined #openstack-neutron01:01
*** ijw_ has quit IRC01:02
*** shakayumi has quit IRC01:02
*** vivek-ebay has quit IRC01:04
*** shakayumi has joined #openstack-neutron01:04
*** armax has joined #openstack-neutron01:04
*** stanzgy has joined #openstack-neutron01:05
*** ramishra has quit IRC01:05
*** vivek-ebay has joined #openstack-neutron01:05
*** dims has quit IRC01:05
*** yjiang5 has joined #openstack-neutron01:05
kevinbentonarmax: hey01:06
armaxkevinbenton: oi01:06
*** padkrish has joined #openstack-neutron01:06
kevinbentonarmax: what was the decision for https://review.openstack.org/#/c/127943/01:06
armaxhaven’t looked at it yet01:07
kevinbentonarmax: ok. i’ll make the small change swami suggested01:07
armaxkevinbenton: thanks!01:07
*** padkrish has quit IRC01:08
*** nlahouti has quit IRC01:08
openstackgerritOpenStack Proposal Bot proposed a change to openstack/neutron: Updated from global requirements  https://review.openstack.org/12804001:08
armaxkevinbenton: I’ll look at it asap01:08
*** trad511 has joined #openstack-neutron01:09
kevinbentonarmax: there is one more i need your feedback on01:09
armaxkevinbenton: shoot01:09
kevinbentonarmax: I don’t know what to narrow the exception catching to in this https://review.openstack.org/#/c/124961/01:09
kevinbentonarmax: reschedule_router is a function that does lots of stuff01:10
openstackgerritKevin Benton proposed a change to openstack/neutron: Call DVR VMARP notify outside of transaction  https://review.openstack.org/12794301:10
armaxso what prompted you in the first place?01:10
armaxkevinbenton: you must have observed an exception at least01:10
armaxno?01:10
kevinbentonarmax: yeah, one i saw in particular was a “mysql server went away” error01:11
kevinbentonarmax: i think another was a connection refused for RPC01:11
armaxkevinbenton: so I’d say that DBerror and RPCError would be a good start01:12
armaxkevinbenton: or the equivalent for RPC I can’t recall the exact name, no it’s RemoteError01:12
kevinbentonarmax: the thing that worries me is that if we miss one, this thing just dies and it’s not an obvious bug for users to run into01:12
kevinbentonarmax: but i suppose general DB errors and RPC errors should cover the two I’ve seen01:13
armaxkevinbenton: cover both of them should give us exestive protection01:13
armaxkevinbenton: having said that I’d be fine with catching broadly01:14
armaxbut as I said, we need to limit the scope of the try-execept01:14
armaxotherwise there’s a danger, of cathing stuff that clearly we don’t want01:15
armaxperhaps we can only wrap the reschedule_router method01:16
*** dims has joined #openstack-neutron01:16
*** harlowja is now known as harlowja_away01:16
*** ChuckC has joined #openstack-neutron01:16
*** harlowja_away is now known as harlowja01:16
kevinbentonarmax: that’s not enough, if there are errors with the DB connection, L116 will fail01:16
armaxkevinbenton: sorry I hadn’t seen that one01:17
armaxoh wait01:17
dkehnarmax: when adding a 3rd party DHCP support code which provided an API to the 3rd party DHCP server , where should one place that code, it would be call that one would make from the neutron/agetn/linux/dhcp.py module01:17
armaxthe query is not issue to the DB not until12901:17
armax116 is just query preparation01:18
armaxnothing gets issued at that point01:18
armaxthe sql execute is only done lazely on query object access01:18
armaxkevinbenton: I gotta go now, ping me later if you need me01:18
openstackgerritDane LeBlanc proposed a change to openstack/neutron: Use EUI64 for IPv6 SLAAC when subnet is specified  https://review.openstack.org/10143301:19
openstackgerritDane LeBlanc proposed a change to openstack/neutron: Support Multiple IPv6 Prefixes and Addresses for IPv6 Network  https://review.openstack.org/11333901:19
*** chuckC_ has joined #openstack-neutron01:19
openstackgerritCarl Baldwin proposed a change to openstack/neutron: Make L2 DVR Agent start successfully without an active neutron server  https://review.openstack.org/12391101:19
kevinbentonarmax: so should i narrow the catch and the try-except coverage then?01:20
armaxdkehn: that would need to be looked into in the context of a larger refactoring but that’s a good place to start01:20
*** shashankhegde has quit IRC01:20
*** s3wong has quit IRC01:23
*** ramishra has joined #openstack-neutron01:23
*** yamamoto_ has joined #openstack-neutron01:23
dkehnarmax: in the neutron/agent/linux or would it be the plugin dir?01:23
*** vivek-ebay has quit IRC01:24
dkehnarmax: just curious I see that the plugins 3rd party are more switch in nature but still vendor specific01:24
*** armax has left #openstack-neutron01:25
*** shivharis has quit IRC01:28
*** ijw has joined #openstack-neutron01:28
*** Sukhdev has joined #openstack-neutron01:29
*** carl_baldwin has quit IRC01:30
*** ramishra has quit IRC01:33
*** Sukhdev has quit IRC01:33
*** popw has joined #openstack-neutron01:36
*** spandhe_ has quit IRC01:36
*** padkrish has joined #openstack-neutron01:37
*** ivar-laz_ has joined #openstack-neutron01:38
*** vivek-ebay has joined #openstack-neutron01:41
*** mestery has quit IRC01:42
*** ivar-lazzaro has quit IRC01:42
*** vivek-eb_ has joined #openstack-neutron01:45
*** vivek-ebay has quit IRC01:45
*** mestery has joined #openstack-neutron01:47
*** yjiang5 has quit IRC01:49
*** padkrish has quit IRC01:50
*** padkrish has joined #openstack-neutron01:51
*** yjiang5 has joined #openstack-neutron01:54
*** padkrish has quit IRC01:55
*** shakamunyi has joined #openstack-neutron01:56
*** shakayumi has quit IRC01:57
*** ijw has quit IRC01:58
*** trad511 has quit IRC02:01
*** yeungp has quit IRC02:01
*** gongysh has joined #openstack-neutron02:01
*** yeungp has joined #openstack-neutron02:02
*** armax has joined #openstack-neutron02:05
*** xuhanp has joined #openstack-neutron02:06
*** yeungp has quit IRC02:09
openstackgerritKevin Benton proposed a change to openstack/neutron: Catch exceptions in router rescheduler  https://review.openstack.org/12496102:11
*** X019 has quit IRC02:11
openstackgerritKevin Benton proposed a change to openstack/neutron: Call DVR VMARP notify outside of transaction  https://review.openstack.org/12794302:13
*** suresh12 has quit IRC02:14
*** suresh12 has joined #openstack-neutron02:17
*** yjiang5 has quit IRC02:18
*** popw has quit IRC02:23
*** armax has quit IRC02:27
*** ivar-laz_ has quit IRC02:27
*** ivar-lazzaro has joined #openstack-neutron02:27
*** dims has quit IRC02:29
*** shakamunyi has quit IRC02:34
*** shakamunyi has joined #openstack-neutron02:35
*** liusheng has quit IRC02:42
*** chuckC__ has joined #openstack-neutron02:44
*** shakayumi has joined #openstack-neutron02:46
*** cnesa17 has joined #openstack-neutron02:46
*** nijaba_ has joined #openstack-neutron02:47
*** tflynn_ has joined #openstack-neutron02:47
*** britthou_ has joined #openstack-neutron02:47
*** suresh12_ has joined #openstack-neutron02:47
*** jdaggett_ has joined #openstack-neutron02:48
*** wendar_ has joined #openstack-neutron02:49
*** ctracey_ has joined #openstack-neutron02:49
*** popw has joined #openstack-neutron02:50
*** SpamapS_ has joined #openstack-neutron02:50
*** morgan has joined #openstack-neutron02:52
*** yeungp has joined #openstack-neutron02:52
*** rcarrill` has joined #openstack-neutron02:53
*** shakamunyi has quit IRC02:54
*** suresh12 has quit IRC02:54
*** gongysh has quit IRC02:54
*** chuckC_ has quit IRC02:54
*** britthouser has quit IRC02:54
*** krtaylor has quit IRC02:54
*** tflynn has quit IRC02:54
*** Dafna has quit IRC02:54
*** HenryG has quit IRC02:54
*** morganfainberg has quit IRC02:54
*** cnesa16 has quit IRC02:54
*** rcarrillocruz has quit IRC02:54
*** jaypipes has quit IRC02:54
*** zenpac has quit IRC02:54
*** mgagne has quit IRC02:54
*** jroll has quit IRC02:54
*** comstud has quit IRC02:54
*** atmark has quit IRC02:54
*** ctracey has quit IRC02:54
*** jdaggett has quit IRC02:54
*** wendar has quit IRC02:54
*** vishy has quit IRC02:54
*** jmeridth has quit IRC02:54
*** adam_g has quit IRC02:54
*** nimissa1 has quit IRC02:54
*** nijaba has quit IRC02:54
*** SpamapS has quit IRC02:54
*** morgan is now known as morganfainberg02:54
*** chuckC__ is now known as chuckC_02:54
*** manishg has joined #openstack-neutron02:54
*** manishg has quit IRC02:55
*** ivar-laz_ has joined #openstack-neutron02:55
*** vishy has joined #openstack-neutron02:56
*** jdaggett_ is now known as jdaggett02:56
*** adam_g has joined #openstack-neutron02:57
*** adam_g has quit IRC02:58
*** adam_g has joined #openstack-neutron02:58
*** a_le has joined #openstack-neutron02:58
*** ivar-lazzaro has quit IRC02:59
*** ctracey_ is now known as ctracey02:59
*** ivar-laz_ has quit IRC03:00
*** Dafna has joined #openstack-neutron03:00
*** atmark has joined #openstack-neutron03:00
*** zenpac has joined #openstack-neutron03:00
*** nimissa has joined #openstack-neutron03:00
*** atmark is now known as Guest8625103:01
*** padkrish has joined #openstack-neutron03:01
*** yamahata has joined #openstack-neutron03:01
*** britthouser has joined #openstack-neutron03:02
*** carl_baldwin has joined #openstack-neutron03:02
*** britthou_ has quit IRC03:02
*** gongysh has joined #openstack-neutron03:03
*** jaypipes has joined #openstack-neutron03:04
*** krtaylor has joined #openstack-neutron03:04
*** ramishra has joined #openstack-neutron03:05
*** padkrish has quit IRC03:06
*** thedodd has joined #openstack-neutron03:08
*** mrsnivvel has joined #openstack-neutron03:10
*** armax has joined #openstack-neutron03:11
openstackgerritA change was merged to openstack/neutron: Do not assume order of lvm.tun_ofports set elements  https://review.openstack.org/11207903:17
*** WeiWang has joined #openstack-neutron03:19
*** comstud has joined #openstack-neutron03:21
*** jroll has joined #openstack-neutron03:21
*** mgagne has joined #openstack-neutron03:21
*** jmeridth has joined #openstack-neutron03:21
*** mgagne is now known as Guest8878503:21
*** suresh12_ has quit IRC03:25
*** dims has joined #openstack-neutron03:29
*** armax has quit IRC03:29
*** AbsinthMind has quit IRC03:30
*** catohornet has quit IRC03:30
*** shashankhegde has joined #openstack-neutron03:33
*** carl_baldwin has quit IRC03:34
*** dims has quit IRC03:34
*** SpamapS_ is now known as SpamapS03:34
*** armax has joined #openstack-neutron03:34
*** SpamapS has quit IRC03:34
*** SpamapS has joined #openstack-neutron03:34
*** carl_baldwin has joined #openstack-neutron03:35
*** popw has quit IRC03:43
*** popw has joined #openstack-neutron03:43
*** spandhe has joined #openstack-neutron03:43
*** leenheer has joined #openstack-neutron03:43
*** nlahouti has joined #openstack-neutron03:45
*** changbl_ has quit IRC03:46
*** nlahouti has quit IRC03:47
*** nlahouti has joined #openstack-neutron03:47
*** carl_baldwin has quit IRC03:48
*** harlowja is now known as harlowja_away03:48
*** xuhanp has quit IRC03:48
*** spandhe has quit IRC03:48
*** spandhe___ has joined #openstack-neutron03:48
*** SridharG has joined #openstack-neutron03:49
*** harlowja_away is now known as harlowja03:52
openstackgerritKevin Benton proposed a change to openstack/neutron: Catch exceptions in router rescheduler  https://review.openstack.org/12496103:55
*** thedodd has quit IRC03:56
*** achanda has joined #openstack-neutron03:56
*** ChuckC has quit IRC04:00
*** ChuckC has joined #openstack-neutron04:01
*** HenryG has joined #openstack-neutron04:12
*** vivek-eb_ has quit IRC04:12
*** amotoki has joined #openstack-neutron04:13
*** tflynn has joined #openstack-neutron04:13
*** tflynn_ has quit IRC04:17
*** tflynn has quit IRC04:18
*** SridharG has quit IRC04:18
*** yamahata has quit IRC04:19
*** yamahata has joined #openstack-neutron04:19
*** Sukhdev has joined #openstack-neutron04:19
*** armax has quit IRC04:26
*** vivek-ebay has joined #openstack-neutron04:26
*** yatin has joined #openstack-neutron04:27
*** dims has joined #openstack-neutron04:30
*** ramishra has quit IRC04:31
*** ramishra has joined #openstack-neutron04:32
*** zhhuabj has quit IRC04:33
*** zhhuabj has joined #openstack-neutron04:34
*** dims has quit IRC04:35
*** zhhuabj has quit IRC04:35
*** ramishra_ has joined #openstack-neutron04:35
*** suresh12 has joined #openstack-neutron04:36
*** ramishra has quit IRC04:36
*** zhhuabj has joined #openstack-neutron04:36
*** suresh12 has quit IRC04:40
*** rakesh_hs has joined #openstack-neutron04:42
*** yfried__ has quit IRC04:44
*** a_le has quit IRC04:44
*** WeiWang has quit IRC04:45
*** sthillma has joined #openstack-neutron04:47
*** killer_prince is now known as lazy_prince04:50
*** spandhe___ has quit IRC04:53
*** padkrish has joined #openstack-neutron04:53
*** trinaths has joined #openstack-neutron04:53
*** otherwiseguy has joined #openstack-neutron04:54
*** hanzhang has quit IRC04:56
*** spandhe_ has joined #openstack-neutron04:57
*** s3wong has joined #openstack-neutron04:58
*** neeti has joined #openstack-neutron05:02
*** padkrish has quit IRC05:02
*** padkrish has joined #openstack-neutron05:03
*** armax has joined #openstack-neutron05:04
*** rotbeard has joined #openstack-neutron05:08
*** padkrish has quit IRC05:08
*** aepifanov has joined #openstack-neutron05:13
*** emagana has joined #openstack-neutron05:14
*** padkrish has joined #openstack-neutron05:15
openstackgerritVinod Kumar proposed a change to openstack/python-neutronclient: CLI support to display DVR host mac  https://review.openstack.org/12817405:15
*** trinaths1 has joined #openstack-neutron05:15
*** otherwiseguy has quit IRC05:15
*** trinaths has quit IRC05:16
*** Longgeek has joined #openstack-neutron05:16
*** Sukhdev has quit IRC05:16
*** trinaths1 has quit IRC05:17
*** irenab has joined #openstack-neutron05:21
*** trinaths has joined #openstack-neutron05:21
*** armax has quit IRC05:21
*** shashankhegde has quit IRC05:21
*** haleyb has joined #openstack-neutron05:21
*** armax has joined #openstack-neutron05:23
*** armax has quit IRC05:23
*** shashankhegde has joined #openstack-neutron05:24
*** xuhanp has joined #openstack-neutron05:25
*** yfried__ has joined #openstack-neutron05:26
*** padkrish has quit IRC05:26
*** padkrish has joined #openstack-neutron05:27
*** leenheer has quit IRC05:28
*** spandhe_ has quit IRC05:29
*** armax has joined #openstack-neutron05:32
*** emagana_ has joined #openstack-neutron05:35
*** padkrish has quit IRC05:37
*** suresh12 has joined #openstack-neutron05:37
*** padkrish has joined #openstack-neutron05:37
*** rakesh_hs has quit IRC05:37
*** rakesh_hs has joined #openstack-neutron05:38
*** suresh12 has quit IRC05:38
*** padkrish has quit IRC05:38
openstackgerritA change was merged to openstack/neutron: Arista L3 Ops is success if it is successful on one peer  https://review.openstack.org/12388605:40
*** SridharG has joined #openstack-neutron05:40
*** padkrish_ has joined #openstack-neutron05:40
*** emagana has quit IRC05:40
*** Guest86251 has quit IRC05:40
*** marrusl has quit IRC05:40
*** bradjones has quit IRC05:40
*** lazy_prince has quit IRC05:40
*** enikanorov_ has quit IRC05:40
*** mitz has quit IRC05:40
*** harlowja has quit IRC05:40
*** stefanb has quit IRC05:40
*** sbadia has quit IRC05:40
*** dosaboy has quit IRC05:40
*** mongo2_ has quit IRC05:40
*** aszeszo has quit IRC05:40
*** padkrish_ has quit IRC05:40
*** padkrish_ has joined #openstack-neutron05:40
*** emagana_ has quit IRC05:40
*** SridharG has left #openstack-neutron05:42
*** SridharG has joined #openstack-neutron05:42
*** suresh12 has joined #openstack-neutron05:46
*** Guest86251 has joined #openstack-neutron05:46
*** marrusl has joined #openstack-neutron05:46
*** bradjones has joined #openstack-neutron05:46
*** lazy_prince has joined #openstack-neutron05:46
*** enikanorov_ has joined #openstack-neutron05:46
*** mitz has joined #openstack-neutron05:46
*** harlowja has joined #openstack-neutron05:46
*** stefanb has joined #openstack-neutron05:46
*** sbadia has joined #openstack-neutron05:46
*** aszeszo has joined #openstack-neutron05:46
*** dosaboy has joined #openstack-neutron05:46
*** mongo2_ has joined #openstack-neutron05:46
*** WeiWang has joined #openstack-neutron05:47
openstackgerritYAMAMOTO Takashi proposed a change to openstack/neutron: openvswitch: Remove no longer used options  https://review.openstack.org/12708205:47
*** afazekas has joined #openstack-neutron05:49
*** armax has quit IRC05:55
*** jeraldv has quit IRC05:55
*** armax has joined #openstack-neutron05:57
*** armax has quit IRC05:59
*** padkrish_ has quit IRC05:59
*** padkrish has joined #openstack-neutron06:00
*** dims has joined #openstack-neutron06:00
*** padkrish has quit IRC06:03
*** nmagnezi has joined #openstack-neutron06:04
*** ivar-lazzaro has joined #openstack-neutron06:05
*** nmagnezi has quit IRC06:05
*** nmagnezi has joined #openstack-neutron06:05
*** dims has quit IRC06:05
*** ivar-lazzaro has quit IRC06:07
openstackgerritAnn Kamyshnikova proposed a change to openstack/neutron: Use correct base class for unit tests for ML2 drivers  https://review.openstack.org/12589406:08
*** achanda has quit IRC06:09
*** lazy_prince is now known as killer_prince06:12
*** itzikb has joined #openstack-neutron06:12
*** evgenyf has joined #openstack-neutron06:13
*** killer_prince is now known as lazy_prince06:13
itzikbirenab: ping06:13
*** padkrish has joined #openstack-neutron06:14
*** padkrish has quit IRC06:14
*** padkrish has joined #openstack-neutron06:15
*** shashankhegde has quit IRC06:16
*** yfried__ is now known as yfried|afk06:20
openstackgerritElena Ezhova proposed a change to openstack/neutron: Handle unused set_context in L3NatTestCaseMixin.floatingip_with_assoc  https://review.openstack.org/12817806:20
*** kopparam has joined #openstack-neutron06:21
*** yfried|afk is now known as yfried__06:21
*** kopparam has quit IRC06:22
openstackgerritKevin Benton proposed a change to openstack/neutron: Call DVR VMARP notify outside of transaction  https://review.openstack.org/12794306:23
*** k4n0 has joined #openstack-neutron06:24
*** harlowja is now known as harlowja_away06:25
*** neerajgaa has joined #openstack-neutron06:26
neerajgaahello06:27
*** gildub has quit IRC06:27
neerajgaaI was trying to create instance VM on external network!06:28
neerajgaait is not accessible06:28
irenabitzk8ib: good morning06:28
neerajgaaVGM06:29
*** tflynn has joined #openstack-neutron06:30
*** coolsvap has joined #openstack-neutron06:30
*** kopparam has joined #openstack-neutron06:31
*** vthapar has joined #openstack-neutron06:31
itzikbirenab: :-) About macvtap . I thought about suggesting the dummy MAC  yesterday ..06:32
openstackgerritA change was merged to openstack/python-neutronclient: Leverage neutronclient.openstack.common.importutils import_class  https://review.openstack.org/11896906:33
*** SridharG has quit IRC06:33
*** jprovazn has joined #openstack-neutron06:34
*** shakayumi has quit IRC06:34
*** kopparam has quit IRC06:36
*** kopparam has joined #openstack-neutron06:37
*** sthillma has quit IRC06:39
*** kopparam has quit IRC06:41
*** armax has joined #openstack-neutron06:41
*** danieln has quit IRC06:42
*** yamamoto_ has quit IRC06:42
*** Longgeek has quit IRC06:44
openstackgerritKevin Benton proposed a change to openstack/neutron: Minor: remove unnecessary intermediate variable  https://review.openstack.org/12818306:44
*** Longgeek has joined #openstack-neutron06:44
*** s3wong has quit IRC06:45
*** pradipta_away is now known as pradipta06:47
*** exploreshaifali has joined #openstack-neutron06:48
*** padkrish has quit IRC06:48
*** SumitNaiksatam has quit IRC06:50
*** Longgeek_ has joined #openstack-neutron06:50
*** zzzeek has joined #openstack-neutron06:51
*** zzzeek has quit IRC06:51
*** Longgeek has quit IRC06:51
*** SumitNaiksatam has joined #openstack-neutron06:52
*** exploreshaifali has quit IRC06:52
*** nlahouti has quit IRC06:55
*** syt has joined #openstack-neutron06:59
*** suresh12 has quit IRC06:59
*** pasquier-s has joined #openstack-neutron07:00
*** doude has joined #openstack-neutron07:00
*** svilgelm has joined #openstack-neutron07:02
*** ramishra_ has quit IRC07:02
*** zarric has joined #openstack-neutron07:03
*** liusheng has joined #openstack-neutron07:05
*** jpena has joined #openstack-neutron07:05
*** yamamoto_ has joined #openstack-neutron07:09
*** jlibosva has joined #openstack-neutron07:10
*** armax has quit IRC07:11
*** yamamoto_ has quit IRC07:15
openstackgerritKevin Benton proposed a change to openstack/neutron: Catch exceptions in router rescheduler  https://review.openstack.org/12496107:16
*** gongysh has quit IRC07:17
*** yatin has quit IRC07:18
*** achanda has joined #openstack-neutron07:20
xuhanpamotoki, ping07:21
*** tomoiaga has joined #openstack-neutron07:23
*** tomoiaga has left #openstack-neutron07:24
*** armax has joined #openstack-neutron07:24
*** achanda has quit IRC07:25
*** armax has quit IRC07:29
*** yatin has joined #openstack-neutron07:31
*** nyechiel_ has joined #openstack-neutron07:32
*** jp_at_hp has joined #openstack-neutron07:34
*** tflynn has quit IRC07:34
*** trinaths has quit IRC07:35
*** vivek-ebay has quit IRC07:36
*** ihrachyshka has joined #openstack-neutron07:36
*** saju_m has joined #openstack-neutron07:37
*** luqas has joined #openstack-neutron07:38
*** amcrn has quit IRC07:38
*** ihrachyshka has quit IRC07:41
*** ollivier has joined #openstack-neutron07:43
amotokixuhanp: pong07:44
xuhanpamotoki, thanks for responding. Just want to check with you about one API change for extra_dhcp_opts07:44
amotokixuhanp: re: the ML thread on IPv6 extra_dhcp_opts?07:45
*** zhhuabj has quit IRC07:45
*** zhhuabj has joined #openstack-neutron07:45
*** zhhuabj has quit IRC07:45
*** zhhuabj has joined #openstack-neutron07:46
xuhanpamotoki, yep. So if I want to change the API format. Do I need a new neutron spec?07:46
*** zhhuabj has quit IRC07:46
*** zhhuabj has joined #openstack-neutron07:46
amotokixuhanp: yes. API change is better to be discussed in a spec review.07:46
xuhanpamotoki, I see. thanks! I will submit one ASAP07:47
amotokixuhanp: I know extra_dhcp_opts implementation is a bit odd in the behavior of PUT operation.07:47
*** danieln1 has joined #openstack-neutron07:47
*** saju_m has quit IRC07:48
xuhanpamotoki, what do you mean by odd?07:48
amotokixuhanp: IMHO I prefer to "ip_version" over just "version". "ip_version" is used as subnet attribute, so it sounds better to me if both match.07:48
xuhanpamotoki, that's the plan. to use ip_version07:49
openstackgerritVinod Kumar proposed a change to openstack/neutron: RESTful API to retrieve dvr host mac  https://review.openstack.org/11812607:49
*** trinaths has joined #openstack-neutron07:49
amotokixuhanp: In PUT operation of extra_dhcp_opts, the behavior is incremental.07:49
openstackgerritVinod Kumar proposed a change to openstack/python-neutronclient: CLI support to display DVR host mac  https://review.openstack.org/12817407:49
amotokixuhanp: a dict of dhcp opts put via API is added to the dict of dhcp opts. It is different behavior from the other PUT operation.07:50
xuhanpamotoki, you mean we can only add new opts instead of changing the existing ones?07:50
*** eoutin has joined #openstack-neutron07:51
amotokixuhanp: yes. IIRC I pointed this several times.... but the author disagreed and mark said okay...07:52
*** karimb has joined #openstack-neutron07:52
amotokixuhanp: IIRC we can remove the existing ones.07:52
*** safchain has joined #openstack-neutron07:52
xuhanpamotoki, I see. it's an odd operation indeed07:53
amotokixuhanp: I hope you will make a change carefully on this point :-)07:53
*** exploreshaifali has joined #openstack-neutron07:53
xuhanpamotoki, will do! at least I can draft a spec and see what we can discuss from there.07:54
amotokixuhanp: sure. thanks!07:54
xuhanpamotoki, thank you!07:54
openstackgerritAngus Lees proposed a change to openstack/neutron: Remove several unused variables  https://review.openstack.org/11741807:55
*** jistr has joined #openstack-neutron07:57
*** padkrish has joined #openstack-neutron07:59
*** ygbo has joined #openstack-neutron08:00
*** Longgeek_ has quit IRC08:00
*** trinaths has left #openstack-neutron08:01
*** Longgeek has joined #openstack-neutron08:01
*** jpich has joined #openstack-neutron08:03
*** padkrish has quit IRC08:03
*** lori|away is now known as lori08:05
*** Longgeek has quit IRC08:06
*** vthapar has quit IRC08:06
*** vthapar has joined #openstack-neutron08:07
*** coolsvap is now known as coolsvap|afk08:09
*** suresh12 has joined #openstack-neutron08:09
*** nmagnezi has quit IRC08:11
*** ihrachyshka has joined #openstack-neutron08:13
*** jschwarz has joined #openstack-neutron08:13
*** suresh12 has quit IRC08:14
*** nmagnezi has joined #openstack-neutron08:15
*** nmagnezi has quit IRC08:15
*** sthillma has joined #openstack-neutron08:15
*** nmagnezi has joined #openstack-neutron08:16
*** sthillma has joined #openstack-neutron08:16
*** yamamoto_ has joined #openstack-neutron08:19
*** yamamoto_ has quit IRC08:21
*** yamamoto_ has joined #openstack-neutron08:21
*** jp_at_hp has quit IRC08:22
*** jp_at_hp has joined #openstack-neutron08:22
*** alexpilotti has joined #openstack-neutron08:23
*** alexpilotti has quit IRC08:24
*** vthapar has quit IRC08:24
*** alexpilotti has joined #openstack-neutron08:24
*** ajo has joined #openstack-neutron08:25
*** vthapar has joined #openstack-neutron08:25
*** yamamoto_ has quit IRC08:26
*** shakamunyi has joined #openstack-neutron08:27
*** yfried__ is now known as yfried|afk08:30
*** yfauser has joined #openstack-neutron08:31
*** yfauser has left #openstack-neutron08:31
*** shakamunyi has quit IRC08:32
*** yfried|afk is now known as yfried__08:32
*** yatin has quit IRC08:36
*** trinaths1 has joined #openstack-neutron08:37
openstackgerritAlessandro Pilotti proposed a change to openstack/neutron: Fixes Hyper-V COM initializazion race condition  https://review.openstack.org/12814008:41
*** liusheng has quit IRC08:41
*** lazy_prince has quit IRC08:42
*** Longgeek has joined #openstack-neutron08:44
*** syt1 has joined #openstack-neutron08:46
*** amuller has joined #openstack-neutron08:46
*** syt has quit IRC08:48
*** syt1 has quit IRC08:51
*** syt has joined #openstack-neutron08:52
*** killer_prince has joined #openstack-neutron08:53
*** killer_prince is now known as lazy_prince08:53
*** yamamoto_ has joined #openstack-neutron08:55
*** yamamoto_ has quit IRC08:55
*** yfried__ is now known as yfried|afk08:58
*** gstaicu has joined #openstack-neutron08:58
gstaicuhi!08:58
gstaicucan somebody please help me with a connection issue between neutron and rabbitmq?08:59
*** k4n0 has quit IRC09:01
gstaicuI have a 17 servers deployment on havana09:01
gstaicuand everytime when I start 10 instances in the same time09:01
*** aix_ has joined #openstack-neutron09:01
gstaicuthe queue of q-plugin get a lot of unack messages09:02
gstaicudid anybody see this behavior?09:03
*** kopparam has joined #openstack-neutron09:04
*** kopparam has quit IRC09:04
openstackgerritVinod Kumar proposed a change to openstack/python-neutronclient: CLI support to display DVR host mac  https://review.openstack.org/12817409:04
*** kopparam has joined #openstack-neutron09:05
*** yfried|afk is now known as yfried__09:05
*** yatin has joined #openstack-neutron09:05
*** mancdaz_away has joined #openstack-neutron09:06
*** lazy_prince has quit IRC09:07
*** kopparam_ has joined #openstack-neutron09:07
*** mancdaz_away has quit IRC09:07
*** mancdaz_away has joined #openstack-neutron09:08
*** kopparam has quit IRC09:08
*** mancdaz_away is now known as mancdaz09:08
*** syt has quit IRC09:09
openstackgerritAlessandro Pilotti proposed a change to openstack/neutron: Fixes Hyper-V COM initializazion race condition  https://review.openstack.org/12814009:09
*** syt has joined #openstack-neutron09:09
*** kopparam_ has quit IRC09:10
*** k4n0 has joined #openstack-neutron09:14
*** ollivier has quit IRC09:16
*** killer_prince has joined #openstack-neutron09:17
*** liusheng has joined #openstack-neutron09:17
*** killer_prince is now known as lazy_prince09:17
openstackgerritKevin Benton proposed a change to openstack/neutron: Catch exceptions in router rescheduler  https://review.openstack.org/12496109:17
*** GeoPan has joined #openstack-neutron09:18
*** kopparam has joined #openstack-neutron09:19
*** trinaths1 has left #openstack-neutron09:21
*** sambetts has joined #openstack-neutron09:22
*** kopparam has quit IRC09:22
*** aix_ has quit IRC09:26
*** aix_ has joined #openstack-neutron09:27
*** jprovazn has quit IRC09:27
*** shakamunyi has joined #openstack-neutron09:28
*** shakamunyi has quit IRC09:32
*** pradipta is now known as pradipta_away09:33
*** rakesh_hs has quit IRC09:33
*** rakesh_hs2 has joined #openstack-neutron09:33
*** evgenyf has quit IRC09:33
*** svilgelm has left #openstack-neutron09:37
*** zhhuabj has quit IRC09:40
*** zhhuabj has joined #openstack-neutron09:40
*** lazy_prince has quit IRC09:41
*** evgenyf has joined #openstack-neutron09:41
*** HenryG has quit IRC09:42
*** HenryG_ has joined #openstack-neutron09:42
*** HenryG_ has quit IRC09:43
*** HenryG has joined #openstack-neutron09:43
*** armax has joined #openstack-neutron09:45
*** killer_prince has joined #openstack-neutron09:49
*** killer_prince is now known as lazy_prince09:49
openstackgerritVinod Kumar proposed a change to openstack/neutron-specs: RESTful API to retrieve dvr host mac  https://review.openstack.org/11979609:49
openstackgerritVinod Kumar proposed a change to openstack/neutron-specs: CLI support to display DVR host mac  https://review.openstack.org/12150509:50
*** eoutin has quit IRC09:50
*** syt has quit IRC09:53
*** gildub has joined #openstack-neutron09:54
*** Longgeek has quit IRC09:58
*** kopparam has joined #openstack-neutron09:59
*** xuhanp has quit IRC10:01
*** Longgeek has joined #openstack-neutron10:07
*** yfried__ is now known as yfried|afk10:08
*** yfried|afk is now known as yfried__10:08
*** lazy_prince has quit IRC10:09
*** trinaths has joined #openstack-neutron10:09
*** lazy_prince has joined #openstack-neutron10:09
*** coolsvap|afk is now known as coolsvap10:16
*** yfried__ is now known as yfried|afk10:18
*** sthillma has quit IRC10:20
*** Longgeek has quit IRC10:22
*** yfried|afk is now known as yfried__10:22
*** evgenyf has quit IRC10:23
*** evgenyf has joined #openstack-neutron10:26
*** pc_m has joined #openstack-neutron10:29
*** armax has quit IRC10:30
*** pc_m has quit IRC10:31
*** pasquier-s has quit IRC10:31
openstackgerritJaume Devesa proposed a change to openstack/neutron-specs: BGP dynamic routing  https://review.openstack.org/12540110:31
*** pc_m has joined #openstack-neutron10:31
*** bradjones has quit IRC10:33
*** bradjones has joined #openstack-neutron10:33
*** Longgeek has joined #openstack-neutron10:33
*** k4n0 has quit IRC10:33
*** yamahata has quit IRC10:37
*** dims has joined #openstack-neutron10:38
*** yfried__ is now known as yfried|afk10:42
*** dims has quit IRC10:43
*** cnesa17 has quit IRC10:43
*** neerajgaa has quit IRC10:47
*** rakesh_hs2 has quit IRC10:49
*** rakesh_hs has joined #openstack-neutron10:50
*** armax has joined #openstack-neutron10:56
*** sthillma has joined #openstack-neutron10:56
*** dims has joined #openstack-neutron11:00
*** itzikb has quit IRC11:06
*** itbrown_ has joined #openstack-neutron11:06
*** itbrown_ has quit IRC11:07
*** itzikb has joined #openstack-neutron11:07
*** armax has quit IRC11:11
*** yfried|afk is now known as yfried__11:12
*** claudiub has joined #openstack-neutron11:12
*** armax has joined #openstack-neutron11:15
*** gildub has quit IRC11:16
*** sthillma has quit IRC11:19
*** yfried__ is now known as yfried|afk11:22
*** yfried|afk is now known as yfried__11:24
*** armax has quit IRC11:26
*** kopparam has quit IRC11:27
*** cnesa17 has joined #openstack-neutron11:27
*** kopparam has joined #openstack-neutron11:28
*** hanzhang has joined #openstack-neutron11:28
*** jistr is now known as jistr|english11:29
*** neerajgaa has joined #openstack-neutron11:30
*** cbouch has joined #openstack-neutron11:32
*** yfried__ is now known as yfried|afk11:34
*** yfried|afk is now known as yfried__11:34
*** SridharG has joined #openstack-neutron11:35
*** itbrown_ has joined #openstack-neutron11:35
*** itzikb has quit IRC11:37
*** armax has joined #openstack-neutron11:41
*** popw has quit IRC11:44
*** yfried__ is now known as yfried|afk11:44
*** armax has quit IRC11:45
jlibosvaobondarev_: hi11:45
*** baoli has joined #openstack-neutron11:46
amotokikevinbenton: around?11:49
*** coolsvap is now known as coolsvap|afk11:49
*** yfried|afk is now known as yfried__11:49
*** ygbo has quit IRC11:51
*** liusheng has quit IRC11:52
*** karimb has quit IRC11:53
*** ramishra has joined #openstack-neutron11:53
*** ygbo has joined #openstack-neutron11:54
*** amotoki has quit IRC11:54
*** yamahata has joined #openstack-neutron11:57
*** amuller has quit IRC11:59
*** yfried__ is now known as yfried|afk11:59
*** trinaths has left #openstack-neutron12:00
*** trinaths has joined #openstack-neutron12:00
*** trinaths has quit IRC12:04
*** yfried|afk has quit IRC12:14
*** k4n0 has joined #openstack-neutron12:14
*** SridharG has left #openstack-neutron12:16
*** pasquier-s has joined #openstack-neutron12:19
*** yatin has quit IRC12:20
*** jkraj has joined #openstack-neutron12:20
*** dims has quit IRC12:24
*** dims has joined #openstack-neutron12:25
*** ramishra has quit IRC12:26
*** jprovazn has joined #openstack-neutron12:28
*** dims has quit IRC12:30
*** lazy_prince is now known as killer_prince12:32
*** shakayumi has joined #openstack-neutron12:35
*** shakayumi has quit IRC12:35
*** ramishra has joined #openstack-neutron12:36
*** yatin has joined #openstack-neutron12:37
openstackgerritJohn Schwarz proposed a change to openstack/neutron-specs: Integration Tests framework  https://review.openstack.org/12825712:37
openstackgerritJohn Schwarz proposed a change to openstack/neutron-specs: Integration Tests framework  https://review.openstack.org/12825712:38
openstackgerritJohn Schwarz proposed a change to openstack/neutron: Add ability to run daemonized Neutron processes  https://review.openstack.org/12825812:39
openstackgerritJohn Schwarz proposed a change to openstack/neutron: Add Integration Tests framework  https://review.openstack.org/12825912:39
openstackgerritJohn Schwarz proposed a change to openstack/neutron: Test that a namespace is created for new routers  https://review.openstack.org/12826012:39
*** karimb has joined #openstack-neutron12:39
*** amuller has joined #openstack-neutron12:41
*** rpothier has joined #openstack-neutron12:42
*** ramishra has quit IRC12:52
*** vivek-ebay has joined #openstack-neutron12:53
*** jasondotstar has quit IRC12:54
*** jistr|english is now known as jistr12:54
*** stanzgy has quit IRC12:56
*** vivek-ebay has quit IRC12:57
*** yfried|afk has joined #openstack-neutron12:59
*** f13o_f13o has joined #openstack-neutron13:00
*** f13o_f13o has quit IRC13:00
*** packet has joined #openstack-neutron13:03
openstackgerritA change was merged to openstack/neutron: Update VPN logging to use new i18n functions  https://review.openstack.org/12760013:07
*** kbringard has joined #openstack-neutron13:12
*** aepifanov has quit IRC13:13
*** aepifanov has joined #openstack-neutron13:14
*** syt has joined #openstack-neutron13:14
*** julim has joined #openstack-neutron13:18
*** jroll has quit IRC13:19
*** jroll has joined #openstack-neutron13:19
openstackgerritJaume Devesa proposed a change to openstack/neutron-specs: Edge router mapping  https://review.openstack.org/12827213:20
*** salv-orlando has joined #openstack-neutron13:20
openstackgerritJaume Devesa proposed a change to openstack/neutron-specs: BGP dynamic routing  https://review.openstack.org/12540113:22
*** rotbeard has quit IRC13:25
*** itbrown_ is now known as itzikb13:26
*** jasondotstar has joined #openstack-neutron13:29
*** exploreshaifali has quit IRC13:30
*** packet has quit IRC13:33
openstackgerritPaul Michali proposed a change to openstack/neutron-specs: Cisco VPNaaS and router integration  https://review.openstack.org/12355113:33
*** nijaba_ is now known as nijaba13:34
*** rakesh_hs has quit IRC13:34
*** nijaba has quit IRC13:34
*** nijaba has joined #openstack-neutron13:34
*** signed8bit has joined #openstack-neutron13:34
*** yatin has quit IRC13:35
*** padkrish has joined #openstack-neutron13:38
*** regXboi has joined #openstack-neutron13:38
*** dboik has joined #openstack-neutron13:39
pc_mmestery: ping13:39
mesterypc_m: Hey! In 1:1 with ttx, but whats up?13:40
regXboimestery: then I'll get in the queue :)13:40
*** nijaba has quit IRC13:40
pc_mmestery: Just wanted to get approval of BP for Kilo (https://blueprints.launchpad.net/neutron/+spec/cisco-vpnaas-and-router-integration). I have a BP Spec out for review.13:40
*** padkrish has quit IRC13:40
*** padkrish has joined #openstack-neutron13:41
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730613:42
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725713:42
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated fileutils and its dependencies  https://review.openstack.org/12828413:42
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated service.py and its dependencies  https://review.openstack.org/12828513:42
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated cache module and its dependencies  https://review.openstack.org/12828613:42
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated policy module from oslo-incubator  https://review.openstack.org/12828713:42
*** jobewan has joined #openstack-neutron13:42
mesterypc_m: Ack, that's on my list for this week13:44
pc_mmestery: thanks!13:44
*** nijaba has joined #openstack-neutron13:45
*** nijaba has quit IRC13:45
*** nijaba has joined #openstack-neutron13:45
*** armax has joined #openstack-neutron13:46
*** amotoki has joined #openstack-neutron13:47
jschwarzamotoki, hi - heard you had some more bad rains.. everything alright with you?13:51
*** itzikb has quit IRC13:53
amotokijschwarz: you seem to catch news from worldwide :-)13:54
amotokijschwarz: The wind was very strong but the typhoon went away during night and the impact was less than we are afraid before the weekend :-)13:54
mesteryamotoki: Hey, question for you sir!13:54
mesteryamotoki: https://bugs.launchpad.net/neutron/+bug/137852513:54
amotokimestery: i just read your mail :-)13:54
jschwarzamotoki, I try to keep myself updated :)13:54
mesteryamotoki: Ack, thanks!13:54
*** lori is now known as lori|away13:54
amotokiI think the impact in Horizon is limited because the feature is disabled by default.13:55
*** nijaba has quit IRC13:55
amotokimestery: so I think we can move forward for RC3.13:55
*** FJB has joined #openstack-neutron13:55
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730613:56
amotokimestery: I can discuss in Horizon meeting two hours later.13:56
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725713:56
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated policy module from oslo-incubator  https://review.openstack.org/12828713:56
mesteryamotoki: OK, so we'll do RC3 then.13:56
mesteryamotoki: Thank you!13:56
amotokimestery: I think Horizon can mention this in the release note (or quick fix in Horizon RC3).13:56
mesteryamotoki: Cool!13:57
amotokimestery: anyway i will follow up the change.13:57
mesteryamotoki: I'll get ttx and myself to merge those.13:57
amotokimestery: sounds good.13:57
jschwarzamotoki, could you have a look at a blueprint I wrote? https://blueprints.launchpad.net/neutron/+spec/integration-tests13:59
jschwarzthe more comments the merrier I'll be ;-)14:00
*** FJB has quit IRC14:00
*** yjiang5 has joined #openstack-neutron14:00
*** nijaba has joined #openstack-neutron14:00
*** nijaba has quit IRC14:00
*** nijaba has joined #openstack-neutron14:00
amotokijschwarz: sure, but let me look at it later. I would like to start neutron-specs reviews next week. I have several task queues this week :-(14:02
*** baoli has quit IRC14:02
jschwarzamotoki, it's alright, thanks14:02
jschwarzamotoki, probably need some non-core attention anyway before it's fully ready, so there's much time14:02
*** ijw has joined #openstack-neutron14:03
*** baoli has joined #openstack-neutron14:03
*** yamahata has quit IRC14:03
amotokijschwarz: I think we need a guide how to write integration tests to lower the bar for contributors.14:03
*** yamahata has joined #openstack-neutron14:04
jschwarzamotoki, marun was saying just that last week at my status with him14:04
jschwarzamotoki, this is way down in the Dev Docs section - still need to hear some other people's opinion about what to put it it14:04
openstackgerritA change was merged to openstack/neutron: Big Switch: Don't clear hash before sync  https://review.openstack.org/12734514:04
jschwarzs/it it/in it/g14:05
*** otherwiseguy has joined #openstack-neutron14:06
*** GeoPan has quit IRC14:07
amotokijschwarz: agree. we need to put our best practice and howtos to the dev docs. I am fairly new to integration tests and I might have silly questions on your reviews...14:07
*** radez_g0n3 is now known as radez14:07
amotokibut it will be a good example.14:07
*** mwagner_lap has quit IRC14:09
*** AbsinthMind has joined #openstack-neutron14:09
jschwarzamotoki, there's no such thing as silly questions14:09
jschwarz:)14:09
*** yjiang5 has quit IRC14:10
jschwarzrossella_s, ping14:10
*** ijw_ has joined #openstack-neutron14:11
*** ijw_ has quit IRC14:11
jschwarzijw, hi14:11
ZZellemestery, hi14:11
*** ijw_ has joined #openstack-neutron14:12
jschwarzijw_, hi14:12
ijw_hey14:12
mesteryZZelle ijw_ : Hi!14:12
jschwarzijw_, I have a question regarding https://blueprints.launchpad.net/neutron/+spec/mtu-selection-and-advertisement14:13
ZZellemestery, one question about https://review.openstack.org/9935614:13
ijw_Yup?14:13
jschwarzijw_, specifically, are you still working on it? :)14:13
ijw_I'm not working on it right this second.  I do want to see it implemented.14:13
ZZellemestery,  i am not sure of the process, should you remove your -2 or should i create a new change for kilo?14:13
ijw_And for what it's worth I think it's more important to have the API in place than a plugin that implements it.14:14
mesteryZZelle: You will want to update it, the template has changed. I'll remove the -2 now.14:14
rossella_sjschwarz: pong14:14
jschwarzijw_, a few of our clients also ran into some problems regarding low MTUs with tunnels14:14
*** dbite has joined #openstack-neutron14:14
jschwarzijw_, are you planning on getting this in for Kilo?14:14
jschwarzrossella_s, hi :) I finally uploaded the integration tests patches and bp, and added you as a reviewer where relevant :)14:15
ijw_Yes14:15
ZZellemestery, ok, moreover do i need to refine the spec before the design summit14:15
jschwarzijw_, what kind API do you want to have?14:15
ijw_It's in the spe14:16
ijw_c14:16
ZZelle ... i mean ... there are lots of topics in https://etherpad.openstack.org/p/kilo-neutron-summit-topics which implies potentially a lots of spec/BP for kilo14:16
mesteryZZelle: Not necessary, but the sooner you do it the better14:16
mesteryZZelle: Agreed14:16
rossella_sjschwarz: great! thanks! btw I found the answer regarding the db user and password. It's hard coded in the infra script, see https://git.openstack.org/cgit/openstack-infra/devstack-gate/tree/devstack-vm-gate.sh#n9914:16
ijw_Basically, you request your MTU on network create so that the driver has the option to refuse to make the network if it can't make the MTU you want14:17
*** dims has joined #openstack-neutron14:17
ZZellemestery, so i am not sure it's meaningful to refine too much spec before so "go for it!" approval14:17
*** yjiang5 has joined #openstack-neutron14:17
ZZelles/so/some/14:17
mesteryZZelle: How about this: I'll make sure neutron-drivers reviews it this week and get back to you Thursday.14:17
mesteryOK?14:17
ZZellemestery, great!14:18
jschwarzijw_, does this also include lowering the MTUs of the instances using DHCP?14:18
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730614:18
ZZellemestery, Thursday? is there some neutron-drivers meeting on thursday?14:18
*** mrsnivvel has quit IRC14:18
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725714:18
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated policy module from oslo-incubator  https://review.openstack.org/12828714:18
jschwarzrossella_s, talking with marun I understood from him that what we don't want to do is access the database with root permissions14:18
jschwarzrossella_s, that's what the link I posted supposed to solve - basically the post gate hook bash script runs everytime and that sets up a new user for this kind of things (and also that's what we're supposed to use)14:19
jschwarzrossella_s, but the way I see it that patch is still in discussion - not sure that's what's gonna work in the long term14:20
mesteryZZelle: It's on Wednesdays actually14:20
jschwarzin short, need to wait for marun to review your patch :)14:20
ZZellemestery, oki14:21
jschwarzijw_, we thought that in the short run (before your blueprint is implemented) we could add a warning if the MTU is too low (ie. if a network is created and tunneling is used, and the physical interface's MTU is 1500, a warning will pop). What do you think about this?14:21
rossella_sjschwarz: ok...anyway I will have a look at the script, thanks!14:21
ijw_Nearly everyone would get that warning, all the time14:21
ijw_jschwarz: in practice, the only way to get a full MTU network is to use VLAN networking14:22
ijw_VXLAN and GRE tend to knock it down, unless the implementations violate the spec and support fragmentation14:22
*** irenab has quit IRC14:22
jschwarzijw_, the idea is having a sanity script that's run on deployment14:22
jschwarzbut the idea is still getting together14:23
ijw_In a sanity that would be fine (though again it would almost always be reporting an error)14:23
ajoijw_ but that warning only needs to happen once14:23
jschwarzrossella_s, ack :)14:23
*** ijw has quit IRC14:23
ajothen people can correct their interfaces mtu, if that's enought for them14:23
jschwarzijw_, the warning is supposed to raise awareness (so clients can see that the MTU is too low and might cause problems)14:23
jschwarzwhat ajo said :)14:23
*** yjiang51 has joined #openstack-neutron14:24
*** vivek-ebay has joined #openstack-neutron14:24
ijw_jschwarz: Well, actually clients of Redhat might see it, but clients of Openstack don't14:24
jschwarzijw_, see neutron/cmd/sanity_check.py - the script is already there (and all we need to do is get devstack/packstack/... run it once the deployment is done)14:25
ajoijw_, why "clients of openstack" don't ?14:25
*** yjiang5 has quit IRC14:25
jschwarzmy intention is developing a solution all clients can use :)14:25
*** dbite has left #openstack-neutron14:25
ajoany operator would eventually look at the logs if something is wrong14:25
rooki dont understand how this is RH specific?14:25
ajome neither :)14:26
*** dbite has joined #openstack-neutron14:26
*** dbite has quit IRC14:26
rookThis is specific to deployments using GRE/VXLAN... you are telling me no one else uses tunnels?14:26
ajoijw_, ubuntu set's a chmod a-r on logs! (just kidding , sorry ijw_ )14:26
*** haleyb has quit IRC14:27
ajo:)14:27
jschwarzXD14:27
*** claudiub has quit IRC14:27
ajojokes apart, ijw_ I find your spec very interesting14:28
*** vivek-ebay has quit IRC14:28
amulleramotoki: I appreciate your help with https://bugs.launchpad.net/neutron/+bug/137852514:29
*** trad511 has joined #openstack-neutron14:29
amotokiamuller: no problem. I believe we can provide better user experience in Juno :-)14:29
amulleramotoki: I hope...14:30
jschwarzamotoki++14:30
*** gaud has joined #openstack-neutron14:31
amotokiamuller: now am writing a quick and small fix in Horizon and will discuss in the horizon meeting today.14:31
jschwarzijw_, I'd be happy to lend a hand on the spec if you need any such help - let me know if so :)14:31
ijw_jschwarz: OK - I need to review it again, but it's unlikely to happen this week because I'm on holiday from tomorrow (yay!)14:32
jschwarzijw_, me too! :) where are you from?14:32
ajoneighbors? :) ;)14:33
openstackgerritA change was merged to openstack/neutron: Handle unused set_context in L3NatTestCaseMixin.floatingip_with_assoc  https://review.openstack.org/12817814:33
ijw_ajo: and by that comment I meant that you can't, from the API, find out what the MTU is - only the person deploying Openstack can figure it out at the moment.14:33
*** carl_baldwin has joined #openstack-neutron14:34
ajoyes from the API, of course, ijw_ I mean, your spec is really worth implementing, a simple log message doesn't cover the real needs.14:34
jschwarzcarl_baldwin, morning mate - sorry I forgot to ping you earlier regarding the ns_name cleanup stuff14:35
*** neerajgaa has quit IRC14:35
ijw_Meaning that 'clients' in general would be clients of a company providing Openstack (jschwartz referred to his clients) but not clients of the API.14:35
ajobut could be a good measure to help operators finding out why they have performance issues when there is fragmentation.14:35
ajolol :)14:35
ijw_Technically there shouldn't be fragmentation, it's against the VXLAN spec (though it seems to happen)14:35
jschwarzajo, ijw_, the idea of the log message is that it can be (easily) backported to earlier versions, whereas the entire spec will probably be more difficult14:35
amotokiijw_: ajo: what blueprint or review are you discussing? just from my curiosity.14:35
carl_baldwinjschwarz: hi  No worries.14:36
jschwarzamotoki, https://review.openstack.org/#/c/105989/2/specs/juno/mtu-selection-and-advertisement.rst14:36
ajohttps://review.openstack.org/#/c/105989/14:36
ijw_amotoki: the MTU one, https://blueprints.launchpad.net/neutron/+spec/mtu-selection-and-advertisement14:36
ajo(DUP)14:36
ajo:)14:36
amotokiijw_: jschwarz thanks. it looks interesting one.14:36
ajoyes amotoki , it's a pervasive problem when using tunneling14:37
*** dbite has joined #openstack-neutron14:37
*** padkrish has quit IRC14:38
-amotoki- already starred the review.14:38
ajoamotoki, also, if you try to manipulate MTU in tenant networks, via DHCP options, it will cause problems around...14:38
ajolike qrouters not having the legs with MTU set, etc...14:38
jschwarzcarl_baldwin, I +1'd your patch though I think that in the long run this still needs fixing. Specifically using only the L3Agent.get_ns_name (instead of ri.get_ns_name), and maybe moving all that stuff to other classes14:38
amotokiajo: i understand. I experience the problem too.14:38
*** zhipeng has joined #openstack-neutron14:38
ajoand having a mismatch MTU at router legs and VM legs, causes data loss for >smalles_mtu packets14:38
ajosmallest14:38
ajoamotoki, ack :]14:38
openstackgerritJakub Libosvar proposed a change to openstack/neutron: neutron-db-manage finds automatically config file  https://review.openstack.org/12830914:39
jschwarzcarl_baldwin, I mean, we have 'get_fip_ns_name', 'get_ns_name', 'get_snat_ns_name', all receive router_id - those functions can be moved to a different namespace14:39
*** dbite has quit IRC14:39
jschwarzcarl_baldwin, likewise get_external_device_name, get_fip_ext_device_name,... which receive port_id, can be moved to their own namespace as well14:39
jschwarzcarl_baldwin, What do you think?14:39
jschwarzajo, I'm not sure that the qrouter's interfaces matter - I remember checking them and they didn't effect the MTU14:40
jschwarzajo, it was a long day though so I might be mistaken14:40
carl_baldwinjschwarz: Do you want to propose a patch to illustrate what you’re thinking?14:41
*** neeti has quit IRC14:41
jschwarzcarl_baldwin, I could if you want me to ;-) might take a few days though seeing as the rest of the week is a holiday here14:41
carl_baldwinjschwarz: understood14:41
jschwarzcarl_baldwin, will ping you back when I have something up and running14:41
carl_baldwinjschwarz: I almost have a spec written about refactoring the L3 agent.14:42
*** k4n0 has quit IRC14:42
jschwarzcarl_baldwin, also I finally uploaded the integration tests specs and patches - added you as a reviewer to the relevant patches14:42
carl_baldwinI should have had it up on Friday but it wasn’t ready.  I’ll try to get it up today.14:42
*** Dafna has quit IRC14:42
carl_baldwinjschwarz: Thanks.14:42
jschwarzcarl_baldwin, :) let me know when it's up14:42
jschwarzseems like it's spec season around here XD14:42
dkehnZZelle: saw your https://review.openstack.org/#/c/99356/ spec, so you are proposing a hook mechanism such that one can extract various informational data, would that be a correct statement?14:42
carl_baldwinI will.14:42
ajojschwarz, they matter14:42
ajojschwarz, if you lower mtu into a tenant network14:43
ajojschwarz, then you also need to lower mtu on the qrouter ports14:43
ajojschwarz, so VM.mtu = QROUTER.mtu14:43
openstackgerritAbishek Subramanian proposed a change to openstack/neutron: ML2 Cisco Nexus MD - not overwriting existing config  https://review.openstack.org/10551414:43
rookajo++ exactly14:43
jschwarzajo, when I checked that, I didn't have to - but that was 2 weeks ago and was a long day14:43
ajorook, and not sure if I'm forgetting about other cases14:43
jschwarzI'll make sure :)14:43
ajorook, there could be the case where we want to rise the external interfaces mtu, instead of lowering the tenant network ports mtu...14:44
rookjschwarz: when testing you need to go both ways (yes... i said it)..14:44
rookjschwarz guest reaching out, and external reaching in14:44
*** zilberstein has joined #openstack-neutron14:44
jschwarzanyway the sanity check is my next work item, so I should have something in the next week or so14:44
jschwarzrook, lol14:44
zilbersteinhello #openstack-neutron14:44
zilbersteinStderr: "device qbr87085844-8f already exists; can't create bridge with the same name\n"14:44
zilbersteinthe same with linuxbridge14:44
zilbersteinwhy ?14:44
ajojschwarz, the problem only happens when you transfer big packets out->in via the floating ip14:44
zilberstein( this is what nova reports )14:44
jschwarzrook, yes, I understand the logic14:44
ajoVM.mtu=140014:44
ajoQrouter.mtu=150014:44
ajoyou receive a packet from external network which is 1500... you send it to the VM as-is...14:45
jschwarzbtw, why not use jumbo frames and be done with it? ajo, rook, ijw_14:45
ajo(without fragmenting)14:45
ajothe VM drops it14:45
rooklol14:45
jschwarzincrease MTU of phys and others to 900014:45
ajojschwarz, not all nets will allow that,14:45
ajospecially if you cross over routers14:45
*** aveiga has joined #openstack-neutron14:45
ijw_jschwarz: So, if I give you an API endpoint, is it deployed on a jumbo frame infrastructure?14:45
ajobut, that's the most performant option14:45
ijw_That's the more important question14:45
jschwarzI'd think most hardware know how to deal with jumbo frames..14:46
ijw_And I can only find out if there's an API facility to ask14:46
rooksome applications are latency sensitive, and will not like a 9k mtu14:46
jschwarzack14:46
ajorook explain14:46
ijw_Also also, you can have large MTU Openstack deployments with small-MTU provider networks (which I've seen happen)14:46
ajoideally we may have both options14:46
ajobut, I see the capability to adjust tenant networks mtu, more critical14:47
*** neeti has joined #openstack-neutron14:47
rookajo stock-market apps are ns sensitive they don't want to wait to fill a 9k frame.14:47
rookns time sensitive**14:48
ijw_They don't have to wait, 9k MTUs are permitted, not required14:48
jschwarzrook, maybe join us in bluejeans and we can talk about it in the meeting tonight?14:48
rookmuch agreed14:48
ijw_Also, no-one with an ounce of sense runs latency sensitive apps virtualised14:48
rookijw_: this is referring to jschwarz's comment about "lets make everything a 9k party!"14:48
jschwarzrook, whoa, I didn't call it a party! XD14:48
rookhaha14:48
ijw_Yes, and even on a network with 9k MTUs I can send any packet size I want14:48
*** gduan has joined #openstack-neutron14:48
*** armax has quit IRC14:48
rookijw_: lol14:48
rookijw_: ever hear of nfv?14:49
ijw_So latency isn't simply longer just because 9k packets are possible14:49
rookit is coming ;)14:49
ajoijw_, true14:49
rookijw_ it is a factor in some latency sensitive applications. but i digress..14:49
*** padkrish has joined #openstack-neutron14:49
*** k4n0 has joined #openstack-neutron14:50
ijw_rook: There's a difference between NFV and 'let me do high speed trading in VMs because what could possibly go wrong'14:50
*** padkrish has quit IRC14:50
*** k4n0 has quit IRC14:50
ajorook, may be it depends on the protocol implementation14:50
rookijw_ we would be ignorant not to think people wont try it.14:50
*** padkrish has joined #openstack-neutron14:50
*** k4n0 has joined #openstack-neutron14:50
rookbut the conversation is more about warning the user/administrator they config is fubar.14:50
*** garyduan has quit IRC14:50
rooktheir*14:51
ijw_rook: what you're saying bears some relation to the truth - specifically, if you're sharing a network with other connections that use 9k MTUs you may see worse latency (but then you would anyway beacuse other processes would be flooding your pipes)14:51
ijw_rook: actually the conversation was originally about the spec14:51
*** markmcclain has joined #openstack-neutron14:52
* jschwarz will never say "9000 MTU" again14:52
rooklol14:52
jschwarzbtw, "it's over 9000" anyone? XD14:52
jschwarzhttps://www.youtube.com/watch?v=SiMHTK15Pik&spfreload=10%20Message%3A%20Unexpected%20end%20of%20input%20(url%3A%20https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DSiMHTK15Pik)14:52
*** ramishra has joined #openstack-neutron14:52
jschwarzijw_, I think we can call it a day with "there are plenty of people around wanting to help with the spec so lets talk about it next week when we have some time"14:53
jschwarzajo, rook ^14:54
ijw_Sounds good to me ;)14:54
*** ramishra has quit IRC14:54
jschwarzijw_, you never said where you're from in the world?14:54
rookjschwarz:14:54
ijw_Nope, and that's a complex question14:54
ijw_In the bay area at the momment14:54
*** ramishra has joined #openstack-neutron14:54
rooki will try to make a call/irc meeting.14:54
rookearly for the bay area!14:55
*** Dafna has joined #openstack-neutron14:55
jschwarzijw_, uhuh. asked because we also have a vacation for the rest of the week in Israel14:55
ijw_Ah - no, I'm just taking some time off, nothing special14:55
rookjschwarz:  i am on the east coast, NC14:55
jschwarztime off ftw14:55
ijw_And yes, far too early for the bay area ;)14:55
openstackgerritSalvatore Orlando proposed a change to openstack/neutron-specs: Reliable quota enforcement specification  https://review.openstack.org/12831814:56
*** johnbelamaric has joined #openstack-neutron14:56
*** thedodd has joined #openstack-neutron14:56
rookijw_ lol, I remember working at Cisco, and being n the East Coast was horrible... all SJ/Bay area meetings were EST lunch time.14:56
jschwarzrook, call/irc meeting will be nice :)14:56
ijw_rook: I was working in Europe, and my working hours were roughly about 10:30am to 2am14:57
rookOUCH14:57
rookI do not function well after 210014:57
jschwarzmarkmcclain, ping14:59
*** ramishra has quit IRC14:59
ijw_I don't really function well before 100014:59
*** xuhanp has joined #openstack-neutron14:59
ijw_Which is why I hate people on the east coast with their early morning meetings and their 3 hours of chippiness14:59
amotokiijw_: 2am on bed?15:00
rookI am one of those assholes15:00
*** dkehn has quit IRC15:00
*** nyechiel_ has quit IRC15:01
*** neeti has quit IRC15:01
*** johnbelamaric has quit IRC15:01
*** dkehn has joined #openstack-neutron15:02
*** a_le has joined #openstack-neutron15:03
*** britthou_ has joined #openstack-neutron15:03
*** carl_baldwin has quit IRC15:03
*** jobewan has quit IRC15:04
*** anna_ has joined #openstack-neutron15:04
*** zzzeek has joined #openstack-neutron15:05
*** changbl_ has joined #openstack-neutron15:06
*** vthapar has quit IRC15:06
*** jkraj has quit IRC15:07
*** britthouser has quit IRC15:07
*** marun has joined #openstack-neutron15:07
ihrachyshkaeezhova: hi15:08
ihrachyshkaeezhova: do you need that oslo.log sync for policy patch?15:08
amullermarun: Morning15:09
marunamuller: morning15:09
jschwarzmorning marun :)15:11
marunjschwarz: morning!15:12
ihrachyshkaeezhova: seems like log module is already fresh in my sync series15:12
ihrachyshkaeezhova: let me put your patch in the series15:12
*** amuller__ has joined #openstack-neutron15:13
*** amuller has quit IRC15:14
*** stanzgy has joined #openstack-neutron15:15
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: WIP: Sync policy from oslo-incubator  https://review.openstack.org/12367315:15
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730615:15
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725715:15
*** BillTheKat has joined #openstack-neutron15:16
*** gizmoguy has quit IRC15:18
*** gizmoguy has joined #openstack-neutron15:19
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: WIP: Sync policy from oslo-incubator  https://review.openstack.org/12367315:19
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730615:19
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725715:19
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated service.py and its dependencies  https://review.openstack.org/12828515:19
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated fileutils and its dependencies  https://review.openstack.org/12828415:19
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated cache module and its dependencies  https://review.openstack.org/12828615:19
*** cnesa17 has quit IRC15:20
*** evgenyf has quit IRC15:22
*** ijw has joined #openstack-neutron15:24
*** cnesa17 has joined #openstack-neutron15:25
*** ijw has quit IRC15:28
ZZelledkehn, it allows to include business command in dhcp management workflow15:29
ZZelledkehn, like configuring a security component15:29
dkehnZZelle: ah15:29
*** gstaicu has quit IRC15:29
ZZelledkehn, but that's my usecase perhaps you could find others :)15:29
dkehnZZelle: I'm wortking on providing an 3rd party DHCP server and relay, and wondering of the impacts that this might present15:30
dkehnZZelle: if any15:30
*** vivek-ebay has joined #openstack-neutron15:31
ZZellenormally no impact15:31
*** devvesa has quit IRC15:31
*** yamahata has quit IRC15:31
ZZelledkehn, perhaps it will simplify the integration15:31
*** kopparam has quit IRC15:31
*** absubram_ has joined #openstack-neutron15:32
ZZelledkehn, as workflow will be implemented on one side and actions on the other side15:32
dkehnZZelle: possibly, need to review a bit more15:32
*** nyechiel_ has joined #openstack-neutron15:32
ZZelledkehn, your driver should replaces actions not workflow15:32
dkehnZZelle: true, I'm think that really, by the time the driber see it, we are just translating from dnsmasq to another DHCP server requests and setups15:33
*** emagana has joined #openstack-neutron15:34
jschwarzmestery, thanks for the review - i'll have a look asap :)15:34
mesteryjschwarz: Thanks for the BP and work on integration tests!15:34
jschwarzit's a pleasure :)15:35
*** aepifanov has quit IRC15:35
*** absubram_ has quit IRC15:36
ZZelledkehn, so i could help (don't remember how dhpc_agent and dhcp module are linked)15:36
*** jschwarz has quit IRC15:36
*** absubram_ has joined #openstack-neutron15:37
*** mcaulfie has joined #openstack-neutron15:37
dkehnZZelle: ask request from VMs comes in the agent is requested to dela with the setup via the driver sync_state, in its current form it involves determining the DHCP port on a subnet and re-writing the output file and bouncing dnsmasq15:38
*** pasquier-s has quit IRC15:38
dkehnZZelle: thought the relay portion of this I'm not sure15:39
*** vivek-eb_ has joined #openstack-neutron15:39
dkehnmcaulfie: anything to add?15:40
*** nlahouti has joined #openstack-neutron15:40
*** vivek-ebay has quit IRC15:41
*** sballe has joined #openstack-neutron15:43
*** ijw_ has quit IRC15:46
*** leenheer has joined #openstack-neutron15:46
*** xuhanp has quit IRC15:46
*** thedodd has quit IRC15:47
*** thedodd has joined #openstack-neutron15:49
*** syt has quit IRC15:49
*** k4n0 has quit IRC15:51
*** Longgeek has quit IRC15:52
*** sthillma has joined #openstack-neutron15:55
*** emagana has quit IRC15:55
*** ramishra has joined #openstack-neutron15:55
*** rakesh_hs has joined #openstack-neutron15:57
*** ramishra has quit IRC16:00
*** ZZelle has quit IRC16:00
*** ZZelle has joined #openstack-neutron16:01
*** stanzgy has quit IRC16:01
*** afazekas has quit IRC16:02
*** manishg has joined #openstack-neutron16:03
*** shashankhegde has joined #openstack-neutron16:04
*** baoli has quit IRC16:04
*** emagana has joined #openstack-neutron16:05
*** sthillma has quit IRC16:05
*** _cjones_ has joined #openstack-neutron16:05
*** ihrachyshka has quit IRC16:06
*** baoli has joined #openstack-neutron16:06
*** ijw has joined #openstack-neutron16:08
*** amuller has joined #openstack-neutron16:11
*** thedodd has quit IRC16:11
openstackgerritA change was merged to openstack/neutron: Catch exceptions in router rescheduler  https://review.openstack.org/12496116:11
*** padkrish has quit IRC16:13
*** amuller__ has quit IRC16:13
*** yatin has joined #openstack-neutron16:13
*** yeungp has quit IRC16:14
*** Guest88785 is now known as mgagne16:15
*** mgagne is now known as Guest6329316:15
*** Guest63293 is now known as mgagne16:16
*** mgagne has joined #openstack-neutron16:16
*** yfried|afk is now known as yfried__16:16
*** emagana has quit IRC16:17
*** leenheer1 has joined #openstack-neutron16:17
*** leenheer has quit IRC16:20
*** mlavalle has joined #openstack-neutron16:20
*** ollivier has joined #openstack-neutron16:20
*** thedodd has joined #openstack-neutron16:21
*** leenheer1 has quit IRC16:23
*** baoli has quit IRC16:24
*** baoli has joined #openstack-neutron16:25
*** padkrish has joined #openstack-neutron16:25
*** padkrish has quit IRC16:25
*** padkrish has joined #openstack-neutron16:26
*** VijayB_ has joined #openstack-neutron16:29
*** mancdaz is now known as mancdaz_away16:29
*** a_le has quit IRC16:29
*** annegent_ has joined #openstack-neutron16:31
*** carl_baldwin has joined #openstack-neutron16:32
*** shashankhegde has quit IRC16:32
amotokimestery: regarding L3-HA Horizon support, there is a possible bug for RC3 and if it is in we will have the fix in RC3. otherwise we will cover it in the release note and backport it in the stable update.16:33
mesteryamotoki: Ackl16:33
amotokiit is reasonable and same as we discussed.16:34
mesteryamotoki: Perfect16:34
*** afazekas has joined #openstack-neutron16:35
*** vivek-eb_ has quit IRC16:36
*** a_le has joined #openstack-neutron16:36
*** ygbo has quit IRC16:36
*** a_le has quit IRC16:39
openstackgerritHao Chen proposed a change to openstack/neutron: Change "v6" to "ipv6"  https://review.openstack.org/12706716:39
mlavallemestery: I replied to your email regarding qa16:39
mesterymlavalle: Ack, got it sir.16:39
*** a_le has joined #openstack-neutron16:40
*** VijayB_ has quit IRC16:41
*** a_le has quit IRC16:42
*** spandhe_ has joined #openstack-neutron16:43
mlavallemestery: so i would like some guidance as to next step. we can talk in Paris, when you have a clearer perspective on kilo. in the meantime i am reading a lot of code and playin with devstack16:43
*** a_le has joined #openstack-neutron16:44
*** BillTheKat has quit IRC16:45
*** padkrish has quit IRC16:45
*** annegent_ has quit IRC16:47
*** shakayumi has joined #openstack-neutron16:48
*** armax has joined #openstack-neutron16:49
*** BillTheKat has joined #openstack-neutron16:50
*** luqas has quit IRC16:50
*** aveiga has quit IRC16:51
*** yjiang51 is now known as yjiang5_away16:51
*** jobewan has joined #openstack-neutron16:51
*** yjiang5_away has quit IRC16:51
mesterymlavalle: Ack16:51
*** jistr has quit IRC16:53
*** achanda has joined #openstack-neutron16:54
*** cbouch has quit IRC16:55
*** jschwarz has joined #openstack-neutron16:56
*** ramishra has joined #openstack-neutron16:56
*** doude has quit IRC16:56
*** sbfox has joined #openstack-neutron16:57
*** yeungp has joined #openstack-neutron16:57
*** britthou_ has quit IRC16:58
*** shashankhegde has joined #openstack-neutron16:58
*** britthouser has joined #openstack-neutron16:58
*** a_le has quit IRC16:59
*** syt has joined #openstack-neutron17:00
*** ihrachyshka has joined #openstack-neutron17:00
*** ijw has quit IRC17:00
*** tflynn has joined #openstack-neutron17:00
*** a_le has joined #openstack-neutron17:00
*** ramishra has quit IRC17:00
*** ijw has joined #openstack-neutron17:01
*** tflynn has quit IRC17:01
*** tflynn has joined #openstack-neutron17:02
*** baoli has quit IRC17:02
*** s3wong has joined #openstack-neutron17:02
*** a_le has quit IRC17:02
*** ijw has quit IRC17:02
*** a_le has joined #openstack-neutron17:02
*** tflynn_ has joined #openstack-neutron17:03
*** baoli has joined #openstack-neutron17:03
*** ijw has joined #openstack-neutron17:03
*** a_le has quit IRC17:03
*** a_le_ has joined #openstack-neutron17:03
*** annegent_ has joined #openstack-neutron17:04
*** VijayB has joined #openstack-neutron17:04
openstackgerritVivekanandan Narasimhan proposed a change to openstack/neutron: Race for l2pop when ports go up/down on same host  https://review.openstack.org/12340317:05
*** afaranha has joined #openstack-neutron17:06
*** tflynn has quit IRC17:06
*** ijw_ has joined #openstack-neutron17:07
*** armax has left #openstack-neutron17:07
afaranhaHello guys, I'm just starting at Neutron and would like to know what's the neutron service in rejoin-stack screen, can anyone help me?17:07
*** jp_at_hp has quit IRC17:07
*** ijw has quit IRC17:08
*** exploreshaifali has joined #openstack-neutron17:08
*** BillTheKat has quit IRC17:08
*** syt has quit IRC17:10
*** amotoki has quit IRC17:10
*** harlowja_away is now known as harlowja17:13
*** anna_ has quit IRC17:13
*** afazekas has quit IRC17:16
*** nyechiel_ has quit IRC17:16
*** yfried__ is now known as yfried|afk17:18
*** annegent_ has quit IRC17:20
*** vivek-ebay has joined #openstack-neutron17:20
*** vivek-ebay has quit IRC17:20
*** vivek-ebay has joined #openstack-neutron17:21
*** dsneddon_ has quit IRC17:21
*** dsneddon has joined #openstack-neutron17:21
*** padkrish has joined #openstack-neutron17:23
*** trad511 has quit IRC17:24
*** ijw has joined #openstack-neutron17:24
*** vivek-ebay has quit IRC17:24
*** anna_ has joined #openstack-neutron17:25
*** vivek-ebay has joined #openstack-neutron17:25
*** vivek-eb_ has joined #openstack-neutron17:26
*** Sukhdev has joined #openstack-neutron17:29
*** vivek-ebay has quit IRC17:29
*** ijw has quit IRC17:31
*** catohornet has joined #openstack-neutron17:33
*** sbfox has quit IRC17:33
jschwarzmarkmcclain, hi, got a minute to discuss https://review.openstack.org/#/c/117142/ ?17:33
*** carl_baldwin has quit IRC17:35
*** catohornet has quit IRC17:37
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: WIP: Sync policy from oslo-incubator  https://review.openstack.org/12367317:40
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730617:40
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725717:40
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated cache module and its dependencies  https://review.openstack.org/12828617:40
*** devvesa has joined #openstack-neutron17:40
*** amuller has quit IRC17:41
*** jlibosva has quit IRC17:41
*** suresh12 has joined #openstack-neutron17:42
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: WIP: Sync policy from oslo-incubator  https://review.openstack.org/12367317:43
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: switch to oslo.serialization  https://review.openstack.org/12730617:43
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Migrate to oslo.utils  https://review.openstack.org/12725717:43
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated service.py and its dependencies  https://review.openstack.org/12828517:43
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated fileutils and its dependencies  https://review.openstack.org/12828417:43
openstackgerritIhar Hrachyshka proposed a change to openstack/neutron: Updated cache module and its dependencies  https://review.openstack.org/12828617:44
ihrachyshkaafaranha: q-svc17:44
*** catohornet has joined #openstack-neutron17:44
ihrachyshkaafaranha: that stands for quantum-service (quantum is an old name of neutron that was dropped in havana I guess)17:44
*** amcrn has joined #openstack-neutron17:45
Sukhdevmestery: Any chance of planning for RC3?17:45
mesterySukhdev: Yes, and unfourtanetly your patch didn't make the cut after discussion with ttx today.17:45
mesteryIt can be backported to the .1 release in < 6 weeks.17:46
*** VijayB has quit IRC17:46
Sukhdevmestery: Yike!! how come?17:46
mesterySukhdev: For RC3, we only put two bugs in: One which was a 5 character change, and one which removed approx. 30 lines of code.17:46
mesteryVery low risk stuff.17:46
Sukhdevmestery: .1 is for Kilo?17:46
afaranhaihrachyshka: I'm having some issues due to Neutron policy, actually list agents is a admin only operation, but I don't get permission error when listing it using user demo, is there any known issue with policies in Neutron?17:46
*** leenheer has joined #openstack-neutron17:46
mesteryNo, the first dot release of Juno stable.17:46
*** carl_baldwin has joined #openstack-neutron17:47
*** jschwarz has quit IRC17:47
Sukhdevmestery: when does the official Juno release goes out?17:47
ihrachyshkaafaranha: sorry, no idea17:47
*** vivek-eb_ has quit IRC17:47
mesteryThursday17:47
*** vivek-ebay has joined #openstack-neutron17:48
afaranhaihrachyshka: I'll see that, Thanks :)17:48
*** ijw_ has quit IRC17:48
Sukhdevmestery: So, can you please tag it for back port to .1 release, please?17:48
*** ijw has joined #openstack-neutron17:48
mesterySukhdev: Yes sir, you can propose the cherry-pick back once we open stable/juno for patches17:49
mesteryOr I can do it, either way.17:49
*** otherwiseguy has quit IRC17:49
Sukhdevmestery: I have not done it, so not familiar with the process - do not want to miss the boat :-)17:50
*** achanda_ has joined #openstack-neutron17:50
*** annegent_ has joined #openstack-neutron17:50
mesterySukhdev: I'll make sure it happens sir.17:50
*** carl_baldwin has quit IRC17:51
Sukhdevmestery: Thank you so much…..when will stable/juno open for patches?17:51
mesterySukhdev: Sure! Once we release it Thursday, I expect stable/juno to open after that.17:51
*** aix_ has quit IRC17:52
*** mcaulfie has quit IRC17:52
*** moha_hunt has joined #openstack-neutron17:52
Sukhdevmestery: cool - will keep an eye out and possibly bug you early next week - hope that is OK17:52
*** ollivier has quit IRC17:52
*** carl_baldwin has joined #openstack-neutron17:53
*** achanda has quit IRC17:53
*** VijayB_ has joined #openstack-neutron17:53
*** annegent_ has quit IRC17:56
*** ChuckC has quit IRC17:56
*** ramishra has joined #openstack-neutron17:57
*** Zemeio has quit IRC17:57
*** BillTheKat has joined #openstack-neutron17:58
*** ijw has quit IRC17:58
*** thedodd has quit IRC17:58
*** ollivier has joined #openstack-neutron17:59
*** wendar_ is now known as wendar18:00
*** ramishra has quit IRC18:01
*** nlahouti has quit IRC18:02
*** jpich has quit IRC18:02
*** nlahouti has joined #openstack-neutron18:03
*** tflynn_ has quit IRC18:05
*** a_le_ has quit IRC18:05
*** padkrish has quit IRC18:05
*** tflynn has joined #openstack-neutron18:05
*** a_le has joined #openstack-neutron18:06
*** carl_baldwin has quit IRC18:06
*** emagana has joined #openstack-neutron18:07
*** tflynn has quit IRC18:08
*** tflynn has joined #openstack-neutron18:09
*** sbfox has joined #openstack-neutron18:11
*** radez is now known as radez_g0n318:11
*** afazekas has joined #openstack-neutron18:12
*** nyechiel_ has joined #openstack-neutron18:13
*** ianw has quit IRC18:16
*** annegent_ has joined #openstack-neutron18:17
*** ivar-lazzaro has joined #openstack-neutron18:18
*** alexpilotti has quit IRC18:19
*** cbouch has joined #openstack-neutron18:19
*** yfried|afk is now known as yfried__18:21
*** thedodd has joined #openstack-neutron18:22
*** trad511 has joined #openstack-neutron18:22
*** emagana has quit IRC18:23
*** emagana has joined #openstack-neutron18:23
*** alexpilotti_ has joined #openstack-neutron18:24
*** alexpilotti_ is now known as alexpilotti18:24
*** afazekas has quit IRC18:24
*** padkrish has joined #openstack-neutron18:24
*** emagana has quit IRC18:26
*** emagana has joined #openstack-neutron18:26
*** mcaulfie has joined #openstack-neutron18:26
*** jprovazn has quit IRC18:28
*** annegent_ has quit IRC18:29
*** yjiang5 has joined #openstack-neutron18:31
*** ZZelle_ has joined #openstack-neutron18:32
*** yjiang51 has joined #openstack-neutron18:32
*** baoli has quit IRC18:33
*** nyechiel_ has quit IRC18:33
*** salv-orlando has quit IRC18:34
*** annegent_ has joined #openstack-neutron18:35
*** yjiang5 has quit IRC18:35
*** leenheer has quit IRC18:38
*** carl_baldwin has joined #openstack-neutron18:40
ZZelle_mestery, hi²18:40
mesteryZZelle_: Hi there sir!18:41
ZZelle_mestery, one question about the new neutron-specs template18:41
mesteryZZelle_: Shoot!18:41
*** emagana has quit IRC18:42
ZZelle_mestery, the "Community Impact" section will be written by spec owner or neutron-driver cores?18:42
*** rakesh_hs has quit IRC18:42
*** BillTheKat has quit IRC18:42
mesteryZZelle_: spec owner, just how it will impact the community going forward, does it fit with the direction the community is going, etc.18:43
ZZelle_mestery, oki, not fully sure to know what to write18:44
mesteryZZelle_: I'm sure reviewers will comment if it misses the mark ;)18:45
ZZelle_mestery, argh ... i hate reviewers :)18:45
mesteryZZelle_: :P18:45
*** haleyb has joined #openstack-neutron18:46
*** syt has joined #openstack-neutron18:48
*** radez_g0n3 is now known as radez18:49
*** sambetts has quit IRC18:50
*** cbouch has quit IRC18:52
*** cnesa17 has quit IRC18:56
*** baoli has joined #openstack-neutron18:57
*** ramishra has joined #openstack-neutron18:57
*** ihrachyshka has quit IRC18:58
*** ianw has joined #openstack-neutron18:59
*** AbsinthMind has quit IRC19:00
*** AbsinthMind has joined #openstack-neutron19:00
*** annegent_ has quit IRC19:01
*** yatin has quit IRC19:01
*** gildub has joined #openstack-neutron19:02
*** ramishra has quit IRC19:03
*** shakayumi has quit IRC19:04
*** shakayumi has joined #openstack-neutron19:04
*** changbl_ has quit IRC19:08
*** dmellado has quit IRC19:09
roaetmestery: ping, what is the best e-mail to contact you from?19:10
*** igordcard has joined #openstack-neutron19:11
roaetmestery: thanks!19:11
mesteryroaet: Sure!19:11
openstackgerritCedric Brandily proposed a change to openstack/neutron-specs: DHCP agent customization  https://review.openstack.org/9935619:14
*** suresh12 has quit IRC19:15
*** _cjones_ has quit IRC19:17
*** _cjones_ has joined #openstack-neutron19:18
*** leenheer has joined #openstack-neutron19:18
*** _cjones_ has quit IRC19:22
*** carl_baldwin has quit IRC19:25
*** thedodd has quit IRC19:27
*** ijw has joined #openstack-neutron19:28
*** Sukhdev has quit IRC19:29
*** safchain has quit IRC19:30
*** ijw has quit IRC19:34
*** trad511 has quit IRC19:36
*** bradjones has quit IRC19:36
*** achanda_ has quit IRC19:36
*** salv-orlando has joined #openstack-neutron19:37
*** thedodd has joined #openstack-neutron19:38
*** padkrish has quit IRC19:38
*** nlahouti has quit IRC19:38
openstackgerritmark mcclain proposed a change to openstack/neutron: remove E251 exemption from pep8 check  https://review.openstack.org/9952119:39
*** nlahouti has joined #openstack-neutron19:40
*** padkrish has joined #openstack-neutron19:40
*** padkrish has quit IRC19:41
*** padkrish has joined #openstack-neutron19:43
openstackgerritmark mcclain proposed a change to openstack/neutron: enable E713 in pep8 tests  https://review.openstack.org/9952219:45
*** trad511 has joined #openstack-neutron19:47
*** trad5111 has joined #openstack-neutron19:49
*** _cjones_ has joined #openstack-neutron19:49
*** VijayB_ has quit IRC19:49
openstackgerritmark mcclain proposed a change to openstack/neutron: enable F402 check for flake8  https://review.openstack.org/9954819:50
*** trad511 has quit IRC19:51
*** achanda has joined #openstack-neutron19:53
*** padkrish has quit IRC19:54
*** BillTheKat has joined #openstack-neutron19:55
*** anna_ is now known as XX01919:56
*** XX019 is now known as X01919:56
*** vivek-ebay has quit IRC19:56
*** annegent_ has joined #openstack-neutron19:57
*** ramishra has joined #openstack-neutron19:58
*** annegent_ has quit IRC19:58
*** nlahouti has quit IRC19:58
*** annegent_ has joined #openstack-neutron19:59
*** killer_prince has quit IRC20:01
*** ramishra has quit IRC20:03
openstackgerritmark mcclain proposed a change to openstack/neutron: enable F811 check for flake8  https://review.openstack.org/9954920:03
*** shakayumi has quit IRC20:04
*** shakayumi has joined #openstack-neutron20:05
*** achanda has quit IRC20:05
*** baoli has quit IRC20:07
*** sbfox has quit IRC20:07
*** killer_prince has joined #openstack-neutron20:11
*** a_le has quit IRC20:11
*** killer_prince is now known as lazy_prince20:11
*** sbfox has joined #openstack-neutron20:11
*** a_le has joined #openstack-neutron20:11
*** BillTheKat has quit IRC20:13
openstackgerritmark mcclain proposed a change to openstack/neutron: enable F812 check for flake8  https://review.openstack.org/9955020:13
openstackgerritA change was merged to openstack/neutron: Remove an argument that is never used  https://review.openstack.org/12734120:15
*** _cjones_ has quit IRC20:16
*** padkrish has joined #openstack-neutron20:16
*** _cjones_ has joined #openstack-neutron20:19
*** mwagner_lap has joined #openstack-neutron20:19
*** shakayumi has quit IRC20:20
*** shakayumi has joined #openstack-neutron20:20
*** gaud has left #openstack-neutron20:20
*** suresh12 has joined #openstack-neutron20:21
*** jschwarz has joined #openstack-neutron20:23
*** aepifanov has joined #openstack-neutron20:23
*** devvesa has quit IRC20:23
*** jprovazn has joined #openstack-neutron20:24
*** nus has joined #openstack-neutron20:28
*** VijayB_ has joined #openstack-neutron20:33
*** ollivier has quit IRC20:34
*** carl_baldwin has joined #openstack-neutron20:36
*** carl_baldwin has quit IRC20:36
*** aepifanov has quit IRC20:36
*** openstackgerrit has quit IRC20:36
*** jschwarz has quit IRC20:38
*** syt has quit IRC20:39
*** julim has quit IRC20:39
*** jprovazn has quit IRC20:42
*** mwagner_lap has quit IRC20:43
*** carl_baldwin has joined #openstack-neutron20:44
*** ihrachyshka has joined #openstack-neutron20:50
*** carl_baldwin has quit IRC20:54
*** aj9 has joined #openstack-neutron20:56
*** carl_baldwin has joined #openstack-neutron20:57
*** vivek-ebay has joined #openstack-neutron20:57
*** ramishra has joined #openstack-neutron20:59
*** nlahouti has joined #openstack-neutron21:00
*** carl_baldwin has quit IRC21:00
*** achanda has joined #openstack-neutron21:00
*** otherwiseguy has joined #openstack-neutron21:01
*** signed8bit has quit IRC21:01
*** signed8bit has joined #openstack-neutron21:01
*** mestery has quit IRC21:01
*** vivek-ebay has quit IRC21:01
*** mestery has joined #openstack-neutron21:02
*** manishg has quit IRC21:02
*** zenpac has left #openstack-neutron21:03
*** ramishra has quit IRC21:03
*** achanda_ has joined #openstack-neutron21:03
*** vivek-ebay has joined #openstack-neutron21:03
*** achanda__ has joined #openstack-neutron21:06
*** achanda has quit IRC21:06
*** carl_baldwin has joined #openstack-neutron21:08
*** achanda_ has quit IRC21:09
*** jpena is now known as jpena|afk21:14
*** zigo has quit IRC21:16
*** ChuckC has joined #openstack-neutron21:19
*** annegen__ has joined #openstack-neutron21:19
*** leenheer has quit IRC21:19
ChuckCsc68cal: hi21:21
*** annegent_ has quit IRC21:23
*** manishg has joined #openstack-neutron21:24
*** _cjones_ has quit IRC21:31
*** manishg has quit IRC21:31
*** _cjones_ has joined #openstack-neutron21:31
*** mcaulfie has quit IRC21:33
*** VijayB_ has quit IRC21:35
*** VijayB_ has joined #openstack-neutron21:35
*** _cjones_ has quit IRC21:36
*** _cjones_ has joined #openstack-neutron21:36
*** annegen__ has quit IRC21:38
*** harlowja is now known as harlowja_away21:39
*** syt has joined #openstack-neutron21:40
*** syt has quit IRC21:42
*** manishg has joined #openstack-neutron21:43
*** yjiang51 has left #openstack-neutron21:45
*** X019 has quit IRC21:46
*** leenheer has joined #openstack-neutron21:49
*** emagana has joined #openstack-neutron21:50
*** karimb has quit IRC21:50
*** rpothier has quit IRC21:51
*** tflynn_ has joined #openstack-neutron21:52
*** manishg has quit IRC21:52
*** tflynn has quit IRC21:55
*** X019 has joined #openstack-neutron21:58
*** yeungp has quit IRC21:59
*** ramishra has joined #openstack-neutron22:00
*** pritesh has joined #openstack-neutron22:01
*** kbringard has quit IRC22:01
*** AbsinthMind has quit IRC22:02
*** Zemeio has joined #openstack-neutron22:02
*** nmagnezi has quit IRC22:03
*** annegent_ has joined #openstack-neutron22:03
*** otherwiseguy has quit IRC22:03
*** emagana has quit IRC22:04
*** dims_ has joined #openstack-neutron22:04
*** emagana has joined #openstack-neutron22:04
*** ramishra has quit IRC22:05
*** dims_ has quit IRC22:06
*** dims_ has joined #openstack-neutron22:07
*** dims has quit IRC22:07
*** emagana has quit IRC22:09
*** Zemeio has quit IRC22:10
*** dims_ has quit IRC22:12
*** MentalRay has joined #openstack-neutron22:14
*** pritesh has quit IRC22:19
*** dims has joined #openstack-neutron22:19
*** dims is now known as dimsum_22:22
*** dimsum_ is now known as dims22:22
*** dims has quit IRC22:22
*** dims has joined #openstack-neutron22:23
*** ianw has quit IRC22:23
*** ianw has joined #openstack-neutron22:23
*** pritesh has joined #openstack-neutron22:24
*** harlowja_away is now known as harlowja22:25
*** manishg has joined #openstack-neutron22:25
*** igordcard has quit IRC22:26
*** ijw has joined #openstack-neutron22:32
*** annegent_ has quit IRC22:32
*** tflynn_ has quit IRC22:33
*** tflynn has joined #openstack-neutron22:34
*** tflynn has quit IRC22:34
*** tflynn has joined #openstack-neutron22:35
*** ijw has quit IRC22:37
*** carl_baldwin has quit IRC22:37
*** MentalRay has quit IRC22:44
*** signed8bit has quit IRC22:46
*** thedodd has quit IRC22:47
*** pc_m has quit IRC22:49
*** leenheer has quit IRC22:52
*** manishg has quit IRC22:52
*** jpena|afk has quit IRC22:53
*** dboik has quit IRC22:56
*** jobewan has quit IRC22:56
*** leenheer has joined #openstack-neutron22:57
*** vivek-ebay has quit IRC22:59
*** zhipeng has quit IRC22:59
*** ramishra has joined #openstack-neutron23:00
*** tflynn_ has joined #openstack-neutron23:01
*** mcaulfie has joined #openstack-neutron23:01
*** haleyb has quit IRC23:01
*** aj9 has quit IRC23:02
*** tflynn_ has quit IRC23:02
*** tflynn_ has joined #openstack-neutron23:02
*** openstackgerrit has joined #openstack-neutron23:03
*** trad5111 has quit IRC23:03
*** tflynn has quit IRC23:04
*** ramishra has quit IRC23:05
*** vivek-ebay has joined #openstack-neutron23:06
*** mlavalle has quit IRC23:07
*** annegent_ has joined #openstack-neutron23:08
*** ZZelle_ has quit IRC23:11
*** dims has quit IRC23:12
*** dims has joined #openstack-neutron23:13
*** pritesh has quit IRC23:14
*** sbfox has quit IRC23:18
*** moha_hunt has quit IRC23:20
*** zzzeek has quit IRC23:21
*** dims has quit IRC23:22
*** annegent_ has quit IRC23:26
*** dboik has joined #openstack-neutron23:26
*** leenheer1 has joined #openstack-neutron23:27
*** ihrachyshka has quit IRC23:28
*** leenheer1 has quit IRC23:30
*** leenheer has quit IRC23:32
*** ijw has joined #openstack-neutron23:33
*** suresh12 has quit IRC23:34
*** dboik has quit IRC23:35
*** suresh12 has joined #openstack-neutron23:35
*** dboik has joined #openstack-neutron23:36
*** regXboi has quit IRC23:37
*** ijw has quit IRC23:38
*** tflynn_ has quit IRC23:44
*** Zemeio has joined #openstack-neutron23:44
*** tflynn has joined #openstack-neutron23:44
*** markmcclain has quit IRC23:45
*** jaypipes has quit IRC23:45
*** manishg has joined #openstack-neutron23:47
*** jordandh has quit IRC23:53
*** jordandh has joined #openstack-neutron23:54
*** manishg has quit IRC23:55
*** jordandh has joined #openstack-neutron23:56
*** padkrish has quit IRC23:56
*** Vad has quit IRC23:57
*** yeungp has joined #openstack-neutron23:58

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