Friday, 2015-02-20

*** jobewan has quit IRC00:02
HenryGjogo: https://review.openstack.org/15760600:03
*** yapeng has joined #openstack-neutron00:05
*** manishg has quit IRC00:08
*** yapeng_ has joined #openstack-neutron00:09
*** leenheer has quit IRC00:10
*** leenheer has joined #openstack-neutron00:12
*** yapeng has quit IRC00:12
*** pavel_bondar has quit IRC00:13
*** ParsectiX has quit IRC00:13
*** ParsectiX has joined #openstack-neutron00:14
*** pavel_bondar has joined #openstack-neutron00:14
*** carl_baldwin has joined #openstack-neutron00:15
*** moha_hunt has quit IRC00:15
*** a_le_ has joined #openstack-neutron00:17
*** seizadi has quit IRC00:17
*** seizadi has joined #openstack-neutron00:18
*** ZZelle_ has quit IRC00:20
*** a_le has quit IRC00:20
mlavallecarl_baldwin: ping00:20
carl_baldwinmlavalle: pong00:21
mlavallecarl_baldwin: where did I go wrong? ;-(00:21
openstackgerritAssaf Muller proposed openstack/neutron: Enable pylint bad-super-call  https://review.openstack.org/15759900:21
openstackgerritAssaf Muller proposed openstack/neutron: Enable pylint maybe-no-member  https://review.openstack.org/15760900:21
openstackgerritAssaf Muller proposed openstack/neutron: Enable pylint no-value-for-parameter  https://review.openstack.org/15761000:21
carl_baldwinmlavalle: Could you post the commands you used to rebase your patch set where I can see?  Then, we can figure it out.00:22
carl_baldwinmlavalle: It isn’t anything that we can’t recover.00:22
*** seizadi has quit IRC00:23
*** hichihar_ has joined #openstack-neutron00:23
*** yapeng_ has quit IRC00:24
*** yamamoto has joined #openstack-neutron00:24
*** yamamoto has quit IRC00:25
*** _cjones_ has quit IRC00:25
*** seizadi has joined #openstack-neutron00:26
otherwiseguyHenryG: dougwig: mestery: https://review.openstack.org/157560 https://review.openstack.org/156692 https://review.openstack.org/156694 and https://review.openstack.org/156691 should be ready to go, which would then make https://review.openstack.org/155906 ready to the best of my knowledge.00:27
mlavallecarl_baldwin: git checkout master. git pull. git review -d 147744. git rebase master. and then vin and git add for each indivudual file with conflicts. git rebase --continue.00:30
otherwiseguyThe pylint/novaclinet fix for neutron: https://review.openstack.org/157517 has some openstack-requirements issues due to the novaclient 'contrib' module only being available via neutronclient.v2 which didn't exist until the latest release. There was another patch addressing the same issue: https://review.openstack.org/#/c/152907/ which doesn't catch everything, but has a ugly-but-serviceable hack around the 'contrib'00:31
otherwiseguy issue. So maybe a combination of the two patches.00:31
*** aranjan has joined #openstack-neutron00:31
carl_baldwinmlavalle: “git rebase master” picks up the entire chain of patches and rebases to master.  It this case you depended on an old version of the dependency and rebased it.00:31
mlavallecarl_baldwin: at this point another set of conflicts showed up. So I repeted the process of vim, git add. at the end git rebase --continue. At this point I fixed one comment that pc_m made eralier today. git commit -a --amend. Finally git review --no-rebase00:33
*** seizadi1 has joined #openstack-neutron00:33
*** apuimedo has quit IRC00:33
* otherwiseguy disappears yet again00:33
mlavallecarl_baldwin: so, what should have been my rebase command?00:33
dougwigso is it a pylint bug, or was the nova client doing something funky?00:34
otherwiseguyI'll be back in a couple of hours, then back to work.00:34
otherwiseguydougwig: pylint just not capable of seeing that something was actually ok00:34
*** seizadi has quit IRC00:34
dougwigshould the fix just be disabling the offending rule?00:34
otherwiseguythey modified sys.modules to handle aliasing v2 to v1_1.00:34
otherwiseguydougwig: It's easy enough to just use novaclient correctly, except for that little hack because of contrib.00:35
* otherwiseguy will get stabbed if he doesn't leave now, so leaves00:35
otherwiseguy:)00:35
jogoHenryG: awesome, thanks!00:35
dougwigsure, but rules with a false positive rate tend to make the tool a bigger annoyance than help00:35
carl_baldwinmlavalle: It is tricky and not widely understood.  One needs to carefully emulate what gerrit does with its rebase button.  Also, if one needs to rebase multiple interdependent patches, one should work from the bottom up, patch by patch and rebase one at a time.00:35
carl_baldwinmlavalle: What gerrit does is it rebases the patch (only one patch) to the most recent version of the patch on which it depends, not master.00:36
*** seizadi has joined #openstack-neutron00:37
carl_baldwinmlavalle: Here is what I do.00:37
openstackgerritMerged openstack/neutron: Remove remaining root_helper args from plugins  https://review.openstack.org/15552300:37
*** seizadi1 has quit IRC00:37
carl_baldwinmlavalle: Say the most recent version of the previous patch has commit id “abcdefgh”00:37
carl_baldwinmlavalle: git review -d 14774400:38
carl_baldwinmlavalle: git rebase HEAD^ —onto abcdefgh00:38
carl_baldwinmlavalle: … resolve conflicts …00:39
carl_baldwinmlavalle: git rebase —continue && git review --no-rebase00:39
mlavallecarl_baldwin: that assumes that the previous patch has already been rebased on master, right?00:40
carl_baldwinmlavalle: Yes, hence “one should work from the bottom up”00:40
openstackgerritBrian Haley proposed openstack/neutron: Change linux/ip_lib code to better handle address families  https://review.openstack.org/15755500:40
*** seizadi1 has joined #openstack-neutron00:41
*** seizadi has quit IRC00:41
mlavallecarl_baldwin: to make sure I understand, in this case up is change 147744?00:42
carl_baldwinmlavalle: Yes.  follow the chain of “depends-on” to the end: the one that doesn’t depend on any other patch.  That is what I call the bottom.  That is good to clarify.00:43
HenryGIt doesn't help that in gerrit you click on the upper dependency to go down in the chain. :)00:45
carl_baldwinmlavalle: It is complex and I don’t think there are many out there who do it this way.00:45
carl_baldwinmlavalle: I would like for “git review” to have the capability to do this automatically the correct way emulating how gerrit does rebase.00:45
carl_baldwinHenryG: Right.  It is important to follow the Depends-On and *not* the Needed-By.00:46
carl_baldwin:)00:46
carl_baldwinmlavalle: It doesn’t help that the conflict resolution with the root_helper changes and this change is a bear.  ;)00:48
*** ajmiller has quit IRC00:48
*** a_le_ has quit IRC00:48
*** markvoelker has joined #openstack-neutron00:50
*** a_le has joined #openstack-neutron00:50
*** a_le has quit IRC00:51
*** a_le has joined #openstack-neutron00:51
*** crc32 has quit IRC00:52
mlavallecarl_baldwin: thank you for taking the time to walk me through this. Right now 147744 failed a lot of things in Jenkins. Is that because it is not properly rebased?00:53
openstackgerritCarl Baldwin proposed openstack/neutron: Refactor management of namespaces in the L3 Agent  https://review.openstack.org/14774400:53
*** seizadi1 has quit IRC00:53
carl_baldwinmlavalle: I think I just took care of most of them ^00:54
*** seizadi has joined #openstack-neutron00:54
mlavallecarl_baldwin: was it due to it not being properly rebased?00:54
carl_baldwinmlavalle: I think it was due to the removal of root_helper from the l3 agent.00:56
*** a_le_ has joined #openstack-neutron00:56
carl_baldwinmlavalle: I think I got all of the unit tests but I’m not in a position at the moment to run the functional.00:56
mlavallecarl_baldwin: all right. Is there anything I can do tonight to help?00:57
carl_baldwinmlavalle: However, I think the other failures will fall in line with the fixes I did.00:57
*** SumitNaiksatam has quit IRC00:57
carl_baldwinmlavalle: You’ll probably want to make sure your local copy has the latest patch set.00:57
*** yamamoto has joined #openstack-neutron00:57
*** a_le_ has quit IRC00:58
*** a_le has quit IRC00:58
mlavallecarl_baldwin: will do. By the way, in one laptop I have git review 1.24. The other one has 1.2300:58
*** a_le has joined #openstack-neutron00:58
*** seizadi1 has joined #openstack-neutron00:58
carl_baldwinmlavalle: Right, I was worried that the problem was an old git review.  But, we found out what happened.00:58
*** markvoelker has quit IRC00:59
*** david-lyle is now known as david-lyle_afk00:59
carl_baldwinmlavalle: It would’ve had to have been like 1.16 to be broken in the way I was thinking.00:59
*** seizadi has quit IRC00:59
mlavallecarl_baldwin: so the problem was my brain version ;-)00:59
openstackgerritAssaf Muller proposed openstack/neutron: Fix non-existent self.local_subnets in DvrRouter class  https://review.openstack.org/15762101:00
*** markvoelker has joined #openstack-neutron01:00
carl_baldwinmlavalle: Don’t beat yourself up.  :)  It is all good.  I’d be interested to poll the community to see how others would do this rebase.  I bet the vast majority would do it just the way you did.01:01
mlavallecarl_baldwin: I'm sure tonight, in the darkness, I'll beat myself a little bit more. I guess that's how I lern and I'll survive. Thanks for taking care of the teaching / supporting side :-)01:02
carl_baldwinmlavalle: I’ll walk you through the next rebase of my patch set to yours (https://review.openstack.org/#/c/154513/)01:02
openstackgerritAssaf Muller proposed openstack/neutron: Enable 'free' pylint checks  https://review.openstack.org/15760901:02
openstackgerritAssaf Muller proposed openstack/neutron: Enable pylint no-value-for-parameter  https://review.openstack.org/15761001:02
openstackgerritAssaf Muller proposed openstack/neutron: Enable pylint bad-super-call  https://review.openstack.org/15759901:02
openstackgerritAssaf Muller proposed openstack/neutron: Enable pylint unnecessary-pass  https://review.openstack.org/15762201:02
carl_baldwinmlavalle: $ git review -d 15451301:03
*** seizadi1 has quit IRC01:03
*** seizadi has joined #openstack-neutron01:03
*** rushil has quit IRC01:03
carl_baldwinmlavalle: Now, I follow the depends-on link and find out that the newest patch set has commit id of d27c383d1d48d2d47cc4213d4df5832226ed0c8e01:03
carl_baldwinmlavalle: Note here that if your local gerrit repo does not have this commit id then you get use part of the git fetch command that gerrit offers:01:04
carl_baldwinmlavalle: e.g. git fetch ssh://carl-baldwin@review.openstack.org:29418/openstack/neutron refs/changes/44/147744/2401:04
*** heyongli has quit IRC01:05
dougwigcarl_baldwin: i'm much sleazier in how i rebase chains.01:05
carl_baldwindougwig: If the chains belong to you and you alone, its all good.01:06
carl_baldwinmlavalle: (resolve conflicts)  This may take me a minute....01:06
* mlavalle taking notes01:06
*** alex_xu has quit IRC01:06
dougwigno matter what, i trash my branch, cut a new one via git review -d and then a new topic, and then cherry-pick my commit.  it's the sledgehammer.01:06
carl_baldwindougwig: This doesn’t sound that much different.  git rebase HEAD^ —onto xyz is hardly distinguishable from a cherry-pick.01:07
dougwigi've just managed to screw it up every time, and i don't screw up destroying and rebuilding.  :)01:08
carl_baldwindougwig: It is like a cherry-pick from the other side.  It tends to be a little more intuitive to me.01:08
dougwigso i stick with it01:08
*** heyongli has joined #openstack-neutron01:08
carl_baldwinMany people think /me thinks backwards...01:08
dougwig /me is perfect.01:08
dougwig:)01:08
*** alex_xu has joined #openstack-neutron01:09
*** markmcclain has joined #openstack-neutron01:11
* carl_baldwin still resolving conflicts...01:12
*** Sukhdev has joined #openstack-neutron01:14
*** achanda has quit IRC01:16
* mlavalle will be here until we walk though the whole process01:16
*** shwetaap has quit IRC01:17
openstackgerritAssaf Muller proposed openstack/neutron: DVR OVS agent - Change references to non-existent self.phys_br  https://review.openstack.org/15762801:19
*** amuller has joined #openstack-neutron01:19
*** xgerman has quit IRC01:19
openstackgerritAssaf Muller proposed openstack/neutron: DVR OVS agent - Change references to non-existent self.phys_br  https://review.openstack.org/15762801:20
*** yamamoto has quit IRC01:20
openstackgerritAssaf Muller proposed openstack/neutron: Fix non-existent self.local_subnets in DvrRouter class  https://review.openstack.org/15762101:20
carl_baldwinmlavalle: git rebase —continue01:20
carl_baldwinmlavalle: git review —no-rebase01:20
carl_baldwinmlavalle: ^ I’m still not sure whether —no-rebase is still needed in some situations.  But, as far as I’m concerned, —no-rebase is never the wrong thing to do.01:21
carl_baldwinmlavalle: I’ve still got some sanity checking to do with this patch set related to root_helper.  So, I haven’t uploaded it yet.  However, if the conflicts were simple, I would’ve been done by no.01:23
carl_baldwinnow.01:23
mesteryotherwiseguy: +2 on the first three, thanks!01:23
*** seizadi has quit IRC01:24
*** seizadi has joined #openstack-neutron01:25
openstackgerritMichael Smith proposed openstack/neutron: WIP delay fip namespace cleanup/destroy  https://review.openstack.org/15175801:25
kevinbentonmestery: PING01:25
mlavallecarl_baldwin: thank you again. see you tomorrow again here01:25
carl_baldwinmlavalle: thank yo.u01:26
*** yeungp has quit IRC01:28
*** killer_prince is now known as lazy_prince01:29
openstackgerritCarl Baldwin proposed openstack/neutron: WIP Move port processing to router classes  https://review.openstack.org/15451301:30
carl_baldwinmlavalle: ^ The result01:30
*** yapeng has joined #openstack-neutron01:31
carl_baldwinmlavalle: One more thing.  On “git review —no-rebase” it warned me that I was uploading multiple commits:  http://paste.openstack.org/show/178022/01:32
carl_baldwinmlavalle: I never ignore this message!  In this case, I went to the previous patch set and made sure that d27c383 matched one of the commit ids of *any* patch set in that review.  If I find a match then I know that it will only create one new patch set in the top-most review and won’t create new patch sets in the other patches.01:34
carl_baldwinI think I’m going to take these notes and post them to the ML.01:34
*** tiswanso has quit IRC01:35
*** yapeng has quit IRC01:35
openstackgerritAssaf Muller proposed openstack/neutron: Fix reference to non-existent DVR OVS agent setup_dvr_flows_on_integ_tun_br  https://review.openstack.org/15763201:35
*** yamamoto has joined #openstack-neutron01:37
*** seizadi1 has joined #openstack-neutron01:38
amullerarmax: I found three DVR issues with a pylint check... We need to work on test coverage for these code paths01:39
*** tomoe_ has joined #openstack-neutron01:39
*** seizadi has quit IRC01:39
amullerarmax: Added you on all three reviews01:39
openstackgerritYAMAMOTO Takashi proposed openstack/neutron: test_l2population: Use a fake mech driver instead of ofagent  https://review.openstack.org/15023901:39
openstackgerritYAMAMOTO Takashi proposed openstack/neutron: ofagent: Vendor code decomposition  https://review.openstack.org/14994101:39
amullerpretty blatant crashes01:39
armaxamuller: please add swami to the reviews to01:40
armaxo01:40
*** chlong has quit IRC01:40
amullerdid01:40
armaxok good01:40
armaxthanks01:40
*** pal has joined #openstack-neutron01:40
armaxamuller: the steaming pile doesn’t seem to stop01:40
armax:)01:40
amullerarmax: two are because of the recent DVR-VLANs patch01:41
amullerwhich lacks test coverage it seems01:41
amulleryou'll see it when you look at the patches...01:41
armaxok01:41
carl_baldwinamuller: Could you add me to them too?01:41
amullerand one is due to a recent change in the L3 agent01:41
*** chlong has joined #openstack-neutron01:41
amullercarl_baldwin: done01:41
carl_baldwinamuller: Thanks, I see them.01:42
*** seizadi1 has quit IRC01:43
amullercarl_baldwin: armax: I'll file bug reports for all 3. They'll be kind of lame I'll need help fleshing them out from you guys01:43
*** seizadi has joined #openstack-neutron01:44
*** ParsectiX has quit IRC01:44
armaxamuller: ok, I’ll look into those01:44
*** ParsectiX has joined #openstack-neutron01:45
armaxamuller: bear in mind that some of the coverage is lacking regardless of DVR01:45
openstackgerritYAMAMOTO Takashi proposed openstack/neutron: Fix a usage error of joinedload + filter in dhcp scheduler  https://review.openstack.org/15028401:45
amullerarmax: the restart case I agree01:45
armaxamuller: change 157632 is about code that’s hardly testable01:46
armaxya01:46
armax300 lines piece of crap01:46
armaxI dunno what we were thinking01:46
armaxit makes me cry01:46
amullerarmax: deadlines01:47
*** lazy_prince is now known as killer_prince01:47
*** tiswanso has joined #openstack-neutron01:50
openstackgerritAssaf Muller proposed openstack/neutron: DVR OVS agent - Change references to non-existent self.phys_br  https://review.openstack.org/15762801:52
*** aranjan has quit IRC01:55
openstackgerritAssaf Muller proposed openstack/neutron: Fix reference to non-existent setup_dvr_flows_on_integ_tun_br  https://review.openstack.org/15763201:58
*** yamamoto has quit IRC02:00
*** leenheer has quit IRC02:00
*** leenheer has joined #openstack-neutron02:01
*** yamamoto has joined #openstack-neutron02:03
*** ramishra_ has joined #openstack-neutron02:03
armaxamuller: are you fixing the pylint job too?02:03
*** baoli has quit IRC02:03
amullerarmax: Terry has a patch for that02:03
armaxamuller: as far as I can tell it’s busted and non-voting right now?02:03
armaxah cool, link?02:04
amullerarmax: https://review.openstack.org/#/c/157517/02:04
amullerarmax: btw these issues were found with a pylint check that's disabled02:04
armaxgot it02:04
amullerI was playing around with pylint when it was argued that pylint is useless and the gate job should be removed02:04
amullerfound 4 bugs so far02:04
armaxwho argued?02:05
armax:)02:05
armaxbugs can be fun though02:05
armaxI think ajo said that02:05
armaxso we do want to keep a few to keep us entartained, no?02:06
* armax sarcastic02:06
openstackgerritJuergen Brendel proposed openstack/neutron: ARP spoofing patch: Ebtables manager  https://review.openstack.org/15763402:07
*** baoli has joined #openstack-neutron02:08
*** seizadi has quit IRC02:09
openstackgerritAssaf Muller proposed openstack/neutron: Fix non-existent self.local_subnets in DvrRouter class  https://review.openstack.org/15762102:09
*** pal has quit IRC02:09
amullercarl_baldwin: When you triage https://bugs.launchpad.net/neutron/+bug/1423777, please update the bug title, I suspect I got it wrong02:09
openstackLaunchpad bug 1423777 in neutron "TRACE when removing a floating IP from a DVR router that has no floating IPs" [Undecided,In progress] - Assigned to Assaf Muller (amuller)02:09
amulleror maybe I didn't and it's just weird code =D02:09
*** killer_prince is now known as lazy_prince02:10
carl_baldwinamuller: ack02:10
*** seizadi has joined #openstack-neutron02:11
*** amotoki has joined #openstack-neutron02:13
*** a_le_ has joined #openstack-neutron02:13
armaxyamamoto: ping02:13
rms_13HenryG: ping02:14
rms_13dougwig: ping02:14
*** santosh has joined #openstack-neutron02:15
*** seizadi has quit IRC02:15
*** diegows has quit IRC02:16
mlavallecarl_baldwin: that last check seems to me to be crucial. It allows you to double check yourself, that you took the right steps. I added this to my notes. Thanks02:16
*** seizadi has joined #openstack-neutron02:16
*** tflynn has quit IRC02:16
*** a_le has quit IRC02:16
*** shwetaap has joined #openstack-neutron02:17
*** salv-orlando has quit IRC02:17
*** suresh12 has quit IRC02:19
*** seizadi1 has joined #openstack-neutron02:20
*** Sukhdev has quit IRC02:20
*** suresh12 has joined #openstack-neutron02:20
*** seizadi has quit IRC02:20
*** amuller has quit IRC02:22
*** yamahata has joined #openstack-neutron02:23
carl_baldwinmlavalle: It is an important check.  I think git review could do it on its own with an enhancement that I suggested to the ML.02:25
carl_baldwinmlavalle: http://lists.openstack.org/pipermail/openstack-dev/2015-January/053752.html02:25
*** erkules_ has joined #openstack-neutron02:25
*** ramishra_ has quit IRC02:26
*** erkules has quit IRC02:28
*** chrislol has quit IRC02:28
*** jamespd has quit IRC02:28
*** gildub has quit IRC02:29
*** gildub has joined #openstack-neutron02:29
*** jamespd has joined #openstack-neutron02:30
*** ramishra_ has joined #openstack-neutron02:34
*** spandhe has quit IRC02:35
*** chrislol has joined #openstack-neutron02:36
openstackgerritMerged openstack/neutron: Fix type of exception in ml2 l2pop  https://review.openstack.org/15754502:36
*** seizadi1 has quit IRC02:39
*** seizadi has joined #openstack-neutron02:40
*** SridharRamaswamy has quit IRC02:41
*** nlahouti1 has quit IRC02:42
*** zhenq has quit IRC02:44
HenryGrms_13: pong02:45
*** tomoe_ has quit IRC02:45
*** leenheer has quit IRC02:48
openstackgerritMerged openstack/neutron-fwaas: Fix pylint error due to novaclient v1_1/v2 rename  https://review.openstack.org/15756002:48
*** localloop127 has joined #openstack-neutron02:51
*** yuanying has quit IRC02:53
*** MentalRay has quit IRC02:53
*** ramishra_ has quit IRC02:53
*** peterstac has joined #openstack-neutron02:54
*** mlavalle has quit IRC02:55
rms_13HenryG:02:55
rms_13Still there?02:56
*** santosh has quit IRC02:56
HenryGrms_13: yes, off and on02:58
HenryGrms_13: what's up?02:58
rms_13Hey.... Wanted to understand your comment03:00
rms_13https://review.openstack.org/#/c/157214/03:01
rms_13if it is a generated submodule, how does it pick up a correct oslo modules which are namespace less?03:01
openstackgerritOpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements  https://review.openstack.org/15764603:01
HenryG"Generated" is perhaps the wrong term.03:02
rms_13I meant copied from oslo-incubator03:02
HenryGThe copying is triggered manually following the steps in the link I provided.03:03
HenryGI don't think it has been done in a while so the files are out of date.03:03
HenryGSorry03:04
HenryGThe copying is triggered by manually following the steps in the link I provided.03:05
rms_13Ok. I got the idea. How to go about it than? If you take the latest devstack for example, you have this descrepancy03:05
*** seizadi1 has joined #openstack-neutron03:05
HenryGhttps://wiki.openstack.org/wiki/Oslo#Syncing_Code_from_Incubator03:05
HenryGThat's all I know. I have not done it myself.03:05
rms_13that link of yours does not work03:06
rms_13http://specs.openstack.org/openstack/oslo-specs/specs/policy/incubator.html#syncing-code-from-incubator03:06
*** seizadi has quit IRC03:06
rms_13So do you want me to back out all but one file?03:06
*** santosh has joined #openstack-neutron03:06
HenryGHmmm. They must have changed the wiki because it worked a day or two ago.03:07
HenryGBut yes, the specs link says the same03:08
*** shaohe_feng has joined #openstack-neutron03:08
rms_13ok. So I will go with only changing bin/neutron-rootwrap-xen-dom003:08
HenryGYou may want to check with our oslo liason, I believe it is Ihar03:09
*** seizadi has joined #openstack-neutron03:09
rms_13Ok will do that03:09
HenryGYes, and the oslo-incubator sync will be a separate patch03:09
rms_13cool03:09
rms_13thx03:09
*** seizadi1 has quit IRC03:10
HenryGnp03:10
*** ramishra_ has joined #openstack-neutron03:10
*** yamahata has quit IRC03:11
*** seizadi1 has joined #openstack-neutron03:12
*** SlickNik has joined #openstack-neutron03:13
*** seizadi has quit IRC03:13
*** coolsvap_ is now known as coolsvap03:15
*** ivar-laz_ has joined #openstack-neutron03:15
*** seizadi1 has quit IRC03:16
*** pal has joined #openstack-neutron03:17
*** seizadi has joined #openstack-neutron03:17
*** salv-orlando has joined #openstack-neutron03:18
*** ivar-lazzaro has quit IRC03:18
*** localloop127 has quit IRC03:19
*** SumitNaiksatam has joined #openstack-neutron03:19
*** ivar-laz_ has quit IRC03:20
*** seizadi has quit IRC03:21
*** seizadi1 has joined #openstack-neutron03:21
openstackgerritHenry Gessau proposed openstack/neutron: Remove root_helper arg from sanity checks  https://review.openstack.org/15590503:23
*** pal has quit IRC03:23
*** SumitNaiksatam has quit IRC03:23
*** seizadi has joined #openstack-neutron03:24
openstackgerritHenry Gessau proposed openstack/neutron: Remove remaining uses of passing root_helper  https://review.openstack.org/15590603:24
*** ramishra_ has quit IRC03:25
*** SumitNaiksatam has joined #openstack-neutron03:25
*** seizadi1 has quit IRC03:25
peterstacGeneral question here03:26
*** Marga_ has quit IRC03:26
peterstacIn the python-troveclient project we're having a recurring failure in gate-tempest-dsvm-neutron-src-python-troveclient-juno03:26
peterstacThis started happening somewhere between the morning of Dec 3 to the evening of Dec 1203:26
peterstacIt affects patchsets that have only grammatical changes in output strings (so unlikely due to python-troveclient)03:27
peterstacfor example:  https://review.openstack.org/#/c/155786/03:27
peterstacHere's one of the errors (there are many, all similar) https://gist.github.com/peterstac/20c02635b8f33f195e6f03:27
peterstacDoes anyone know of something that merged into stable/juno within this timeframe that could potentially have caused this?03:27
*** yamamoto has quit IRC03:28
*** oda-g has quit IRC03:28
otherwiseguyHenryG: I see there was more rebasing. Thanks.03:28
HenryGpeterstac: Is that neutron related?03:28
HenryGotherwiseguy: NP03:29
*** yapeng has joined #openstack-neutron03:29
*** dims__ has joined #openstack-neutron03:29
HenryGpeterstac: I am not familiar with the  gate-tempest-dsvm-neutron-src-python-troveclient-juno job, what does it do?03:29
peterstacHenryG: In the log it's running:03:29
peterstacHTTPS clone URL03:30
peterstacYou can clone with HTTPS or SSH.03:30
peterstacgistfile1.txt03:30
peterstac2015-02-17 19:44:27.018 | tempest.api.orchestration.stacks.test_resource_types.ResourceTypesTest.test_resource_type_list[gate,smoke]03:30
*** seizadi1 has joined #openstack-neutron03:30
peterstac(sorry, copied too much)03:30
*** dims__ has quit IRC03:30
peterstacit seems to be running a tempest orchestration test and timing out03:30
*** dims__ has joined #openstack-neutron03:31
*** seizadi has quit IRC03:31
peterstacI checked heat and neutron and I could only find neutron changes in stable/juno during the timeframe03:31
*** dims_ has joined #openstack-neutron03:32
peterstacso that's what makes me think it might be neutron related03:32
openstackgerritYushiro FURUKAWA proposed openstack/neutron-fwaas: Insert validation in creating/updating firewall  https://review.openstack.org/14739603:33
HenryGpeterstac: Neutron backports bugs to stable releases more-or-less continuously03:33
HenryGpeterstac: You can check the commit log for stable/juno03:33
*** coolsvap is now known as coolsvap_03:34
peterstacHenryG: I did that (well, looked on github) - unfortunately there's quite a few between feb 3-1203:34
* HenryG of course meant backports bug *fixes*03:34
peterstaclol03:35
HenryGpeterstac: Yup, so unfortunately I doubt you are going to find someone who can point you to something of the top of their head.03:36
*** dims__ has quit IRC03:36
HenryGpeterstac: If the problem is no longer occuring, why are you trying to track it down?03:37
peterstacHenryG: Oh, it's still occurring03:37
HenryGpeterstac: Oh I thought you said Dec 3-12?03:37
*** pal has joined #openstack-neutron03:38
*** yuanying has joined #openstack-neutron03:38
peterstacHenryG: We haven't been able to merge anything into python-troveclient since Dec1203:38
peterstacHenryG: The last successful build before that (that I could find) was Feb 303:38
*** seizadi1 has quit IRC03:39
peterstacs/Dec12/Feb12/03:39
peterstacHenryG: Typo'd the dates - should be 'between Feb 3 and Feb 12'03:40
HenryGpeterstac: gotcha03:41
dougwigrms_13: ack03:41
*** coolsvap_ is now known as coolsvap03:43
HenryGpeterstac: Well from the logs I see no errors being triggered in any of the neutron services.03:43
peterstacHenryG: Just heard back from our PTL, he thinks it might be Heat related03:43
HenryGpeterstac: So we need to understand what the "tempest/api/orchestration/*" tests do. I am clueless there.03:43
openstackgerritFei Long Wang proposed openstack/neutron: Fix metering agent failure when chain missing  https://review.openstack.org/15619803:44
*** vivek-ebay has quit IRC03:44
peterstacHenryG: Yeah, me too  ;)03:44
SlickNikHenryG / peterstac: tempest/api/orchestration/* tests are heat API tests. ;)03:44
HenryGpeterstac: Time to turn up the heat on Heat ;)03:45
SlickNiklol03:45
peterstacHenryG: Yep :D03:45
*** dsneddon has quit IRC03:45
peterstacHenryG: ok, thanks for you help!03:45
HenryGpeterstac: your're welcome03:45
*** tomoe_ has joined #openstack-neutron03:46
*** zz_jgrimm is now known as jgrimm03:46
*** seizadi has joined #openstack-neutron03:50
*** ajmiller has joined #openstack-neutron03:50
*** tomoe_ has quit IRC03:51
openstackgerritCarl Baldwin proposed openstack/neutron-fwaas: Enable removing references to self.services_sync in l3 agent  https://review.openstack.org/15755703:53
*** jckasper has quit IRC03:53
*** dsneddon has joined #openstack-neutron03:57
*** salv-orlando has quit IRC03:58
*** seizadi has quit IRC03:59
*** jckasper has joined #openstack-neutron03:59
*** watanabe_isao has quit IRC04:03
*** seizadi has joined #openstack-neutron04:03
*** yapeng has quit IRC04:03
*** yog_ has joined #openstack-neutron04:06
*** seizadi has quit IRC04:07
*** yapeng has joined #openstack-neutron04:08
*** jckasper_ has joined #openstack-neutron04:09
*** jckasper has quit IRC04:09
*** yapeng has quit IRC04:09
*** yapeng has joined #openstack-neutron04:09
*** yapeng_ has joined #openstack-neutron04:15
*** ramishra_ has joined #openstack-neutron04:15
*** tflynn has joined #openstack-neutron04:16
openstackgerritArmando Migliaccio proposed openstack/neutron: Add callbacks-based system to Neutron  https://review.openstack.org/15377404:16
openstackgerritArmando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during delete operation  https://review.openstack.org/15547004:16
openstackgerritArmando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during create/update operations  https://review.openstack.org/15377504:16
openstackgerritArmando Migliaccio proposed openstack/neutron: Decouple L3 and service plugins during DVR router migration  https://review.openstack.org/15474904:16
openstackgerritArmando Migliaccio proposed openstack/neutron: Decouple L3 and VPN service plugins during router operations  https://review.openstack.org/15377604:16
*** yapeng has quit IRC04:17
*** markvoelker has quit IRC04:19
*** baoli has quit IRC04:20
*** tflynn has quit IRC04:20
*** baoli has joined #openstack-neutron04:20
*** Marga_ has joined #openstack-neutron04:21
*** ianw has quit IRC04:21
*** ianw has joined #openstack-neutron04:22
*** yapeng_ has quit IRC04:22
*** MentalRay has joined #openstack-neutron04:22
*** tiswanso has quit IRC04:22
*** tomoe_ has joined #openstack-neutron04:23
*** spandhe has joined #openstack-neutron04:23
*** aepifanov has joined #openstack-neutron04:23
*** suresh12 has quit IRC04:23
*** jckasper_ has quit IRC04:26
*** tflynn has joined #openstack-neutron04:26
*** carl_baldwin has quit IRC04:26
*** tflynn has quit IRC04:27
*** tflynn has joined #openstack-neutron04:27
*** yamamoto has joined #openstack-neutron04:28
*** harlowja is now known as harlowja_away04:28
*** Sukhdev has joined #openstack-neutron04:29
*** vivek-ebay has joined #openstack-neutron04:30
*** jckasper has joined #openstack-neutron04:31
*** leenheer has joined #openstack-neutron04:31
*** Dark_Matt3r has quit IRC04:32
*** dsneddon has quit IRC04:32
*** yamamoto has quit IRC04:33
*** baoli has quit IRC04:34
*** lazy_prince is now known as killer_prince04:35
*** killer_prince is now known as lazy_prince04:36
*** jckasper has quit IRC04:36
*** jckasper has joined #openstack-neutron04:37
*** shwetaap has quit IRC04:40
*** coolsvap is now known as coolsvap_04:41
*** shwetaap has joined #openstack-neutron04:41
santoshhi04:43
santoshI am trying to install openstack using this link http://docs.openstack.org/juno/install-guide/install/apt/content/cinder-install-storage-node.html04:44
*** tflynn has quit IRC04:44
santosh"ERROR neutron.agent.linux.ovsdb_monitor [-] Error received from ovsdb monitor: ovsdb-client: unix:/var/run/openvswitch/db.sock: receive failed (End of file) 2015-02-19 20:42:45.893 27642 ERROR neutron.agent.linux.utils [-] Command: ['ps', '--ppid', '27771', '-o', 'pid='] Exit code: 1 Stdout: '' Stderr: ''"I am getting this error on my compute node04:44
santoshhas anyone else seen this issue04:44
santosh?04:44
*** tflynn has joined #openstack-neutron04:45
*** gildub has quit IRC04:46
*** aepifanov has quit IRC04:46
*** yatin has joined #openstack-neutron04:47
*** dims_ has quit IRC04:48
*** yapeng has joined #openstack-neutron04:48
*** coolsvap_ is now known as coolsvap04:48
*** santosh has quit IRC04:49
*** yapeng_ has joined #openstack-neutron04:49
*** markvoelker has joined #openstack-neutron04:50
*** Dark_Matt3r has joined #openstack-neutron04:51
*** santosh has joined #openstack-neutron04:51
*** carl_baldwin has joined #openstack-neutron04:51
*** yapeng has quit IRC04:53
*** anish_ has joined #openstack-neutron04:54
*** rushil has joined #openstack-neutron04:54
otherwiseguydougwig: thanks for the late-night reviewing. :)04:54
*** vivek-eb_ has joined #openstack-neutron04:56
*** markvoelker has quit IRC04:56
*** tomoe_ has quit IRC04:57
*** vivek-ebay has quit IRC04:57
*** spandhe has quit IRC05:01
*** rawat has quit IRC05:02
*** trinaths has joined #openstack-neutron05:03
*** Dark_Matt3r has quit IRC05:04
*** yapeng_ has quit IRC05:05
*** ramishra_ has quit IRC05:06
*** watanabe_isao has joined #openstack-neutron05:07
*** achanda has joined #openstack-neutron05:08
openstackgerritDane LeBlanc proposed openstack/neutron: Support Dual-Stack Gateway Ports on Neutron Routers  https://review.openstack.org/14906805:10
trinathsHi Neutroners, Very Good Morning05:12
*** MentalRay has quit IRC05:12
*** anilvenkata has joined #openstack-neutron05:13
*** pradip_vedams has joined #openstack-neutron05:15
pradip_vedamshi everyone, I am new for neutron,  I installed single node neutron using devsatack , i am unable to ping instaces from host machine can any one tell me what configuration i am missing ....?05:20
*** nlahouti has joined #openstack-neutron05:21
*** tflynn has quit IRC05:22
*** tflynn has joined #openstack-neutron05:22
hichihar_pradip_vedams: Did you set securitygrouprule for icmp?05:25
*** nlahouti has quit IRC05:25
*** nlahouti has joined #openstack-neutron05:25
*** aranjan has joined #openstack-neutron05:28
*** yog_ has quit IRC05:30
*** tomoe_ has joined #openstack-neutron05:31
openstackgerritAmandeep proposed openstack/python-neutronclient: Updated type parameter in loadbalancer  https://review.openstack.org/15766005:36
*** watanabe_isao has quit IRC05:36
*** sthillma has joined #openstack-neutron05:38
openstackgerritArmando Migliaccio proposed openstack/neutron: Add callbacks-based system to Neutron  https://review.openstack.org/15377405:42
*** salv-orlando has joined #openstack-neutron05:42
*** yog_ has joined #openstack-neutron05:46
*** santosh has quit IRC05:48
*** dims__ has joined #openstack-neutron05:48
*** numan has joined #openstack-neutron05:50
*** yfried|afk has joined #openstack-neutron05:52
*** dims__ has quit IRC05:53
*** markvoelker has joined #openstack-neutron05:53
*** Marga_ has quit IRC05:55
*** leenheer has quit IRC05:56
*** markvoelker has quit IRC05:58
*** tomoe_ has quit IRC06:01
*** SumitNaiksatam has quit IRC06:02
*** Murali has joined #openstack-neutron06:03
*** SumitNaiksatam has joined #openstack-neutron06:04
*** SumitNaiksatam has quit IRC06:04
*** leenheer has joined #openstack-neutron06:05
*** SumitNaiksatam has joined #openstack-neutron06:06
*** kickinz1|afk is now known as kickinz106:09
*** aranjan has quit IRC06:10
*** lazy_prince is now known as killer_prince06:10
*** leenheer has quit IRC06:11
*** killer_prince is now known as lazy_prince06:11
*** ajay_ has joined #openstack-neutron06:12
*** vthapar has joined #openstack-neutron06:13
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: Create/Delete FIP Agent gateway port only if DVR Routers  https://review.openstack.org/15724206:14
*** ramishra_ has joined #openstack-neutron06:15
*** yushiro has joined #openstack-neutron06:16
openstackgerritMerged openstack/neutron-vpnaas: Remove remaining root_helper references  https://review.openstack.org/15669106:18
*** ajay_ has quit IRC06:18
openstackgerritMerged openstack/neutron: Remove root_helper arg from sanity checks  https://review.openstack.org/15590506:21
*** seizadi has joined #openstack-neutron06:21
openstackgerritOpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements  https://review.openstack.org/15764606:23
*** cipcosma has joined #openstack-neutron06:23
*** yatin has quit IRC06:27
*** Sukhdev has quit IRC06:29
*** kickinz1 is now known as kickinz1|afk06:30
*** yamamoto has joined #openstack-neutron06:30
*** kickinz1|afk is now known as kickinz106:31
*** neeti has joined #openstack-neutron06:31
*** ramishra_ has quit IRC06:32
*** yamamoto has quit IRC06:35
*** achanda has quit IRC06:35
*** SridharG has joined #openstack-neutron06:36
openstackgerritSwaminathan Vasudevan proposed openstack/neutron: Create/Delete FIP Agent gateway port only if DVR Routers  https://review.openstack.org/15724206:37
*** achanda has joined #openstack-neutron06:38
*** ParsectiX has quit IRC06:38
*** ParsectiX has joined #openstack-neutron06:39
*** seizadi1 has joined #openstack-neutron06:41
*** yatin has joined #openstack-neutron06:41
openstackgerritArmando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during delete operation  https://review.openstack.org/15547006:41
openstackgerritArmando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during create/update operations  https://review.openstack.org/15377506:41
openstackgerritArmando Migliaccio proposed openstack/neutron: Decouple L3 and service plugins during DVR router migration  https://review.openstack.org/15474906:41
openstackgerritArmando Migliaccio proposed openstack/neutron: Decouple L3 and VPN service plugins during router operations  https://review.openstack.org/15377606:41
*** ramishra_ has joined #openstack-neutron06:42
*** seizadi has quit IRC06:42
*** rushil has quit IRC06:44
*** armax has quit IRC06:45
*** seizadi1 has quit IRC06:46
*** seizadi has joined #openstack-neutron06:46
*** mzbik has joined #openstack-neutron06:46
*** aranjan has joined #openstack-neutron06:47
*** tflynn has quit IRC06:47
*** tflynn has joined #openstack-neutron06:48
*** tomoe_ has joined #openstack-neutron06:49
*** seizadi1 has joined #openstack-neutron06:49
*** seizadi has quit IRC06:50
*** salv-orlando has quit IRC06:52
*** seizadi has joined #openstack-neutron06:53
*** gridinv has joined #openstack-neutron06:53
*** markvoelker has joined #openstack-neutron06:54
*** seizadi1 has quit IRC06:54
*** tomoe_ has quit IRC06:54
*** ramishra_ has quit IRC06:54
*** aranjan has quit IRC06:55
*** aranjan_ has joined #openstack-neutron06:55
*** aranjan_ has quit IRC06:57
*** seizadi has quit IRC06:57
*** apuimedo has joined #openstack-neutron06:58
*** markvoelker has quit IRC06:58
*** seizadi has joined #openstack-neutron06:59
*** tomoe_ has joined #openstack-neutron06:59
*** ParsectiX has quit IRC07:00
*** vivek-ebay has joined #openstack-neutron07:01
*** tflynn has quit IRC07:01
*** tflynn has joined #openstack-neutron07:01
enikanorov__amotoki: hi, could you please review https://review.openstack.org/#/c/152891/07:03
*** yog_ has quit IRC07:04
*** carl_baldwin has quit IRC07:04
amotokienikanorov__: sure. I am going to out of office for a meeting. will check after that.07:04
*** vivek-eb_ has quit IRC07:04
enikanorov__thanks!07:04
*** ramishra_ has joined #openstack-neutron07:06
*** seizadi has quit IRC07:10
*** afazekas_ has joined #openstack-neutron07:10
*** shwetaap has quit IRC07:12
*** amotoki has quit IRC07:14
*** yog_ has joined #openstack-neutron07:17
*** vivek-ebay has quit IRC07:19
*** pal has quit IRC07:20
*** tflynn has quit IRC07:21
*** seizadi has joined #openstack-neutron07:21
*** jamielennox is now known as jamielennox|away07:22
*** trinaths has left #openstack-neutron07:25
*** seizadi has quit IRC07:25
*** yushiro has quit IRC07:29
*** lazy_prince has quit IRC07:29
*** killer_prince has joined #openstack-neutron07:31
*** killer_prince is now known as lazy_prince07:32
*** ZZelle has quit IRC07:32
*** ZZelle has joined #openstack-neutron07:33
openstackgerritAndrey Kurilin proposed openstack/neutron: Remove versioning import of novaclient  https://review.openstack.org/15290707:46
*** tomoe_ has quit IRC07:49
*** lazy_prince has quit IRC07:54
*** markvoelker has joined #openstack-neutron07:55
*** devvesa has joined #openstack-neutron07:56
*** scheuran has joined #openstack-neutron07:56
*** ramishra_ has quit IRC07:57
*** nivtuckio has joined #openstack-neutron07:59
*** markvoelker has quit IRC08:01
*** killer_prince has joined #openstack-neutron08:02
*** killer_prince is now known as lazy_prince08:02
*** pask81 has joined #openstack-neutron08:06
openstackgerritMerged openstack/neutron-fwaas: Stop storing and passing root_helper  https://review.openstack.org/15669208:08
openstackgerritMerged openstack/neutron: Mock link local allocator write so UT doesn't write a file  https://review.openstack.org/15744308:08
*** jp_at_hp has joined #openstack-neutron08:09
*** hjensas has joined #openstack-neutron08:10
*** hjensas has quit IRC08:10
*** hjensas has joined #openstack-neutron08:10
*** ronis has joined #openstack-neutron08:14
*** yuanying has quit IRC08:15
*** achanda has quit IRC08:15
*** yuanying_ has joined #openstack-neutron08:15
*** tomoe_ has joined #openstack-neutron08:15
*** nlahouti has quit IRC08:17
*** yamamoto has joined #openstack-neutron08:19
*** vivek-ebay has joined #openstack-neutron08:20
*** moha_hunt has joined #openstack-neutron08:21
*** yamamoto has quit IRC08:22
*** salv-orlando has joined #openstack-neutron08:24
*** vivek-ebay has quit IRC08:24
*** kawa2014 has joined #openstack-neutron08:25
*** coolsvap is now known as coolsvap_08:29
*** dsneddon has joined #openstack-neutron08:32
*** coolsvap_ is now known as coolsvap08:35
*** coolsvap is now known as coolsvap_08:35
*** jlanoux has joined #openstack-neutron08:38
*** dims__ has joined #openstack-neutron08:38
*** ajo has joined #openstack-neutron08:39
*** dims__ has quit IRC08:43
*** yuanying_ has quit IRC08:44
*** tomoe_ has quit IRC08:45
*** jistr has joined #openstack-neutron08:46
*** numan has quit IRC08:47
*** jpena has joined #openstack-neutron08:51
*** amotoki has joined #openstack-neutron08:56
*** santosh has joined #openstack-neutron08:57
openstackgerritwatanabe isao proposed openstack/neutron: KeyError when non enable_dhcp subnet id in the list  https://review.openstack.org/15769708:57
*** markvoelker has joined #openstack-neutron08:58
*** ygbo has joined #openstack-neutron08:59
*** amotoki has quit IRC08:59
*** matrohon has joined #openstack-neutron09:00
*** salv-orlando has quit IRC09:02
*** markvoelker has quit IRC09:03
*** santosh has quit IRC09:04
*** ramishra_ has joined #openstack-neutron09:08
*** yfried|afk has quit IRC09:08
*** Marga_ has joined #openstack-neutron09:09
*** ramishra_ has quit IRC09:12
*** amotoki has joined #openstack-neutron09:15
*** sbelous has quit IRC09:16
*** tomoe_ has joined #openstack-neutron09:19
*** yamamoto has joined #openstack-neutron09:23
*** nyechiel has joined #openstack-neutron09:24
*** numan has joined #openstack-neutron09:27
*** yamamoto has quit IRC09:28
*** tomoe_ has quit IRC09:28
*** rotbeard has joined #openstack-neutron09:28
*** Marga_ has quit IRC09:31
*** karimb has joined #openstack-neutron09:32
*** bjornar_ has joined #openstack-neutron09:32
*** ihrachyshka has joined #openstack-neutron09:33
*** matrohon has quit IRC09:33
*** matrohon has joined #openstack-neutron09:36
openstackgerritPavel Bondar proposed openstack/neutron: Implement IPAM Driver loader  https://review.openstack.org/14747909:36
*** txomon|fon has quit IRC09:38
*** txomon|fon has joined #openstack-neutron09:40
*** ramishra_ has joined #openstack-neutron09:40
*** salv-orlando has joined #openstack-neutron09:43
*** bjornar_ has quit IRC09:45
*** bjornar_ has joined #openstack-neutron09:49
*** nyechiel has quit IRC09:51
*** ramishra_ has quit IRC09:51
*** britthouser has quit IRC09:56
*** markvoelker has joined #openstack-neutron09:59
*** markvoelker has quit IRC10:04
*** jlibosva has joined #openstack-neutron10:05
*** tnurlygayanov has quit IRC10:06
*** SumitNaiksatam has quit IRC10:11
*** aix has joined #openstack-neutron10:12
*** SumitNaiksatam has joined #openstack-neutron10:12
*** lukasa_work has joined #openstack-neutron10:14
*** nivtuckio has quit IRC10:16
*** nivtuckio has joined #openstack-neutron10:17
*** lukasa has quit IRC10:17
*** yog_ has quit IRC10:18
openstackgerritSergey Belous proposed openstack/neutron: Added check for emptyness where in_ is being used  https://review.openstack.org/15003410:22
*** nivtuckio has quit IRC10:27
*** MasterPiece has joined #openstack-neutron10:30
openstackgerritMerged openstack/neutron: Unify logic that determines liveliness of DHCP agent  https://review.openstack.org/15289110:33
*** aepifanov has joined #openstack-neutron10:41
*** pal has joined #openstack-neutron10:45
*** vitorc has quit IRC10:46
*** vitorc has joined #openstack-neutron10:47
*** shaohe_feng has quit IRC10:48
*** kerpan has joined #openstack-neutron10:55
*** amotoki has quit IRC10:58
*** markvoelker has joined #openstack-neutron11:00
*** markvoelker has quit IRC11:05
*** hichihar_ has quit IRC11:15
*** salv-orlando has quit IRC11:24
*** salv-orlando has joined #openstack-neutron11:25
*** yamamoto has joined #openstack-neutron11:26
*** santosh has joined #openstack-neutron11:26
santoshhi11:26
santoshI am unable to ping my subnet from controller host11:27
*** bobmel has quit IRC11:31
*** bobmel has joined #openstack-neutron11:31
*** jasondotstar has joined #openstack-neutron11:32
*** openstack has joined #openstack-neutron20:23
-sendak.freenode.net- [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp20:23
dougwigmarun: aside from what's here: https://github.com/dougwig/split-repo  , which is mostly about git split mechanics, my automation was a case of red bull.20:24
marundougwig: fair enough20:24

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