*** jobewan has quit IRC | 00:02 | |
HenryG | jogo: https://review.openstack.org/157606 | 00:03 |
---|---|---|
*** yapeng has joined #openstack-neutron | 00:05 | |
*** manishg has quit IRC | 00:08 | |
*** yapeng_ has joined #openstack-neutron | 00:09 | |
*** leenheer has quit IRC | 00:10 | |
*** leenheer has joined #openstack-neutron | 00:12 | |
*** yapeng has quit IRC | 00:12 | |
*** pavel_bondar has quit IRC | 00:13 | |
*** ParsectiX has quit IRC | 00:13 | |
*** ParsectiX has joined #openstack-neutron | 00:14 | |
*** pavel_bondar has joined #openstack-neutron | 00:14 | |
*** carl_baldwin has joined #openstack-neutron | 00:15 | |
*** moha_hunt has quit IRC | 00:15 | |
*** a_le_ has joined #openstack-neutron | 00:17 | |
*** seizadi has quit IRC | 00:17 | |
*** seizadi has joined #openstack-neutron | 00:18 | |
*** ZZelle_ has quit IRC | 00:20 | |
*** a_le has quit IRC | 00:20 | |
mlavalle | carl_baldwin: ping | 00:20 |
carl_baldwin | mlavalle: pong | 00:21 |
mlavalle | carl_baldwin: where did I go wrong? ;-( | 00:21 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable pylint bad-super-call https://review.openstack.org/157599 | 00:21 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable pylint maybe-no-member https://review.openstack.org/157609 | 00:21 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable pylint no-value-for-parameter https://review.openstack.org/157610 | 00:21 |
carl_baldwin | mlavalle: 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_baldwin | mlavalle: It isn’t anything that we can’t recover. | 00:22 |
*** seizadi has quit IRC | 00:23 | |
*** hichihar_ has joined #openstack-neutron | 00:23 | |
*** yapeng_ has quit IRC | 00:24 | |
*** yamamoto has joined #openstack-neutron | 00:24 | |
*** yamamoto has quit IRC | 00:25 | |
*** _cjones_ has quit IRC | 00:25 | |
*** seizadi has joined #openstack-neutron | 00:26 | |
otherwiseguy | HenryG: 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 |
mlavalle | carl_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 |
otherwiseguy | The 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-neutron | 00:31 | |
carl_baldwin | mlavalle: “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 |
mlavalle | carl_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-rebase | 00:33 |
*** seizadi1 has joined #openstack-neutron | 00:33 | |
*** apuimedo has quit IRC | 00:33 | |
* otherwiseguy disappears yet again | 00:33 | |
mlavalle | carl_baldwin: so, what should have been my rebase command? | 00:33 |
dougwig | so is it a pylint bug, or was the nova client doing something funky? | 00:34 |
otherwiseguy | I'll be back in a couple of hours, then back to work. | 00:34 |
otherwiseguy | dougwig: pylint just not capable of seeing that something was actually ok | 00:34 |
*** seizadi has quit IRC | 00:34 | |
dougwig | should the fix just be disabling the offending rule? | 00:34 |
otherwiseguy | they modified sys.modules to handle aliasing v2 to v1_1. | 00:34 |
otherwiseguy | dougwig: 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 leaves | 00:35 | |
otherwiseguy | :) | 00:35 |
jogo | HenryG: awesome, thanks! | 00:35 |
dougwig | sure, but rules with a false positive rate tend to make the tool a bigger annoyance than help | 00:35 |
carl_baldwin | mlavalle: 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_baldwin | mlavalle: 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-neutron | 00:37 | |
carl_baldwin | mlavalle: Here is what I do. | 00:37 |
openstackgerrit | Merged openstack/neutron: Remove remaining root_helper args from plugins https://review.openstack.org/155523 | 00:37 |
*** seizadi1 has quit IRC | 00:37 | |
carl_baldwin | mlavalle: Say the most recent version of the previous patch has commit id “abcdefgh” | 00:37 |
carl_baldwin | mlavalle: git review -d 147744 | 00:38 |
carl_baldwin | mlavalle: git rebase HEAD^ —onto abcdefgh | 00:38 |
carl_baldwin | mlavalle: … resolve conflicts … | 00:39 |
carl_baldwin | mlavalle: git rebase —continue && git review --no-rebase | 00:39 |
mlavalle | carl_baldwin: that assumes that the previous patch has already been rebased on master, right? | 00:40 |
carl_baldwin | mlavalle: Yes, hence “one should work from the bottom up” | 00:40 |
openstackgerrit | Brian Haley proposed openstack/neutron: Change linux/ip_lib code to better handle address families https://review.openstack.org/157555 | 00:40 |
*** seizadi1 has joined #openstack-neutron | 00:41 | |
*** seizadi has quit IRC | 00:41 | |
mlavalle | carl_baldwin: to make sure I understand, in this case up is change 147744? | 00:42 |
carl_baldwin | mlavalle: 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 |
HenryG | It doesn't help that in gerrit you click on the upper dependency to go down in the chain. :) | 00:45 |
carl_baldwin | mlavalle: It is complex and I don’t think there are many out there who do it this way. | 00:45 |
carl_baldwin | mlavalle: 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_baldwin | HenryG: Right. It is important to follow the Depends-On and *not* the Needed-By. | 00:46 |
carl_baldwin | :) | 00:46 |
carl_baldwin | mlavalle: It doesn’t help that the conflict resolution with the root_helper changes and this change is a bear. ;) | 00:48 |
*** ajmiller has quit IRC | 00:48 | |
*** a_le_ has quit IRC | 00:48 | |
*** markvoelker has joined #openstack-neutron | 00:50 | |
*** a_le has joined #openstack-neutron | 00:50 | |
*** a_le has quit IRC | 00:51 | |
*** a_le has joined #openstack-neutron | 00:51 | |
*** crc32 has quit IRC | 00:52 | |
mlavalle | carl_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 |
openstackgerrit | Carl Baldwin proposed openstack/neutron: Refactor management of namespaces in the L3 Agent https://review.openstack.org/147744 | 00:53 |
*** seizadi1 has quit IRC | 00:53 | |
carl_baldwin | mlavalle: I think I just took care of most of them ^ | 00:54 |
*** seizadi has joined #openstack-neutron | 00:54 | |
mlavalle | carl_baldwin: was it due to it not being properly rebased? | 00:54 |
carl_baldwin | mlavalle: I think it was due to the removal of root_helper from the l3 agent. | 00:56 |
*** a_le_ has joined #openstack-neutron | 00:56 | |
carl_baldwin | mlavalle: 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 |
mlavalle | carl_baldwin: all right. Is there anything I can do tonight to help? | 00:57 |
carl_baldwin | mlavalle: However, I think the other failures will fall in line with the fixes I did. | 00:57 |
*** SumitNaiksatam has quit IRC | 00:57 | |
carl_baldwin | mlavalle: You’ll probably want to make sure your local copy has the latest patch set. | 00:57 |
*** yamamoto has joined #openstack-neutron | 00:57 | |
*** a_le_ has quit IRC | 00:58 | |
*** a_le has quit IRC | 00:58 | |
mlavalle | carl_baldwin: will do. By the way, in one laptop I have git review 1.24. The other one has 1.23 | 00:58 |
*** a_le has joined #openstack-neutron | 00:58 | |
*** seizadi1 has joined #openstack-neutron | 00:58 | |
carl_baldwin | mlavalle: Right, I was worried that the problem was an old git review. But, we found out what happened. | 00:58 |
*** markvoelker has quit IRC | 00:59 | |
*** david-lyle is now known as david-lyle_afk | 00:59 | |
carl_baldwin | mlavalle: It would’ve had to have been like 1.16 to be broken in the way I was thinking. | 00:59 |
*** seizadi has quit IRC | 00:59 | |
mlavalle | carl_baldwin: so the problem was my brain version ;-) | 00:59 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Fix non-existent self.local_subnets in DvrRouter class https://review.openstack.org/157621 | 01:00 |
*** markvoelker has joined #openstack-neutron | 01:00 | |
carl_baldwin | mlavalle: 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 |
mlavalle | carl_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_baldwin | mlavalle: I’ll walk you through the next rebase of my patch set to yours (https://review.openstack.org/#/c/154513/) | 01:02 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable 'free' pylint checks https://review.openstack.org/157609 | 01:02 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable pylint no-value-for-parameter https://review.openstack.org/157610 | 01:02 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable pylint bad-super-call https://review.openstack.org/157599 | 01:02 |
openstackgerrit | Assaf Muller proposed openstack/neutron: Enable pylint unnecessary-pass https://review.openstack.org/157622 | 01:02 |
carl_baldwin | mlavalle: $ git review -d 154513 | 01:03 |
*** seizadi1 has quit IRC | 01:03 | |
*** seizadi has joined #openstack-neutron | 01:03 | |
*** rushil has quit IRC | 01:03 | |
carl_baldwin | mlavalle: Now, I follow the depends-on link and find out that the newest patch set has commit id of d27c383d1d48d2d47cc4213d4df5832226ed0c8e | 01:03 |
carl_baldwin | mlavalle: 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_baldwin | mlavalle: e.g. git fetch ssh://carl-baldwin@review.openstack.org:29418/openstack/neutron refs/changes/44/147744/24 | 01:04 |
*** heyongli has quit IRC | 01:05 | |
dougwig | carl_baldwin: i'm much sleazier in how i rebase chains. | 01:05 |
carl_baldwin | dougwig: If the chains belong to you and you alone, its all good. | 01:06 |
carl_baldwin | mlavalle: (resolve conflicts) This may take me a minute.... | 01:06 |
* mlavalle taking notes | 01:06 | |
*** alex_xu has quit IRC | 01:06 | |
dougwig | no 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_baldwin | dougwig: This doesn’t sound that much different. git rebase HEAD^ —onto xyz is hardly distinguishable from a cherry-pick. | 01:07 |
dougwig | i've just managed to screw it up every time, and i don't screw up destroying and rebuilding. :) | 01:08 |
carl_baldwin | dougwig: It is like a cherry-pick from the other side. It tends to be a little more intuitive to me. | 01:08 |
dougwig | so i stick with it | 01:08 |
*** heyongli has joined #openstack-neutron | 01:08 | |
carl_baldwin | Many people think /me thinks backwards... | 01:08 |
dougwig | /me is perfect. | 01:08 |
dougwig | :) | 01:08 |
*** alex_xu has joined #openstack-neutron | 01:09 | |
*** markmcclain has joined #openstack-neutron | 01:11 | |
* carl_baldwin still resolving conflicts... | 01:12 | |
*** Sukhdev has joined #openstack-neutron | 01:14 | |
*** achanda has quit IRC | 01:16 | |
* mlavalle will be here until we walk though the whole process | 01:16 | |
*** shwetaap has quit IRC | 01:17 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: DVR OVS agent - Change references to non-existent self.phys_br https://review.openstack.org/157628 | 01:19 |
*** amuller has joined #openstack-neutron | 01:19 | |
*** xgerman has quit IRC | 01:19 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: DVR OVS agent - Change references to non-existent self.phys_br https://review.openstack.org/157628 | 01:20 |
*** yamamoto has quit IRC | 01:20 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: Fix non-existent self.local_subnets in DvrRouter class https://review.openstack.org/157621 | 01:20 |
carl_baldwin | mlavalle: git rebase —continue | 01:20 |
carl_baldwin | mlavalle: git review —no-rebase | 01:20 |
carl_baldwin | mlavalle: ^ 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_baldwin | mlavalle: 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_baldwin | now. | 01:23 |
mestery | otherwiseguy: +2 on the first three, thanks! | 01:23 |
*** seizadi has quit IRC | 01:24 | |
*** seizadi has joined #openstack-neutron | 01:25 | |
openstackgerrit | Michael Smith proposed openstack/neutron: WIP delay fip namespace cleanup/destroy https://review.openstack.org/151758 | 01:25 |
kevinbenton | mestery: PING | 01:25 |
mlavalle | carl_baldwin: thank you again. see you tomorrow again here | 01:25 |
carl_baldwin | mlavalle: thank yo.u | 01:26 |
*** yeungp has quit IRC | 01:28 | |
*** killer_prince is now known as lazy_prince | 01:29 | |
openstackgerrit | Carl Baldwin proposed openstack/neutron: WIP Move port processing to router classes https://review.openstack.org/154513 | 01:30 |
carl_baldwin | mlavalle: ^ The result | 01:30 |
*** yapeng has joined #openstack-neutron | 01:31 | |
carl_baldwin | mlavalle: 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_baldwin | mlavalle: 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_baldwin | I think I’m going to take these notes and post them to the ML. | 01:34 |
*** tiswanso has quit IRC | 01:35 | |
*** yapeng has quit IRC | 01:35 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: Fix reference to non-existent DVR OVS agent setup_dvr_flows_on_integ_tun_br https://review.openstack.org/157632 | 01:35 |
*** yamamoto has joined #openstack-neutron | 01:37 | |
*** seizadi1 has joined #openstack-neutron | 01:38 | |
amuller | armax: I found three DVR issues with a pylint check... We need to work on test coverage for these code paths | 01:39 |
*** tomoe_ has joined #openstack-neutron | 01:39 | |
*** seizadi has quit IRC | 01:39 | |
amuller | armax: Added you on all three reviews | 01:39 |
openstackgerrit | YAMAMOTO Takashi proposed openstack/neutron: test_l2population: Use a fake mech driver instead of ofagent https://review.openstack.org/150239 | 01:39 |
openstackgerrit | YAMAMOTO Takashi proposed openstack/neutron: ofagent: Vendor code decomposition https://review.openstack.org/149941 | 01:39 |
amuller | pretty blatant crashes | 01:39 |
armax | amuller: please add swami to the reviews to | 01:40 |
armax | o | 01:40 |
*** chlong has quit IRC | 01:40 | |
amuller | did | 01:40 |
armax | ok good | 01:40 |
armax | thanks | 01:40 |
*** pal has joined #openstack-neutron | 01:40 | |
armax | amuller: the steaming pile doesn’t seem to stop | 01:40 |
armax | :) | 01:40 |
amuller | armax: two are because of the recent DVR-VLANs patch | 01:41 |
amuller | which lacks test coverage it seems | 01:41 |
amuller | you'll see it when you look at the patches... | 01:41 |
armax | ok | 01:41 |
carl_baldwin | amuller: Could you add me to them too? | 01:41 |
amuller | and one is due to a recent change in the L3 agent | 01:41 |
*** chlong has joined #openstack-neutron | 01:41 | |
amuller | carl_baldwin: done | 01:41 |
carl_baldwin | amuller: Thanks, I see them. | 01:42 |
*** seizadi1 has quit IRC | 01:43 | |
amuller | carl_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 guys | 01:43 |
*** seizadi has joined #openstack-neutron | 01:44 | |
*** ParsectiX has quit IRC | 01:44 | |
armax | amuller: ok, I’ll look into those | 01:44 |
*** ParsectiX has joined #openstack-neutron | 01:45 | |
armax | amuller: bear in mind that some of the coverage is lacking regardless of DVR | 01:45 |
openstackgerrit | YAMAMOTO Takashi proposed openstack/neutron: Fix a usage error of joinedload + filter in dhcp scheduler https://review.openstack.org/150284 | 01:45 |
amuller | armax: the restart case I agree | 01:45 |
armax | amuller: change 157632 is about code that’s hardly testable | 01:46 |
armax | ya | 01:46 |
armax | 300 lines piece of crap | 01:46 |
armax | I dunno what we were thinking | 01:46 |
armax | it makes me cry | 01:46 |
amuller | armax: deadlines | 01:47 |
*** lazy_prince is now known as killer_prince | 01:47 | |
*** tiswanso has joined #openstack-neutron | 01:50 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: DVR OVS agent - Change references to non-existent self.phys_br https://review.openstack.org/157628 | 01:52 |
*** aranjan has quit IRC | 01:55 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: Fix reference to non-existent setup_dvr_flows_on_integ_tun_br https://review.openstack.org/157632 | 01:58 |
*** yamamoto has quit IRC | 02:00 | |
*** leenheer has quit IRC | 02:00 | |
*** leenheer has joined #openstack-neutron | 02:01 | |
*** yamamoto has joined #openstack-neutron | 02:03 | |
*** ramishra_ has joined #openstack-neutron | 02:03 | |
armax | amuller: are you fixing the pylint job too? | 02:03 |
*** baoli has quit IRC | 02:03 | |
amuller | armax: Terry has a patch for that | 02:03 |
armax | amuller: as far as I can tell it’s busted and non-voting right now? | 02:03 |
armax | ah cool, link? | 02:04 |
amuller | armax: https://review.openstack.org/#/c/157517/ | 02:04 |
amuller | armax: btw these issues were found with a pylint check that's disabled | 02:04 |
armax | got it | 02:04 |
amuller | I was playing around with pylint when it was argued that pylint is useless and the gate job should be removed | 02:04 |
amuller | found 4 bugs so far | 02:04 |
armax | who argued? | 02:05 |
armax | :) | 02:05 |
armax | bugs can be fun though | 02:05 |
armax | I think ajo said that | 02:05 |
armax | so we do want to keep a few to keep us entartained, no? | 02:06 |
* armax sarcastic | 02:06 | |
openstackgerrit | Juergen Brendel proposed openstack/neutron: ARP spoofing patch: Ebtables manager https://review.openstack.org/157634 | 02:07 |
*** baoli has joined #openstack-neutron | 02:08 | |
*** seizadi has quit IRC | 02:09 | |
openstackgerrit | Assaf Muller proposed openstack/neutron: Fix non-existent self.local_subnets in DvrRouter class https://review.openstack.org/157621 | 02:09 |
*** pal has quit IRC | 02:09 | |
amuller | carl_baldwin: When you triage https://bugs.launchpad.net/neutron/+bug/1423777, please update the bug title, I suspect I got it wrong | 02:09 |
openstack | Launchpad 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 |
amuller | or maybe I didn't and it's just weird code =D | 02:09 |
*** killer_prince is now known as lazy_prince | 02:10 | |
carl_baldwin | amuller: ack | 02:10 |
*** seizadi has joined #openstack-neutron | 02:11 | |
*** amotoki has joined #openstack-neutron | 02:13 | |
*** a_le_ has joined #openstack-neutron | 02:13 | |
armax | yamamoto: ping | 02:13 |
rms_13 | HenryG: ping | 02:14 |
rms_13 | dougwig: ping | 02:14 |
*** santosh has joined #openstack-neutron | 02:15 | |
*** seizadi has quit IRC | 02:15 | |
*** diegows has quit IRC | 02:16 | |
mlavalle | carl_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. Thanks | 02:16 |
*** seizadi has joined #openstack-neutron | 02:16 | |
*** tflynn has quit IRC | 02:16 | |
*** a_le has quit IRC | 02:16 | |
*** shwetaap has joined #openstack-neutron | 02:17 | |
*** salv-orlando has quit IRC | 02:17 | |
*** suresh12 has quit IRC | 02:19 | |
*** seizadi1 has joined #openstack-neutron | 02:20 | |
*** Sukhdev has quit IRC | 02:20 | |
*** suresh12 has joined #openstack-neutron | 02:20 | |
*** seizadi has quit IRC | 02:20 | |
*** amuller has quit IRC | 02:22 | |
*** yamahata has joined #openstack-neutron | 02:23 | |
carl_baldwin | mlavalle: 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_baldwin | mlavalle: http://lists.openstack.org/pipermail/openstack-dev/2015-January/053752.html | 02:25 |
*** erkules_ has joined #openstack-neutron | 02:25 | |
*** ramishra_ has quit IRC | 02:26 | |
*** erkules has quit IRC | 02:28 | |
*** chrislol has quit IRC | 02:28 | |
*** jamespd has quit IRC | 02:28 | |
*** gildub has quit IRC | 02:29 | |
*** gildub has joined #openstack-neutron | 02:29 | |
*** jamespd has joined #openstack-neutron | 02:30 | |
*** ramishra_ has joined #openstack-neutron | 02:34 | |
*** spandhe has quit IRC | 02:35 | |
*** chrislol has joined #openstack-neutron | 02:36 | |
openstackgerrit | Merged openstack/neutron: Fix type of exception in ml2 l2pop https://review.openstack.org/157545 | 02:36 |
*** seizadi1 has quit IRC | 02:39 | |
*** seizadi has joined #openstack-neutron | 02:40 | |
*** SridharRamaswamy has quit IRC | 02:41 | |
*** nlahouti1 has quit IRC | 02:42 | |
*** zhenq has quit IRC | 02:44 | |
HenryG | rms_13: pong | 02:45 |
*** tomoe_ has quit IRC | 02:45 | |
*** leenheer has quit IRC | 02:48 | |
openstackgerrit | Merged openstack/neutron-fwaas: Fix pylint error due to novaclient v1_1/v2 rename https://review.openstack.org/157560 | 02:48 |
*** localloop127 has joined #openstack-neutron | 02:51 | |
*** yuanying has quit IRC | 02:53 | |
*** MentalRay has quit IRC | 02:53 | |
*** ramishra_ has quit IRC | 02:53 | |
*** peterstac has joined #openstack-neutron | 02:54 | |
*** mlavalle has quit IRC | 02:55 | |
rms_13 | HenryG: | 02:55 |
rms_13 | Still there? | 02:56 |
*** santosh has quit IRC | 02:56 | |
HenryG | rms_13: yes, off and on | 02:58 |
HenryG | rms_13: what's up? | 02:58 |
rms_13 | Hey.... Wanted to understand your comment | 03:00 |
rms_13 | https://review.openstack.org/#/c/157214/ | 03:01 |
rms_13 | if it is a generated submodule, how does it pick up a correct oslo modules which are namespace less? | 03:01 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/157646 | 03:01 |
HenryG | "Generated" is perhaps the wrong term. | 03:02 |
rms_13 | I meant copied from oslo-incubator | 03:02 |
HenryG | The copying is triggered manually following the steps in the link I provided. | 03:03 |
HenryG | I don't think it has been done in a while so the files are out of date. | 03:03 |
HenryG | Sorry | 03:04 |
HenryG | The copying is triggered by manually following the steps in the link I provided. | 03:05 |
rms_13 | Ok. I got the idea. How to go about it than? If you take the latest devstack for example, you have this descrepancy | 03:05 |
*** seizadi1 has joined #openstack-neutron | 03:05 | |
HenryG | https://wiki.openstack.org/wiki/Oslo#Syncing_Code_from_Incubator | 03:05 |
HenryG | That's all I know. I have not done it myself. | 03:05 |
rms_13 | that link of yours does not work | 03:06 |
rms_13 | http://specs.openstack.org/openstack/oslo-specs/specs/policy/incubator.html#syncing-code-from-incubator | 03:06 |
*** seizadi has quit IRC | 03:06 | |
rms_13 | So do you want me to back out all but one file? | 03:06 |
*** santosh has joined #openstack-neutron | 03:06 | |
HenryG | Hmmm. They must have changed the wiki because it worked a day or two ago. | 03:07 |
HenryG | But yes, the specs link says the same | 03:08 |
*** shaohe_feng has joined #openstack-neutron | 03:08 | |
rms_13 | ok. So I will go with only changing bin/neutron-rootwrap-xen-dom0 | 03:08 |
HenryG | You may want to check with our oslo liason, I believe it is Ihar | 03:09 |
*** seizadi has joined #openstack-neutron | 03:09 | |
rms_13 | Ok will do that | 03:09 |
HenryG | Yes, and the oslo-incubator sync will be a separate patch | 03:09 |
rms_13 | cool | 03:09 |
rms_13 | thx | 03:09 |
*** seizadi1 has quit IRC | 03:10 | |
HenryG | np | 03:10 |
*** ramishra_ has joined #openstack-neutron | 03:10 | |
*** yamahata has quit IRC | 03:11 | |
*** seizadi1 has joined #openstack-neutron | 03:12 | |
*** SlickNik has joined #openstack-neutron | 03:13 | |
*** seizadi has quit IRC | 03:13 | |
*** coolsvap_ is now known as coolsvap | 03:15 | |
*** ivar-laz_ has joined #openstack-neutron | 03:15 | |
*** seizadi1 has quit IRC | 03:16 | |
*** pal has joined #openstack-neutron | 03:17 | |
*** seizadi has joined #openstack-neutron | 03:17 | |
*** salv-orlando has joined #openstack-neutron | 03:18 | |
*** ivar-lazzaro has quit IRC | 03:18 | |
*** localloop127 has quit IRC | 03:19 | |
*** SumitNaiksatam has joined #openstack-neutron | 03:19 | |
*** ivar-laz_ has quit IRC | 03:20 | |
*** seizadi has quit IRC | 03:21 | |
*** seizadi1 has joined #openstack-neutron | 03:21 | |
openstackgerrit | Henry Gessau proposed openstack/neutron: Remove root_helper arg from sanity checks https://review.openstack.org/155905 | 03:23 |
*** pal has quit IRC | 03:23 | |
*** SumitNaiksatam has quit IRC | 03:23 | |
*** seizadi has joined #openstack-neutron | 03:24 | |
openstackgerrit | Henry Gessau proposed openstack/neutron: Remove remaining uses of passing root_helper https://review.openstack.org/155906 | 03:24 |
*** ramishra_ has quit IRC | 03:25 | |
*** SumitNaiksatam has joined #openstack-neutron | 03:25 | |
*** seizadi1 has quit IRC | 03:25 | |
peterstac | General question here | 03:26 |
*** Marga_ has quit IRC | 03:26 | |
peterstac | In the python-troveclient project we're having a recurring failure in gate-tempest-dsvm-neutron-src-python-troveclient-juno | 03:26 |
peterstac | This started happening somewhere between the morning of Dec 3 to the evening of Dec 12 | 03:26 |
peterstac | It affects patchsets that have only grammatical changes in output strings (so unlikely due to python-troveclient) | 03:27 |
peterstac | for example: https://review.openstack.org/#/c/155786/ | 03:27 |
peterstac | Here's one of the errors (there are many, all similar) https://gist.github.com/peterstac/20c02635b8f33f195e6f | 03:27 |
peterstac | Does anyone know of something that merged into stable/juno within this timeframe that could potentially have caused this? | 03:27 |
*** yamamoto has quit IRC | 03:28 | |
*** oda-g has quit IRC | 03:28 | |
otherwiseguy | HenryG: I see there was more rebasing. Thanks. | 03:28 |
HenryG | peterstac: Is that neutron related? | 03:28 |
HenryG | otherwiseguy: NP | 03:29 |
*** yapeng has joined #openstack-neutron | 03:29 | |
*** dims__ has joined #openstack-neutron | 03:29 | |
HenryG | peterstac: I am not familiar with the gate-tempest-dsvm-neutron-src-python-troveclient-juno job, what does it do? | 03:29 |
peterstac | HenryG: In the log it's running: | 03:29 |
peterstac | HTTPS clone URL | 03:30 |
peterstac | You can clone with HTTPS or SSH. | 03:30 |
peterstac | gistfile1.txt | 03:30 |
peterstac | 2015-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-neutron | 03:30 | |
peterstac | (sorry, copied too much) | 03:30 |
*** dims__ has quit IRC | 03:30 | |
peterstac | it seems to be running a tempest orchestration test and timing out | 03:30 |
*** dims__ has joined #openstack-neutron | 03:31 | |
*** seizadi has quit IRC | 03:31 | |
peterstac | I checked heat and neutron and I could only find neutron changes in stable/juno during the timeframe | 03:31 |
*** dims_ has joined #openstack-neutron | 03:32 | |
peterstac | so that's what makes me think it might be neutron related | 03:32 |
openstackgerrit | Yushiro FURUKAWA proposed openstack/neutron-fwaas: Insert validation in creating/updating firewall https://review.openstack.org/147396 | 03:33 |
HenryG | peterstac: Neutron backports bugs to stable releases more-or-less continuously | 03:33 |
HenryG | peterstac: You can check the commit log for stable/juno | 03:33 |
*** coolsvap is now known as coolsvap_ | 03:34 | |
peterstac | HenryG: I did that (well, looked on github) - unfortunately there's quite a few between feb 3-12 | 03:34 |
* HenryG of course meant backports bug *fixes* | 03:34 | |
peterstac | lol | 03:35 |
HenryG | peterstac: 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 IRC | 03:36 | |
HenryG | peterstac: If the problem is no longer occuring, why are you trying to track it down? | 03:37 |
peterstac | HenryG: Oh, it's still occurring | 03:37 |
HenryG | peterstac: Oh I thought you said Dec 3-12? | 03:37 |
*** pal has joined #openstack-neutron | 03:38 | |
*** yuanying has joined #openstack-neutron | 03:38 | |
peterstac | HenryG: We haven't been able to merge anything into python-troveclient since Dec12 | 03:38 |
peterstac | HenryG: The last successful build before that (that I could find) was Feb 3 | 03:38 |
*** seizadi1 has quit IRC | 03:39 | |
peterstac | s/Dec12/Feb12/ | 03:39 |
peterstac | HenryG: Typo'd the dates - should be 'between Feb 3 and Feb 12' | 03:40 |
HenryG | peterstac: gotcha | 03:41 |
dougwig | rms_13: ack | 03:41 |
*** coolsvap_ is now known as coolsvap | 03:43 | |
HenryG | peterstac: Well from the logs I see no errors being triggered in any of the neutron services. | 03:43 |
peterstac | HenryG: Just heard back from our PTL, he thinks it might be Heat related | 03:43 |
HenryG | peterstac: So we need to understand what the "tempest/api/orchestration/*" tests do. I am clueless there. | 03:43 |
openstackgerrit | Fei Long Wang proposed openstack/neutron: Fix metering agent failure when chain missing https://review.openstack.org/156198 | 03:44 |
*** vivek-ebay has quit IRC | 03:44 | |
peterstac | HenryG: Yeah, me too ;) | 03:44 |
SlickNik | HenryG / peterstac: tempest/api/orchestration/* tests are heat API tests. ;) | 03:44 |
HenryG | peterstac: Time to turn up the heat on Heat ;) | 03:45 |
SlickNik | lol | 03:45 |
peterstac | HenryG: Yep :D | 03:45 |
*** dsneddon has quit IRC | 03:45 | |
peterstac | HenryG: ok, thanks for you help! | 03:45 |
HenryG | peterstac: your're welcome | 03:45 |
*** tomoe_ has joined #openstack-neutron | 03:46 | |
*** zz_jgrimm is now known as jgrimm | 03:46 | |
*** seizadi has joined #openstack-neutron | 03:50 | |
*** ajmiller has joined #openstack-neutron | 03:50 | |
*** tomoe_ has quit IRC | 03:51 | |
openstackgerrit | Carl Baldwin proposed openstack/neutron-fwaas: Enable removing references to self.services_sync in l3 agent https://review.openstack.org/157557 | 03:53 |
*** jckasper has quit IRC | 03:53 | |
*** dsneddon has joined #openstack-neutron | 03:57 | |
*** salv-orlando has quit IRC | 03:58 | |
*** seizadi has quit IRC | 03:59 | |
*** jckasper has joined #openstack-neutron | 03:59 | |
*** watanabe_isao has quit IRC | 04:03 | |
*** seizadi has joined #openstack-neutron | 04:03 | |
*** yapeng has quit IRC | 04:03 | |
*** yog_ has joined #openstack-neutron | 04:06 | |
*** seizadi has quit IRC | 04:07 | |
*** yapeng has joined #openstack-neutron | 04:08 | |
*** jckasper_ has joined #openstack-neutron | 04:09 | |
*** jckasper has quit IRC | 04:09 | |
*** yapeng has quit IRC | 04:09 | |
*** yapeng has joined #openstack-neutron | 04:09 | |
*** yapeng_ has joined #openstack-neutron | 04:15 | |
*** ramishra_ has joined #openstack-neutron | 04:15 | |
*** tflynn has joined #openstack-neutron | 04:16 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Add callbacks-based system to Neutron https://review.openstack.org/153774 | 04:16 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during delete operation https://review.openstack.org/155470 | 04:16 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during create/update operations https://review.openstack.org/153775 | 04:16 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Decouple L3 and service plugins during DVR router migration https://review.openstack.org/154749 | 04:16 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Decouple L3 and VPN service plugins during router operations https://review.openstack.org/153776 | 04:16 |
*** yapeng has quit IRC | 04:17 | |
*** markvoelker has quit IRC | 04:19 | |
*** baoli has quit IRC | 04:20 | |
*** tflynn has quit IRC | 04:20 | |
*** baoli has joined #openstack-neutron | 04:20 | |
*** Marga_ has joined #openstack-neutron | 04:21 | |
*** ianw has quit IRC | 04:21 | |
*** ianw has joined #openstack-neutron | 04:22 | |
*** yapeng_ has quit IRC | 04:22 | |
*** MentalRay has joined #openstack-neutron | 04:22 | |
*** tiswanso has quit IRC | 04:22 | |
*** tomoe_ has joined #openstack-neutron | 04:23 | |
*** spandhe has joined #openstack-neutron | 04:23 | |
*** aepifanov has joined #openstack-neutron | 04:23 | |
*** suresh12 has quit IRC | 04:23 | |
*** jckasper_ has quit IRC | 04:26 | |
*** tflynn has joined #openstack-neutron | 04:26 | |
*** carl_baldwin has quit IRC | 04:26 | |
*** tflynn has quit IRC | 04:27 | |
*** tflynn has joined #openstack-neutron | 04:27 | |
*** yamamoto has joined #openstack-neutron | 04:28 | |
*** harlowja is now known as harlowja_away | 04:28 | |
*** Sukhdev has joined #openstack-neutron | 04:29 | |
*** vivek-ebay has joined #openstack-neutron | 04:30 | |
*** jckasper has joined #openstack-neutron | 04:31 | |
*** leenheer has joined #openstack-neutron | 04:31 | |
*** Dark_Matt3r has quit IRC | 04:32 | |
*** dsneddon has quit IRC | 04:32 | |
*** yamamoto has quit IRC | 04:33 | |
*** baoli has quit IRC | 04:34 | |
*** lazy_prince is now known as killer_prince | 04:35 | |
*** killer_prince is now known as lazy_prince | 04:36 | |
*** jckasper has quit IRC | 04:36 | |
*** jckasper has joined #openstack-neutron | 04:37 | |
*** shwetaap has quit IRC | 04:40 | |
*** coolsvap is now known as coolsvap_ | 04:41 | |
*** shwetaap has joined #openstack-neutron | 04:41 | |
santosh | hi | 04:43 |
santosh | I am trying to install openstack using this link http://docs.openstack.org/juno/install-guide/install/apt/content/cinder-install-storage-node.html | 04:44 |
*** tflynn has quit IRC | 04: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 node | 04:44 |
santosh | has anyone else seen this issue | 04:44 |
santosh | ? | 04:44 |
*** tflynn has joined #openstack-neutron | 04:45 | |
*** gildub has quit IRC | 04:46 | |
*** aepifanov has quit IRC | 04:46 | |
*** yatin has joined #openstack-neutron | 04:47 | |
*** dims_ has quit IRC | 04:48 | |
*** yapeng has joined #openstack-neutron | 04:48 | |
*** coolsvap_ is now known as coolsvap | 04:48 | |
*** santosh has quit IRC | 04:49 | |
*** yapeng_ has joined #openstack-neutron | 04:49 | |
*** markvoelker has joined #openstack-neutron | 04:50 | |
*** Dark_Matt3r has joined #openstack-neutron | 04:51 | |
*** santosh has joined #openstack-neutron | 04:51 | |
*** carl_baldwin has joined #openstack-neutron | 04:51 | |
*** yapeng has quit IRC | 04:53 | |
*** anish_ has joined #openstack-neutron | 04:54 | |
*** rushil has joined #openstack-neutron | 04:54 | |
otherwiseguy | dougwig: thanks for the late-night reviewing. :) | 04:54 |
*** vivek-eb_ has joined #openstack-neutron | 04:56 | |
*** markvoelker has quit IRC | 04:56 | |
*** tomoe_ has quit IRC | 04:57 | |
*** vivek-ebay has quit IRC | 04:57 | |
*** spandhe has quit IRC | 05:01 | |
*** rawat has quit IRC | 05:02 | |
*** trinaths has joined #openstack-neutron | 05:03 | |
*** Dark_Matt3r has quit IRC | 05:04 | |
*** yapeng_ has quit IRC | 05:05 | |
*** ramishra_ has quit IRC | 05:06 | |
*** watanabe_isao has joined #openstack-neutron | 05:07 | |
*** achanda has joined #openstack-neutron | 05:08 | |
openstackgerrit | Dane LeBlanc proposed openstack/neutron: Support Dual-Stack Gateway Ports on Neutron Routers https://review.openstack.org/149068 | 05:10 |
trinaths | Hi Neutroners, Very Good Morning | 05:12 |
*** MentalRay has quit IRC | 05:12 | |
*** anilvenkata has joined #openstack-neutron | 05:13 | |
*** pradip_vedams has joined #openstack-neutron | 05:15 | |
pradip_vedams | hi 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-neutron | 05:21 | |
*** tflynn has quit IRC | 05:22 | |
*** tflynn has joined #openstack-neutron | 05:22 | |
hichihar_ | pradip_vedams: Did you set securitygrouprule for icmp? | 05:25 |
*** nlahouti has quit IRC | 05:25 | |
*** nlahouti has joined #openstack-neutron | 05:25 | |
*** aranjan has joined #openstack-neutron | 05:28 | |
*** yog_ has quit IRC | 05:30 | |
*** tomoe_ has joined #openstack-neutron | 05:31 | |
openstackgerrit | Amandeep proposed openstack/python-neutronclient: Updated type parameter in loadbalancer https://review.openstack.org/157660 | 05:36 |
*** watanabe_isao has quit IRC | 05:36 | |
*** sthillma has joined #openstack-neutron | 05:38 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Add callbacks-based system to Neutron https://review.openstack.org/153774 | 05:42 |
*** salv-orlando has joined #openstack-neutron | 05:42 | |
*** yog_ has joined #openstack-neutron | 05:46 | |
*** santosh has quit IRC | 05:48 | |
*** dims__ has joined #openstack-neutron | 05:48 | |
*** numan has joined #openstack-neutron | 05:50 | |
*** yfried|afk has joined #openstack-neutron | 05:52 | |
*** dims__ has quit IRC | 05:53 | |
*** markvoelker has joined #openstack-neutron | 05:53 | |
*** Marga_ has quit IRC | 05:55 | |
*** leenheer has quit IRC | 05:56 | |
*** markvoelker has quit IRC | 05:58 | |
*** tomoe_ has quit IRC | 06:01 | |
*** SumitNaiksatam has quit IRC | 06:02 | |
*** Murali has joined #openstack-neutron | 06:03 | |
*** SumitNaiksatam has joined #openstack-neutron | 06:04 | |
*** SumitNaiksatam has quit IRC | 06:04 | |
*** leenheer has joined #openstack-neutron | 06:05 | |
*** SumitNaiksatam has joined #openstack-neutron | 06:06 | |
*** kickinz1|afk is now known as kickinz1 | 06:09 | |
*** aranjan has quit IRC | 06:10 | |
*** lazy_prince is now known as killer_prince | 06:10 | |
*** leenheer has quit IRC | 06:11 | |
*** killer_prince is now known as lazy_prince | 06:11 | |
*** ajay_ has joined #openstack-neutron | 06:12 | |
*** vthapar has joined #openstack-neutron | 06:13 | |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: Create/Delete FIP Agent gateway port only if DVR Routers https://review.openstack.org/157242 | 06:14 |
*** ramishra_ has joined #openstack-neutron | 06:15 | |
*** yushiro has joined #openstack-neutron | 06:16 | |
openstackgerrit | Merged openstack/neutron-vpnaas: Remove remaining root_helper references https://review.openstack.org/156691 | 06:18 |
*** ajay_ has quit IRC | 06:18 | |
openstackgerrit | Merged openstack/neutron: Remove root_helper arg from sanity checks https://review.openstack.org/155905 | 06:21 |
*** seizadi has joined #openstack-neutron | 06:21 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/157646 | 06:23 |
*** cipcosma has joined #openstack-neutron | 06:23 | |
*** yatin has quit IRC | 06:27 | |
*** Sukhdev has quit IRC | 06:29 | |
*** kickinz1 is now known as kickinz1|afk | 06:30 | |
*** yamamoto has joined #openstack-neutron | 06:30 | |
*** kickinz1|afk is now known as kickinz1 | 06:31 | |
*** neeti has joined #openstack-neutron | 06:31 | |
*** ramishra_ has quit IRC | 06:32 | |
*** yamamoto has quit IRC | 06:35 | |
*** achanda has quit IRC | 06:35 | |
*** SridharG has joined #openstack-neutron | 06:36 | |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: Create/Delete FIP Agent gateway port only if DVR Routers https://review.openstack.org/157242 | 06:37 |
*** achanda has joined #openstack-neutron | 06:38 | |
*** ParsectiX has quit IRC | 06:38 | |
*** ParsectiX has joined #openstack-neutron | 06:39 | |
*** seizadi1 has joined #openstack-neutron | 06:41 | |
*** yatin has joined #openstack-neutron | 06:41 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during delete operation https://review.openstack.org/155470 | 06:41 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Break coupling between ML2 and L3 during create/update operations https://review.openstack.org/153775 | 06:41 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Decouple L3 and service plugins during DVR router migration https://review.openstack.org/154749 | 06:41 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Decouple L3 and VPN service plugins during router operations https://review.openstack.org/153776 | 06:41 |
*** ramishra_ has joined #openstack-neutron | 06:42 | |
*** seizadi has quit IRC | 06:42 | |
*** rushil has quit IRC | 06:44 | |
*** armax has quit IRC | 06:45 | |
*** seizadi1 has quit IRC | 06:46 | |
*** seizadi has joined #openstack-neutron | 06:46 | |
*** mzbik has joined #openstack-neutron | 06:46 | |
*** aranjan has joined #openstack-neutron | 06:47 | |
*** tflynn has quit IRC | 06:47 | |
*** tflynn has joined #openstack-neutron | 06:48 | |
*** tomoe_ has joined #openstack-neutron | 06:49 | |
*** seizadi1 has joined #openstack-neutron | 06:49 | |
*** seizadi has quit IRC | 06:50 | |
*** salv-orlando has quit IRC | 06:52 | |
*** seizadi has joined #openstack-neutron | 06:53 | |
*** gridinv has joined #openstack-neutron | 06:53 | |
*** markvoelker has joined #openstack-neutron | 06:54 | |
*** seizadi1 has quit IRC | 06:54 | |
*** tomoe_ has quit IRC | 06:54 | |
*** ramishra_ has quit IRC | 06:54 | |
*** aranjan has quit IRC | 06:55 | |
*** aranjan_ has joined #openstack-neutron | 06:55 | |
*** aranjan_ has quit IRC | 06:57 | |
*** seizadi has quit IRC | 06:57 | |
*** apuimedo has joined #openstack-neutron | 06:58 | |
*** markvoelker has quit IRC | 06:58 | |
*** seizadi has joined #openstack-neutron | 06:59 | |
*** tomoe_ has joined #openstack-neutron | 06:59 | |
*** ParsectiX has quit IRC | 07:00 | |
*** vivek-ebay has joined #openstack-neutron | 07:01 | |
*** tflynn has quit IRC | 07:01 | |
*** tflynn has joined #openstack-neutron | 07:01 | |
enikanorov__ | amotoki: hi, could you please review https://review.openstack.org/#/c/152891/ | 07:03 |
*** yog_ has quit IRC | 07:04 | |
*** carl_baldwin has quit IRC | 07:04 | |
amotoki | enikanorov__: sure. I am going to out of office for a meeting. will check after that. | 07:04 |
*** vivek-eb_ has quit IRC | 07:04 | |
enikanorov__ | thanks! | 07:04 |
*** ramishra_ has joined #openstack-neutron | 07:06 | |
*** seizadi has quit IRC | 07:10 | |
*** afazekas_ has joined #openstack-neutron | 07:10 | |
*** shwetaap has quit IRC | 07:12 | |
*** amotoki has quit IRC | 07:14 | |
*** yog_ has joined #openstack-neutron | 07:17 | |
*** vivek-ebay has quit IRC | 07:19 | |
*** pal has quit IRC | 07:20 | |
*** tflynn has quit IRC | 07:21 | |
*** seizadi has joined #openstack-neutron | 07:21 | |
*** jamielennox is now known as jamielennox|away | 07:22 | |
*** trinaths has left #openstack-neutron | 07:25 | |
*** seizadi has quit IRC | 07:25 | |
*** yushiro has quit IRC | 07:29 | |
*** lazy_prince has quit IRC | 07:29 | |
*** killer_prince has joined #openstack-neutron | 07:31 | |
*** killer_prince is now known as lazy_prince | 07:32 | |
*** ZZelle has quit IRC | 07:32 | |
*** ZZelle has joined #openstack-neutron | 07:33 | |
openstackgerrit | Andrey Kurilin proposed openstack/neutron: Remove versioning import of novaclient https://review.openstack.org/152907 | 07:46 |
*** tomoe_ has quit IRC | 07:49 | |
*** lazy_prince has quit IRC | 07:54 | |
*** markvoelker has joined #openstack-neutron | 07:55 | |
*** devvesa has joined #openstack-neutron | 07:56 | |
*** scheuran has joined #openstack-neutron | 07:56 | |
*** ramishra_ has quit IRC | 07:57 | |
*** nivtuckio has joined #openstack-neutron | 07:59 | |
*** markvoelker has quit IRC | 08:01 | |
*** killer_prince has joined #openstack-neutron | 08:02 | |
*** killer_prince is now known as lazy_prince | 08:02 | |
*** pask81 has joined #openstack-neutron | 08:06 | |
openstackgerrit | Merged openstack/neutron-fwaas: Stop storing and passing root_helper https://review.openstack.org/156692 | 08:08 |
openstackgerrit | Merged openstack/neutron: Mock link local allocator write so UT doesn't write a file https://review.openstack.org/157443 | 08:08 |
*** jp_at_hp has joined #openstack-neutron | 08:09 | |
*** hjensas has joined #openstack-neutron | 08:10 | |
*** hjensas has quit IRC | 08:10 | |
*** hjensas has joined #openstack-neutron | 08:10 | |
*** ronis has joined #openstack-neutron | 08:14 | |
*** yuanying has quit IRC | 08:15 | |
*** achanda has quit IRC | 08:15 | |
*** yuanying_ has joined #openstack-neutron | 08:15 | |
*** tomoe_ has joined #openstack-neutron | 08:15 | |
*** nlahouti has quit IRC | 08:17 | |
*** yamamoto has joined #openstack-neutron | 08:19 | |
*** vivek-ebay has joined #openstack-neutron | 08:20 | |
*** moha_hunt has joined #openstack-neutron | 08:21 | |
*** yamamoto has quit IRC | 08:22 | |
*** salv-orlando has joined #openstack-neutron | 08:24 | |
*** vivek-ebay has quit IRC | 08:24 | |
*** kawa2014 has joined #openstack-neutron | 08:25 | |
*** coolsvap is now known as coolsvap_ | 08:29 | |
*** dsneddon has joined #openstack-neutron | 08:32 | |
*** coolsvap_ is now known as coolsvap | 08:35 | |
*** coolsvap is now known as coolsvap_ | 08:35 | |
*** jlanoux has joined #openstack-neutron | 08:38 | |
*** dims__ has joined #openstack-neutron | 08:38 | |
*** ajo has joined #openstack-neutron | 08:39 | |
*** dims__ has quit IRC | 08:43 | |
*** yuanying_ has quit IRC | 08:44 | |
*** tomoe_ has quit IRC | 08:45 | |
*** jistr has joined #openstack-neutron | 08:46 | |
*** numan has quit IRC | 08:47 | |
*** jpena has joined #openstack-neutron | 08:51 | |
*** amotoki has joined #openstack-neutron | 08:56 | |
*** santosh has joined #openstack-neutron | 08:57 | |
openstackgerrit | watanabe isao proposed openstack/neutron: KeyError when non enable_dhcp subnet id in the list https://review.openstack.org/157697 | 08:57 |
*** markvoelker has joined #openstack-neutron | 08:58 | |
*** ygbo has joined #openstack-neutron | 08:59 | |
*** amotoki has quit IRC | 08:59 | |
*** matrohon has joined #openstack-neutron | 09:00 | |
*** salv-orlando has quit IRC | 09:02 | |
*** markvoelker has quit IRC | 09:03 | |
*** santosh has quit IRC | 09:04 | |
*** ramishra_ has joined #openstack-neutron | 09:08 | |
*** yfried|afk has quit IRC | 09:08 | |
*** Marga_ has joined #openstack-neutron | 09:09 | |
*** ramishra_ has quit IRC | 09:12 | |
*** amotoki has joined #openstack-neutron | 09:15 | |
*** sbelous has quit IRC | 09:16 | |
*** tomoe_ has joined #openstack-neutron | 09:19 | |
*** yamamoto has joined #openstack-neutron | 09:23 | |
*** nyechiel has joined #openstack-neutron | 09:24 | |
*** numan has joined #openstack-neutron | 09:27 | |
*** yamamoto has quit IRC | 09:28 | |
*** tomoe_ has quit IRC | 09:28 | |
*** rotbeard has joined #openstack-neutron | 09:28 | |
*** Marga_ has quit IRC | 09:31 | |
*** karimb has joined #openstack-neutron | 09:32 | |
*** bjornar_ has joined #openstack-neutron | 09:32 | |
*** ihrachyshka has joined #openstack-neutron | 09:33 | |
*** matrohon has quit IRC | 09:33 | |
*** matrohon has joined #openstack-neutron | 09:36 | |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Implement IPAM Driver loader https://review.openstack.org/147479 | 09:36 |
*** txomon|fon has quit IRC | 09:38 | |
*** txomon|fon has joined #openstack-neutron | 09:40 | |
*** ramishra_ has joined #openstack-neutron | 09:40 | |
*** salv-orlando has joined #openstack-neutron | 09:43 | |
*** bjornar_ has quit IRC | 09:45 | |
*** bjornar_ has joined #openstack-neutron | 09:49 | |
*** nyechiel has quit IRC | 09:51 | |
*** ramishra_ has quit IRC | 09:51 | |
*** britthouser has quit IRC | 09:56 | |
*** markvoelker has joined #openstack-neutron | 09:59 | |
*** markvoelker has quit IRC | 10:04 | |
*** jlibosva has joined #openstack-neutron | 10:05 | |
*** tnurlygayanov has quit IRC | 10:06 | |
*** SumitNaiksatam has quit IRC | 10:11 | |
*** aix has joined #openstack-neutron | 10:12 | |
*** SumitNaiksatam has joined #openstack-neutron | 10:12 | |
*** lukasa_work has joined #openstack-neutron | 10:14 | |
*** nivtuckio has quit IRC | 10:16 | |
*** nivtuckio has joined #openstack-neutron | 10:17 | |
*** lukasa has quit IRC | 10:17 | |
*** yog_ has quit IRC | 10:18 | |
openstackgerrit | Sergey Belous proposed openstack/neutron: Added check for emptyness where in_ is being used https://review.openstack.org/150034 | 10:22 |
*** nivtuckio has quit IRC | 10:27 | |
*** MasterPiece has joined #openstack-neutron | 10:30 | |
openstackgerrit | Merged openstack/neutron: Unify logic that determines liveliness of DHCP agent https://review.openstack.org/152891 | 10:33 |
*** aepifanov has joined #openstack-neutron | 10:41 | |
*** pal has joined #openstack-neutron | 10:45 | |
*** vitorc has quit IRC | 10:46 | |
*** vitorc has joined #openstack-neutron | 10:47 | |
*** shaohe_feng has quit IRC | 10:48 | |
*** kerpan has joined #openstack-neutron | 10:55 | |
*** amotoki has quit IRC | 10:58 | |
*** markvoelker has joined #openstack-neutron | 11:00 | |
*** markvoelker has quit IRC | 11:05 | |
*** hichihar_ has quit IRC | 11:15 | |
*** salv-orlando has quit IRC | 11:24 | |
*** salv-orlando has joined #openstack-neutron | 11:25 | |
*** yamamoto has joined #openstack-neutron | 11:26 | |
*** santosh has joined #openstack-neutron | 11:26 | |
santosh | hi | 11:26 |
santosh | I am unable to ping my subnet from controller host | 11:27 |
*** bobmel has quit IRC | 11:31 | |
*** bobmel has joined #openstack-neutron | 11:31 | |
*** jasondotstar has joined #openstack-neutron | 11:32 | |
*** openstack has joined #openstack-neutron | 20: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#gettinghelp | 20:23 | |
dougwig | marun: 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 |
marun | dougwig: fair enough | 20:24 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!