*** yamamoto has quit IRC | 00:00 | |
armax | it sounds like we’re attempting the disassociation regarless of the device ownershipt | 00:00 |
---|---|---|
armax | but the query should yield an empty resultset | 00:01 |
*** Marga_ has quit IRC | 00:01 | |
armax | so I don’t think that floating ip is the culprit here | 00:02 |
*** rook__ has quit IRC | 00:03 | |
dane_leblanc | What's curious is that the lock of the db-access happened much earlier | 00:03 |
armax | dane_leblanc: in fact right after the exception we successfully go past line 1262 | 00:03 |
armax | and complete the port deletion | 00:03 |
*** ferest has quit IRC | 00:04 | |
armax | what’s funny though | 00:04 |
armax | is that we’re trying to update a port that’s being deleted | 00:04 |
dane_leblanc | Then a lot of time goes by, and approximately the same time, we see the "Calling delete_port for..." message and immediately the deadlock timeout traceback | 00:04 |
armax | it’s a bit baffling that the dhcp agent tries to delete a port that’s being updated | 00:07 |
armax | dane_leblanc: I think that’s where troubles start | 00:07 |
*** banix has joined #openstack-neutron | 00:07 | |
armax | dane_leblanc: we’d need to confirm whether this happen only on dhcp ports | 00:07 |
dane_leblanc | I've looked into 2 logs, both were DHCP ports. Not that that's a big enough sample space. | 00:08 |
armax | dane_leblanc: ok, now I’d need to undersatn why we’re updating a port that is in the process of being deleted | 00:09 |
armax | dane_leblanc: I think this is where the crux of the matter lies | 00:09 |
*** sbfox has joined #openstack-neutron | 00:10 | |
dane_leblanc | armax: help me out, I see the port delete, but don't see the update. | 00:10 |
*** rangansw has joined #openstack-neutron | 00:11 | |
armax | dane_leblanc: the port is being deleted here: | 00:12 |
armax | http://logs.openstack.org/26/165226/11/gate/gate-tempest-dsvm-neutron-full/db4d28d/logs/screen-q-svc.txt.gz#_2015-04-03_20_06_20_165 | 00:12 |
armax | but then in _create_subnet_from_implicit_pool line 1284 | 00:12 |
armax | you’re trying to update the ip allocation | 00:13 |
armax | same port id! | 00:13 |
armax | something ain’t righ! | 00:13 |
armax | right | 00:13 |
armax | this looks an awful lot self-inflicted | 00:13 |
armax | can’t tell why yet though | 00:14 |
HenryG | _create_subnet_from_implicit_pool() is a new method added yesterday via the last subnet pool patch. | 00:14 |
armax | ah | 00:14 |
armax | Igot it | 00:14 |
armax | got | 00:14 |
armax | it | 00:14 |
*** sbfox has quit IRC | 00:14 | |
* armax thinks he spoke too soon | 00:15 | |
armax | I need to look at the test to see what’s going on fully | 00:15 |
armax | it looks like the query in _add_auto_addrs_on_network_ports | 00:15 |
armax | is returning the port being deleted | 00:16 |
armax | and that’s where things go kaboom | 00:16 |
armax | dane_leblanc, HenryG: you with me? | 00:16 |
*** dimsum__ has quit IRC | 00:16 | |
armax | no DVR, or floating IP’s that can fault that | 00:16 |
dane_leblanc | armax: Interesting | 00:16 |
armax | dane_leblanc: I can now say with fair degree of confidence that your change can be abandoned | 00:16 |
armax | I mean https://review.openstack.org/#/c/170611/ | 00:17 |
dane_leblanc | armax: But isn't it the calls to l3plugin that is opening the door for other threads/sessions? | 00:19 |
armax | dane_leblanc: no | 00:19 |
armax | the l3plugin is not yielding | 00:19 |
armax | I mean the call to the l3plugin dissasociate_floatingips | 00:20 |
armax | it’s the db_plugin’s delete_port that yield | 00:20 |
armax | but the problem is in the test | 00:20 |
armax | the problem is this: | 00:20 |
armax | https://github.com/openstack/tempest/blob/master/tempest/api/network/test_dhcp_ipv6.py#L64 | 00:20 |
armax | I still need to figure out how though | 00:21 |
*** dimsum__ has joined #openstack-neutron | 00:22 | |
*** dims_ has joined #openstack-neutron | 00:23 | |
openstackgerrit | Maru Newby proposed openstack/neutron: Reorganize unit test tree https://review.openstack.org/158811 | 00:24 |
openstackgerrit | Maru Newby proposed openstack/neutron: Add reorg helpers. https://review.openstack.org/170629 | 00:24 |
armax | to the problem is right herE: | 00:25 |
*** ijw_ has quit IRC | 00:25 | |
armax | the test setup creates the network, | 00:25 |
armax | then it creates the subnet | 00:26 |
armax | immediately after it cleans the network | 00:26 |
armax | by deleting its ports | 00:26 |
armax | but the provisioning of the subnet is not yet complete | 00:26 |
*** SumitNaiksatam has quit IRC | 00:26 | |
*** dimsum__ has quit IRC | 00:27 | |
armax | dane_leblanc, HenryG: are you with me? | 00:28 |
*** Marga_ has joined #openstack-neutron | 00:29 | |
HenryG | no because I was eating cake. Reading scrollback ... | 00:31 |
*** sripriya has quit IRC | 00:32 | |
dane_leblanc | armax: I'm following... still absorbing, lots of async stuff going on. | 00:32 |
armax | HenryG: and you didn’t think to share? shame on you | 00:33 |
armax | dane_leblanc: yes, that’s true | 00:33 |
armax | dane_leblanc: the test is racey itself | 00:33 |
dane_leblanc | armax: But maybe that's good if it exposes issues? | 00:34 |
armax | dane_leblanc: true | 00:34 |
openstackgerrit | Maru Newby proposed openstack/neutron: Reorganize unit test tree https://review.openstack.org/158811 | 00:34 |
*** leakypipes has quit IRC | 00:34 | |
armax | your code made it worse beccause now you’re touching a port that’s being deleted | 00:35 |
dane_leblanc | armax: Right. | 00:36 |
armax | I honestly don’t understand what this is for: | 00:37 |
armax | https://github.com/openstack/tempest/blob/master/tempest/api/network/test_dhcp_ipv6.py#L132 | 00:37 |
armax | why do we even clean a network if the assert doesn’t depend on it? | 00:37 |
armax | mtreinish: ^^^ | 00:37 |
dane_leblanc | armax: He has to clean up the network because he's in a for loop trying different combos | 00:39 |
armax | this test is pretty bad | 00:39 |
*** rangansw has quit IRC | 00:40 | |
armax | dane_leblanc: my head is about to explode | 00:41 |
dane_leblanc | armax: <ducking> | 00:41 |
dane_leblanc | :) | 00:41 |
HenryG | armax: will some cake help? | 00:42 |
armax | ship it! | 00:42 |
armax | quick | 00:42 |
armax | some sugar would help | 00:42 |
marun | armax, HenryG: if you have a chance to merge this: http://status.openstack.org/zuul/ | 00:42 |
marun | please do | 00:42 |
armax | marun: the entire zuul? | 00:43 |
armax | that’s gonna be hard | 00:43 |
marun | the follow-on is going to be messy https://review.openstack.org/#/c/158811/ | 00:43 |
marun | arg | 00:43 |
marun | https://review.openstack.org/#/c/170329/ | 00:43 |
marun | that is the precursor to the first reorg patch ^ | 00:43 |
armax | dane_leblanc: at this point I am split on the course of action | 00:43 |
*** apuimedo has quit IRC | 00:44 | |
*** annegentle has joined #openstack-neutron | 00:45 | |
armax | dane_leblanc: the issue is clearly caused by _get_ips_from_subnet | 00:45 |
armax | that creates the port, which is suddently deleted | 00:45 |
armax | with _clean_network | 00:45 |
*** xgerman has joined #openstack-neutron | 00:45 | |
armax | but the subnet setup is not yet complete when this happens | 00:45 |
armax | so ultimately the fix could be twofold | 00:45 |
dane_leblanc | armax: But should a test, as wicked as it might be, be able to cause a deadlock? | 00:45 |
armax | dane_leblanc: I think that the server code should be able to handle a situation where we’re dealing with concurrent deletes | 00:46 |
armax | on the other end, this test makes me cringe | 00:46 |
*** baoli has joined #openstack-neutron | 00:47 | |
*** annegentle has quit IRC | 00:49 | |
armax | dane_leblanc: let me put a patch up for review | 00:50 |
armax | and you can test it to see if the issue goes away | 00:51 |
armax | dane_leblanc: what timezone are you? | 00:51 |
dane_leblanc | East Coast | 00:51 |
marun | dougwig: I'm afraid pain is on its way... | 00:51 |
marun | https://review.openstack.org/#/c/158811/ | 00:51 |
armax | so I guess it’s getting late | 00:51 |
dane_leblanc | armax: Worst case, I can test it early tomorrow EDT, or tonight after a couple of beers. | 00:52 |
armax | dane_leblanc: ok | 00:52 |
armax | :) | 00:52 |
openstackgerrit | Maru Newby proposed openstack/neutron: Reorganize unit test tree https://review.openstack.org/158811 | 00:52 |
openstackgerrit | Maru Newby proposed openstack/neutron: Prepare for unit test reorg https://review.openstack.org/170329 | 00:52 |
*** banix has quit IRC | 00:55 | |
*** zhhuabj_ has quit IRC | 00:56 | |
armax | dane_leblanc: anyway I think I found the easiest and possible worst fix in the world | 00:56 |
armax | dane_leblanc: I am pretty sure it’ll work | 00:56 |
*** marun has quit IRC | 00:56 | |
dane_leblanc | armax: Okay, you've piqued my interest | 00:57 |
armax | dane_leblanc: look here | 00:57 |
armax | https://github.com/openstack/neutron/blob/master/neutron/db/db_base_plugin_v2.py#L1224 | 00:57 |
armax | and here: | 00:57 |
armax | https://github.com/openstack/neutron/blob/master/neutron/db/db_base_plugin_v2.py#L1262 | 00:57 |
armax | spot the differnece? | 00:57 |
armax | it’s easy ;) | 00:57 |
*** Swami has joined #openstack-neutron | 00:59 | |
*** orzel has joined #openstack-neutron | 00:59 | |
*** Swami has quit IRC | 00:59 | |
dane_leblanc | Lots of differences in the methods... you mean the call signatures? | 01:00 |
armax | water... | 01:00 |
armax | close enough though | 01:00 |
HenryG | No I think he means retry_on_deadlock decorator | 01:00 |
*** ferest has joined #openstack-neutron | 01:00 | |
armax | HenryG: we got a winner! | 01:00 |
HenryG | armax: Go for it, you already have my +2 :) | 01:00 |
dane_leblanc | armax: HA | 01:00 |
armax | HenryG: after this change I am officially off the core team | 01:01 |
armax | I hand my resignations to mestery | 01:01 |
HenryG | armax: I will not allow it | 01:01 |
armax | maybe it’s the lack of sugar talking... | 01:02 |
dane_leblanc | armax: I can try this change with the repro method I used before | 01:03 |
armax | change is on the way | 01:03 |
*** emagana has quit IRC | 01:03 | |
armax | waiting for the oven to ring | 01:04 |
armax | done | 01:04 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Fix DB Deadlock exception on dhcp v6 tests https://review.openstack.org/170631 | 01:04 |
armax | ^^ | 01:04 |
HenryG | BTW thanks dane_leblanc for the great bug report with details on how to replicate | 01:04 |
armax | that’s it! I am out, it’s been a blast, let Neutron live on! | 01:04 |
*** dboik_ has joined #openstack-neutron | 01:04 | |
armax | yes | 01:05 |
armax | thanks dane_leblanc for jumping on the channel and help me see through | 01:05 |
*** ferest has quit IRC | 01:05 | |
armax | and HenryG for the moral support | 01:05 |
armax | and the cake, which I am still waiting for | 01:05 |
HenryG | armax: you did all the hard work | 01:05 |
HenryG | I will buy you a cake in Vancouver | 01:05 |
dane_leblanc | armax: You're quite welcome. I'm very glad that my ealier patch set wasn't a demon culprit here. | 01:06 |
armax | to be honest, if ryan or carl were around I am sure they’d got to that much more quickly | 01:06 |
*** daneyon has joined #openstack-neutron | 01:06 | |
armax | cuz that retry decorator smells like crap to me | 01:06 |
dane_leblanc | armax: I was just going to ask... seems like a band-aid to cover a real problem | 01:06 |
armax | as in, perhaps we had already seen those errors ;) | 01:06 |
HenryG | well if you google "how to deal with mysql deadlocks" guess what the answer is | 01:07 |
armax | dane_leblanc: it’s a band aid that was long time debated | 01:07 |
armax | I am actually opposed to it, hence my pending resignations | 01:07 |
armax | because I tainted my reputation with this fix :) | 01:07 |
armax | I can’t go on | 01:07 |
*** dboik has quit IRC | 01:07 | |
armax | I lost my credibility | 01:07 |
*** Marga_ has quit IRC | 01:08 | |
armax | :) | 01:08 |
HenryG | You'll be back on Monday for more | 01:08 |
armax | I need to go back and rebuild it from scratch | 01:08 |
*** Marga_ has joined #openstack-neutron | 01:08 | |
armax | alright guys | 01:08 |
armax | it’s late for you | 01:08 |
armax | and it’s getting late here | 01:08 |
armax | we’d want to flag these tests to the respecive owners | 01:09 |
armax | dane_leblanc: if you can confrm that the fix indeed worked that would be great | 01:09 |
armax | in your own time though | 01:09 |
HenryG | I am still checking marun's patch, then I'll also call it a day | 01:09 |
armax | I’ll pick that up later | 01:10 |
armax | I need a break from this troubleshooting session | 01:10 |
armax | dane_leblanc: btw now the I can see failures in the DVR job too | 01:11 |
dane_leblanc | armax: Running a repro with your fix | 01:11 |
armax | dane_leblanc: ah, then I stick around :) | 01:11 |
armax | HenryG: so, cake, got a tracking number for me? | 01:11 |
*** nplanel_ has quit IRC | 01:11 | |
*** britthou_ has quit IRC | 01:14 | |
HenryG | armax: shipped cake is gross, wait for Vancouver | 01:15 |
armax | HenryG: ok | 01:15 |
HenryG | According to http://dev.mysql.com/doc/refman/5.5/en/innodb-deadlocks.html - "Always be prepared to re-issue a transaction if it fails due to deadlock. Deadlocks are not dangerous. Just try again." | 01:16 |
armax | HenryG: you forgot to add an important piece of the statement | 01:17 |
armax | but they are not dangerous unless they are so frequent that you cannot run certain transactions at all. | 01:17 |
HenryG | armax: I am just trying to help you feel less dirty about your patch | 01:17 |
armax | HenryG: if they become the norm rather that the exception, then we do have a problem | 01:17 |
armax | HenryG: thanks, I appreciate your effort ;) | 01:18 |
armax | too late, I am scarred for life | 01:18 |
HenryG | I think we are still in not too bad shape. This transaction had no retry at all and the problem was invoked only by an extreme test scenario. | 01:21 |
armax | well this tells us that one we try to create/delete ports we’re bound to throw up an exception | 01:22 |
armax | that doesn’t make me feel good | 01:22 |
*** dims_ has quit IRC | 01:24 | |
mestery | Whats this about a resignation armax? | 01:27 |
HenryG | It's bluff, he just wants a raise | 01:29 |
mestery | lol | 01:30 |
mestery | You guys have all the fun while I'm away ;) | 01:30 |
*** banix has joined #openstack-neutron | 01:30 | |
armax | mestery: I need time to reflect on my position | 01:32 |
armax | mestery: I filed a fix I’d never thought to file | 01:32 |
armax | and I am ashamed | 01:32 |
*** ferest has joined #openstack-neutron | 01:33 | |
*** changbl_ has joined #openstack-neutron | 01:34 | |
*** devlaps1 has quit IRC | 01:37 | |
dane_leblanc | armax: I'm seeing some failures with your fix, though it looks less frequent. 1 in 20 failures in lastest run, it was 1 in 6 before. | 01:39 |
mestery | armax: lol | 01:39 |
*** harlowja is now known as harlowja_away | 01:39 | |
*** changbl_ has quit IRC | 01:42 | |
*** sthillma_ has quit IRC | 01:42 | |
*** harlowja_away is now known as harlowja | 01:44 | |
*** erkules_ has joined #openstack-neutron | 01:44 | |
*** annegentle has joined #openstack-neutron | 01:45 | |
*** erkules has quit IRC | 01:47 | |
*** annegentle has quit IRC | 01:51 | |
*** xgerman has quit IRC | 01:52 | |
*** s3wong has quit IRC | 01:53 | |
*** sbfox has joined #openstack-neutron | 01:55 | |
*** dsneddon_away has quit IRC | 01:56 | |
openstackgerrit | pritesh proposed openstack/neutron: Moving VLAN Transparency support from core to extension https://review.openstack.org/169569 | 02:00 |
*** sbfox has quit IRC | 02:00 | |
*** dane_leblanc has quit IRC | 02:03 | |
openstackgerrit | Andrew Boik proposed openstack/neutron: Consider all address scopes in init_l3 https://review.openstack.org/168502 | 02:06 |
*** dboik_ has quit IRC | 02:06 | |
*** ajmiller has joined #openstack-neutron | 02:07 | |
*** orzel has quit IRC | 02:08 | |
prometheanfire | mestery: question about working on something that may have been missed in a blueprint for kilo | 02:09 |
prometheanfire | or spec | 02:09 |
prometheanfire | https://review.openstack.org/#/c/153733/ | 02:09 |
prometheanfire | https://blueprints.launchpad.net/neutron/+spec/mtu-selection-and-advertisement | 02:09 |
prometheanfire | that's not the bug | 02:10 |
prometheanfire | blueprint is right, but it missed linuxbridge | 02:10 |
prometheanfire | here's the bug https://bugs.launchpad.net/neutron/+bug/1348788 | 02:10 |
openstack | Launchpad bug 1348788 in neutron "network_device_mtu is not applied to VMs, only to agents" [Low,Confirmed] | 02:10 |
*** annegentle has joined #openstack-neutron | 02:12 | |
*** annegentle has quit IRC | 02:12 | |
*** baoli has quit IRC | 02:14 | |
*** emagana has joined #openstack-neutron | 02:16 | |
openstackgerrit | Merged openstack/neutron-vpnaas: VPNaaS: Refactoring to use callback mechanism https://review.openstack.org/165226 | 02:16 |
*** baoli has joined #openstack-neutron | 02:20 | |
*** suresh12 has quit IRC | 02:21 | |
*** dimsum__ has joined #openstack-neutron | 02:23 | |
*** mspreitz has quit IRC | 02:23 | |
*** dims_ has joined #openstack-neutron | 02:24 | |
*** achanda has quit IRC | 02:27 | |
*** dimsum__ has quit IRC | 02:27 | |
*** banix has quit IRC | 02:27 | |
*** zhhuabj has joined #openstack-neutron | 02:29 | |
*** achanda has joined #openstack-neutron | 02:33 | |
*** sridhar_ram has quit IRC | 02:36 | |
*** achanda has quit IRC | 02:37 | |
*** dims_ has quit IRC | 02:39 | |
openstackgerrit | pritesh proposed openstack/python-neutronclient: Adding VLAN Transparency support to neutronclient https://review.openstack.org/162040 | 02:42 |
*** johnbelamaric has quit IRC | 02:47 | |
*** ferest has quit IRC | 02:47 | |
*** harlowja is now known as harlowja_away | 02:48 | |
*** leenheer has joined #openstack-neutron | 02:49 | |
*** achanda has joined #openstack-neutron | 02:54 | |
*** sbfox has joined #openstack-neutron | 02:57 | |
*** banix has joined #openstack-neutron | 02:59 | |
*** Marga_ has quit IRC | 02:59 | |
*** pritesh_ has quit IRC | 03:01 | |
*** sbfox has quit IRC | 03:01 | |
*** zhhuabj has quit IRC | 03:16 | |
*** achanda has quit IRC | 03:17 | |
*** bobmel has joined #openstack-neutron | 03:19 | |
*** bobmel_ has quit IRC | 03:22 | |
*** leenheer has quit IRC | 03:26 | |
*** leenheer has joined #openstack-neutron | 03:27 | |
*** emagana has quit IRC | 03:33 | |
*** tflynn has joined #openstack-neutron | 03:33 | |
*** tflynn_ has joined #openstack-neutron | 03:34 | |
*** tflynn has quit IRC | 03:37 | |
*** tflynn_ has quit IRC | 03:40 | |
*** tflynn has joined #openstack-neutron | 03:45 | |
*** banix has quit IRC | 03:47 | |
*** yamamoto has joined #openstack-neutron | 03:56 | |
*** baoli has quit IRC | 04:01 | |
*** oda-g has quit IRC | 04:11 | |
*** leenheer has quit IRC | 04:12 | |
*** dimsum__ has joined #openstack-neutron | 04:15 | |
*** achanda has joined #openstack-neutron | 04:18 | |
*** dimsum__ has quit IRC | 04:20 | |
*** armax has quit IRC | 04:21 | |
*** aepifanov has joined #openstack-neutron | 04:22 | |
*** achanda has quit IRC | 04:23 | |
*** ajmiller_ has joined #openstack-neutron | 04:26 | |
*** ajmiller has quit IRC | 04:30 | |
*** Viswanath has joined #openstack-neutron | 04:43 | |
*** sbfox has joined #openstack-neutron | 04:45 | |
*** Viswanath has quit IRC | 04:45 | |
*** sbfox has quit IRC | 04:50 | |
*** nplanel_ has joined #openstack-neutron | 04:51 | |
*** seizadi has joined #openstack-neutron | 04:52 | |
openstackgerrit | Merged openstack/neutron: Refactoring cleanup for L3 agent callbacks https://review.openstack.org/169876 | 04:55 |
*** Viswanath has joined #openstack-neutron | 05:04 | |
*** dboik has joined #openstack-neutron | 05:07 | |
*** Viswanath has quit IRC | 05:08 | |
*** tflynn has quit IRC | 05:09 | |
*** Marga_ has joined #openstack-neutron | 05:12 | |
*** tflynn has joined #openstack-neutron | 05:12 | |
*** dboik has quit IRC | 05:12 | |
*** sbalukoff has joined #openstack-neutron | 05:15 | |
*** seizadi has quit IRC | 05:17 | |
*** aswadr has joined #openstack-neutron | 05:20 | |
*** mlavalle has quit IRC | 05:20 | |
*** tflynn has quit IRC | 05:23 | |
*** aswadr has quit IRC | 05:24 | |
*** tflynn has joined #openstack-neutron | 05:24 | |
*** chandankumar has joined #openstack-neutron | 05:36 | |
*** seizadi has joined #openstack-neutron | 05:37 | |
*** seizadi has quit IRC | 05:42 | |
*** sbfox has joined #openstack-neutron | 05:46 | |
*** sbfox has quit IRC | 05:50 | |
*** vishwanathj has quit IRC | 05:51 | |
*** Marga_ has quit IRC | 06:00 | |
*** sbalukoff has quit IRC | 06:01 | |
*** tflynn has quit IRC | 06:05 | |
*** aepifanov has quit IRC | 06:08 | |
*** nplanel_ has quit IRC | 06:20 | |
*** luqas has joined #openstack-neutron | 06:20 | |
*** achanda has joined #openstack-neutron | 06:22 | |
*** luqas has quit IRC | 06:25 | |
*** tflynn has joined #openstack-neutron | 06:26 | |
*** achanda has quit IRC | 06:27 | |
*** ivar-lazzaro has joined #openstack-neutron | 06:28 | |
*** chandankumar has quit IRC | 06:31 | |
*** SumitNaiksatam has joined #openstack-neutron | 06:34 | |
*** SumitNaiksatam has left #openstack-neutron | 06:35 | |
*** shwetaap has joined #openstack-neutron | 06:36 | |
*** vishwanathj has joined #openstack-neutron | 06:41 | |
*** vishwana_ has joined #openstack-neutron | 06:46 | |
*** sbfox has joined #openstack-neutron | 06:47 | |
*** vishwanathj has quit IRC | 06:48 | |
*** tomoe_ has joined #openstack-neutron | 06:50 | |
*** sbfox has quit IRC | 06:51 | |
*** Longgeek has joined #openstack-neutron | 06:52 | |
*** shwetaap has quit IRC | 06:57 | |
openstackgerrit | pritesh proposed openstack/neutron: Moving VLAN Transparency support from core to extension https://review.openstack.org/169569 | 07:00 |
*** tflynn has quit IRC | 07:09 | |
*** SumitNaiksatam has joined #openstack-neutron | 07:09 | |
*** achanda has joined #openstack-neutron | 07:16 | |
*** chandankumar has joined #openstack-neutron | 08:04 | |
*** rotbart has joined #openstack-neutron | 08:11 | |
*** achanda has quit IRC | 08:21 | |
*** achanda has joined #openstack-neutron | 08:26 | |
*** achanda has quit IRC | 08:27 | |
*** sridhar_ram has joined #openstack-neutron | 08:34 | |
*** sbfox has joined #openstack-neutron | 08:36 | |
*** ivar-lazzaro has quit IRC | 08:38 | |
*** sridhar_ram has quit IRC | 08:38 | |
*** sbfox has quit IRC | 08:40 | |
*** ivar-lazzaro has joined #openstack-neutron | 08:45 | |
*** Bsony has joined #openstack-neutron | 08:46 | |
*** nmagnezi has joined #openstack-neutron | 08:46 | |
*** nmagnezi has quit IRC | 08:47 | |
*** ivar-lazzaro has quit IRC | 08:58 | |
*** ivar-lazzaro has joined #openstack-neutron | 08:58 | |
*** ivar-lazzaro has quit IRC | 09:03 | |
*** seizadi has joined #openstack-neutron | 09:10 | |
*** apuimedo has joined #openstack-neutron | 09:11 | |
*** seizadi has quit IRC | 09:15 | |
*** chandankumar has quit IRC | 09:30 | |
*** rkukura has quit IRC | 09:41 | |
*** chandankumar has joined #openstack-neutron | 09:42 | |
*** rkukura has joined #openstack-neutron | 09:46 | |
*** apuimedo has quit IRC | 09:50 | |
*** dave-mccowan has quit IRC | 09:51 | |
*** dave-mccowan has joined #openstack-neutron | 09:56 | |
*** dave-mcc_ has joined #openstack-neutron | 10:06 | |
*** dave-mccowan has quit IRC | 10:06 | |
*** amotoki has joined #openstack-neutron | 10:07 | |
*** bjornar_ has quit IRC | 10:12 | |
*** shaohe_feng has joined #openstack-neutron | 10:15 | |
*** Longgeek has quit IRC | 10:24 | |
*** sbfox has joined #openstack-neutron | 10:24 | |
*** chandankumar has quit IRC | 10:26 | |
*** moshele has joined #openstack-neutron | 10:27 | |
*** sbfox has quit IRC | 10:29 | |
*** dave-mccowan has joined #openstack-neutron | 10:30 | |
*** dave-mcc_ has quit IRC | 10:30 | |
*** Longgeek has joined #openstack-neutron | 10:30 | |
*** dave-mccowan has quit IRC | 10:34 | |
*** dave-mccowan has joined #openstack-neutron | 10:34 | |
*** Longgeek has quit IRC | 10:35 | |
*** ivar-lazzaro has joined #openstack-neutron | 10:38 | |
*** claudiub has joined #openstack-neutron | 10:39 | |
*** shaohe_feng has quit IRC | 10:52 | |
*** ivar-lazzaro has quit IRC | 10:52 | |
*** rook__ has joined #openstack-neutron | 11:06 | |
*** Miouge has joined #openstack-neutron | 11:06 | |
*** luqas has joined #openstack-neutron | 11:13 | |
*** Marga_ has joined #openstack-neutron | 11:17 | |
*** luqas has quit IRC | 11:17 | |
*** rook__ has quit IRC | 11:23 | |
*** aepifanov has joined #openstack-neutron | 11:29 | |
*** Marga_ has quit IRC | 11:32 | |
*** Marga_ has joined #openstack-neutron | 11:32 | |
*** Marga__ has joined #openstack-neutron | 11:37 | |
*** Marga_ has quit IRC | 11:38 | |
*** kutija has joined #openstack-neutron | 11:39 | |
*** Miouge has quit IRC | 11:41 | |
*** yamamoto has quit IRC | 11:48 | |
*** sbfox has joined #openstack-neutron | 12:13 | |
*** britthouser has joined #openstack-neutron | 12:16 | |
*** sbfox has quit IRC | 12:18 | |
openstackgerrit | vikram.choudhary proposed openstack/neutron-specs: Implements: Blueprint TimeSyncAsAService https://review.openstack.org/170671 | 12:21 |
*** moshele has quit IRC | 12:24 | |
*** Marga__ has quit IRC | 12:30 | |
*** Marga_ has joined #openstack-neutron | 12:34 | |
*** shaohe_feng has joined #openstack-neutron | 12:38 | |
openstackgerrit | vikram.choudhary proposed openstack/neutron-specs: Implements: Blueprint service-function-chaining-using-openflow https://review.openstack.org/170672 | 12:42 |
*** Marga_ has quit IRC | 12:42 | |
*** yamamoto has joined #openstack-neutron | 12:45 | |
*** yamamoto has quit IRC | 12:45 | |
*** amotoki has quit IRC | 12:49 | |
*** Marga_ has joined #openstack-neutron | 12:50 | |
*** yamamoto has joined #openstack-neutron | 12:51 | |
*** yamamoto has quit IRC | 12:52 | |
*** dimsum__ has joined #openstack-neutron | 12:58 | |
*** matrohon has joined #openstack-neutron | 12:59 | |
*** aepifanov has quit IRC | 13:00 | |
*** dims_ has joined #openstack-neutron | 13:04 | |
*** moshele has joined #openstack-neutron | 13:06 | |
*** dimsum__ has quit IRC | 13:06 | |
*** moshele has quit IRC | 13:09 | |
*** shwetaap has joined #openstack-neutron | 13:14 | |
*** amotoki has joined #openstack-neutron | 13:15 | |
*** dane_leblanc has joined #openstack-neutron | 13:16 | |
*** claudiub has quit IRC | 13:16 | |
*** moshele has joined #openstack-neutron | 13:17 | |
*** shaohe_feng has quit IRC | 13:23 | |
*** baoli has joined #openstack-neutron | 13:24 | |
*** baoli has quit IRC | 13:30 | |
*** shaohe_feng has joined #openstack-neutron | 13:31 | |
*** dane_leblanc has quit IRC | 13:32 | |
*** baoli has joined #openstack-neutron | 13:32 | |
*** amotoki has quit IRC | 13:33 | |
*** tomoe_ has quit IRC | 13:33 | |
*** harkirat has joined #openstack-neutron | 13:33 | |
*** matrohon has quit IRC | 13:33 | |
*** YorikSar has quit IRC | 13:34 | |
*** baoli has quit IRC | 13:37 | |
*** baoli has joined #openstack-neutron | 13:39 | |
*** dave-mccowan has quit IRC | 13:40 | |
openstackgerrit | vikram.choudhary proposed openstack/neutron-specs: Implements: Blueprint service-function-chaining-using-openflow https://review.openstack.org/170672 | 13:41 |
*** Miouge has joined #openstack-neutron | 13:49 | |
*** moshele has quit IRC | 13:49 | |
*** chandankumar has joined #openstack-neutron | 13:54 | |
*** Miouge has quit IRC | 13:58 | |
*** shwetaap has quit IRC | 13:59 | |
*** sbfox has joined #openstack-neutron | 14:02 | |
*** sbfox has quit IRC | 14:06 | |
*** moshele has joined #openstack-neutron | 14:09 | |
*** shaohe_feng has quit IRC | 14:09 | |
*** dims_ has quit IRC | 14:12 | |
*** seizadi has joined #openstack-neutron | 14:14 | |
*** gsagie_ has joined #openstack-neutron | 14:17 | |
*** baoli has quit IRC | 14:18 | |
*** seizadi has quit IRC | 14:19 | |
openstackgerrit | vikram.choudhary proposed openstack/neutron-specs: Implements: Blueprint TimeSyncAsAService https://review.openstack.org/170671 | 14:24 |
*** YorikSar has joined #openstack-neutron | 14:24 | |
*** moshele has quit IRC | 14:31 | |
*** ajmiller_ is now known as ajmiller | 14:39 | |
*** yamamoto has joined #openstack-neutron | 14:41 | |
*** erkules_ is now known as erkules | 14:42 | |
*** erkules has joined #openstack-neutron | 14:42 | |
*** ZZelle has quit IRC | 14:43 | |
*** ZZelle has joined #openstack-neutron | 14:44 | |
*** tomoe_ has joined #openstack-neutron | 14:45 | |
*** yamamoto has quit IRC | 14:46 | |
*** baoli has joined #openstack-neutron | 14:47 | |
*** chandankumar has quit IRC | 14:58 | |
*** enikanorov has joined #openstack-neutron | 15:00 | |
*** baoli has quit IRC | 15:01 | |
*** sbfox has joined #openstack-neutron | 15:02 | |
*** sbfox has quit IRC | 15:07 | |
*** baoli has joined #openstack-neutron | 15:11 | |
*** dimsum__ has joined #openstack-neutron | 15:13 | |
*** dimsum__ has quit IRC | 15:18 | |
*** baoli has quit IRC | 15:22 | |
*** pradk has joined #openstack-neutron | 15:26 | |
*** emagana has joined #openstack-neutron | 15:26 | |
*** pradk has quit IRC | 15:26 | |
*** Miouge has joined #openstack-neutron | 15:30 | |
*** armax has joined #openstack-neutron | 15:30 | |
*** alexpilotti has joined #openstack-neutron | 15:31 | |
*** baoli has joined #openstack-neutron | 15:38 | |
*** shaohe_feng has joined #openstack-neutron | 15:41 | |
*** emagana has quit IRC | 15:49 | |
*** emagana has joined #openstack-neutron | 15:50 | |
*** emagana has quit IRC | 15:54 | |
openstackgerrit | vikram.choudhary proposed openstack/neutron-specs: Implements: Blueprint TimeSyncAsAService https://review.openstack.org/170671 | 15:54 |
*** armax has quit IRC | 16:05 | |
*** tomoe_ has quit IRC | 16:05 | |
*** YorikSar has quit IRC | 16:05 | |
*** emagana has joined #openstack-neutron | 16:09 | |
*** rotbart has quit IRC | 16:15 | |
*** dave-mccowan has joined #openstack-neutron | 16:18 | |
*** luqas has joined #openstack-neutron | 16:18 | |
*** sbfox has joined #openstack-neutron | 16:18 | |
*** YorikSar has joined #openstack-neutron | 16:20 | |
*** luqas has quit IRC | 16:23 | |
*** sbfox has quit IRC | 16:23 | |
*** boris-42 has quit IRC | 16:38 | |
*** shaohe_feng has quit IRC | 16:39 | |
*** YorikSar has quit IRC | 16:41 | |
*** sbfox has joined #openstack-neutron | 16:45 | |
*** nplanel_ has joined #openstack-neutron | 16:47 | |
*** gsagie_ has quit IRC | 16:48 | |
*** sbfox has quit IRC | 16:52 | |
*** emagana has quit IRC | 16:55 | |
*** emagana has joined #openstack-neutron | 16:56 | |
*** chachaji has quit IRC | 17:01 | |
*** emagana has quit IRC | 17:01 | |
*** tomoe_ has joined #openstack-neutron | 17:05 | |
*** Miouge has quit IRC | 17:07 | |
*** tomoe_ has quit IRC | 17:10 | |
*** dimsum__ has joined #openstack-neutron | 17:13 | |
*** shwetaap has joined #openstack-neutron | 17:35 | |
*** dimsum__ has quit IRC | 17:51 | |
*** shwetaap has quit IRC | 17:57 | |
*** shwetaap has joined #openstack-neutron | 18:04 | |
*** tomoe_ has joined #openstack-neutron | 18:07 | |
*** ronis has joined #openstack-neutron | 18:08 | |
*** tomoe_ has quit IRC | 18:11 | |
*** shwetaap has quit IRC | 18:25 | |
*** yfried has joined #openstack-neutron | 18:40 | |
*** yfried has quit IRC | 18:43 | |
*** yfried has joined #openstack-neutron | 18:43 | |
*** apuimedo has joined #openstack-neutron | 18:48 | |
*** dimsum__ has joined #openstack-neutron | 18:51 | |
*** aepifanov has joined #openstack-neutron | 18:56 | |
*** dimsum__ has quit IRC | 18:57 | |
*** aepifanov has quit IRC | 19:01 | |
*** setuid has quit IRC | 19:01 | |
*** baoli has quit IRC | 19:09 | |
*** boris-42 has joined #openstack-neutron | 19:18 | |
*** dboik has joined #openstack-neutron | 19:20 | |
*** thomasem has quit IRC | 19:43 | |
*** nyechiel_ has joined #openstack-neutron | 19:44 | |
*** Marga_ has quit IRC | 19:53 | |
*** chachaji has joined #openstack-neutron | 19:54 | |
*** nyechiel__ has joined #openstack-neutron | 19:56 | |
*** achanda has joined #openstack-neutron | 19:59 | |
*** nyechiel_ has quit IRC | 20:00 | |
*** Marga_ has joined #openstack-neutron | 20:00 | |
*** chachaji has quit IRC | 20:03 | |
*** nyechiel__ has quit IRC | 20:06 | |
*** aepifanov has joined #openstack-neutron | 20:06 | |
*** achanda has quit IRC | 20:07 | |
*** yamamoto has joined #openstack-neutron | 20:07 | |
*** baoli has joined #openstack-neutron | 20:09 | |
*** yamamoto has quit IRC | 20:12 | |
openstackgerrit | pritesh proposed openstack/python-neutronclient: Adding VLAN Transparency support to neutronclient https://review.openstack.org/162040 | 20:12 |
openstackgerrit | Merged openstack/neutron: Move network MTU from core REST API to extension API https://review.openstack.org/169406 | 20:13 |
*** baoli has quit IRC | 20:14 | |
*** apuimedo has quit IRC | 20:21 | |
*** SumitNaiksatam has quit IRC | 20:22 | |
*** dimsum__ has joined #openstack-neutron | 20:24 | |
*** SumitNaiksatam has joined #openstack-neutron | 20:26 | |
*** dboik has quit IRC | 20:27 | |
*** pritesh has joined #openstack-neutron | 20:31 | |
*** Marga_ has quit IRC | 20:35 | |
*** aepifanov has quit IRC | 20:35 | |
*** leenheer has joined #openstack-neutron | 20:38 | |
*** Marga_ has joined #openstack-neutron | 20:39 | |
openstackgerrit | pritesh proposed openstack/neutron: Moving VLAN Transparency support from core to extension https://review.openstack.org/169569 | 20:39 |
*** chandankumar has joined #openstack-neutron | 20:51 | |
*** diegows has joined #openstack-neutron | 20:52 | |
*** Bsony has quit IRC | 20:55 | |
*** suresh12 has joined #openstack-neutron | 20:58 | |
*** leenheer has quit IRC | 21:00 | |
*** pritesh has quit IRC | 21:02 | |
*** chandankumar has quit IRC | 21:05 | |
*** pritesh has joined #openstack-neutron | 21:07 | |
*** Marga_ has quit IRC | 21:12 | |
*** banix has joined #openstack-neutron | 21:27 | |
*** banix has quit IRC | 21:30 | |
*** banix has joined #openstack-neutron | 21:38 | |
*** baoli has joined #openstack-neutron | 21:40 | |
*** sbalukoff has joined #openstack-neutron | 21:41 | |
*** Marga_ has joined #openstack-neutron | 21:43 | |
*** tomoe_ has joined #openstack-neutron | 21:44 | |
*** moha_hunt has joined #openstack-neutron | 21:44 | |
*** baoli has quit IRC | 21:45 | |
*** ronis has quit IRC | 21:46 | |
*** banix has quit IRC | 21:48 | |
*** tomoe_ has quit IRC | 21:48 | |
*** Marga_ has quit IRC | 21:49 | |
*** Marga_ has joined #openstack-neutron | 21:54 | |
*** leenheer has joined #openstack-neutron | 21:55 | |
*** apuimedo has joined #openstack-neutron | 21:56 | |
*** Marga_ has quit IRC | 21:57 | |
*** Marga_ has joined #openstack-neutron | 21:57 | |
*** banix has joined #openstack-neutron | 22:00 | |
*** apuimedo has quit IRC | 22:01 | |
*** banix has quit IRC | 22:01 | |
*** achanda has joined #openstack-neutron | 22:03 | |
*** dmellado has quit IRC | 22:04 | |
*** dmellado has joined #openstack-neutron | 22:05 | |
*** pritesh has quit IRC | 22:11 | |
*** achanda has quit IRC | 22:20 | |
*** dane_leblanc has joined #openstack-neutron | 22:21 | |
*** achanda has joined #openstack-neutron | 22:23 | |
*** pritesh has joined #openstack-neutron | 22:24 | |
*** achanda has quit IRC | 22:27 | |
*** pritesh has quit IRC | 22:32 | |
*** setuid has joined #openstack-neutron | 22:36 | |
*** banix has joined #openstack-neutron | 22:38 | |
*** baoli has joined #openstack-neutron | 22:41 | |
*** Marga_ has quit IRC | 22:44 | |
*** baoli has quit IRC | 22:46 | |
*** suresh12 has quit IRC | 22:59 | |
*** apuimedo has joined #openstack-neutron | 22:59 | |
*** banix has quit IRC | 23:07 | |
*** apuimedo has quit IRC | 23:08 | |
*** bradjones has quit IRC | 23:10 | |
*** bradjones has joined #openstack-neutron | 23:12 | |
*** bradjones has quit IRC | 23:12 | |
*** bradjones has joined #openstack-neutron | 23:12 | |
*** moha_hunt has quit IRC | 23:22 | |
openstackgerrit | Dane LeBlanc proposed openstack/neutron: DBDeadlock caused by blocked call in dvr_deletens_if_no_port https://review.openstack.org/170690 | 23:22 |
*** dboik has joined #openstack-neutron | 23:27 | |
*** baoli has joined #openstack-neutron | 23:29 | |
*** baoli has quit IRC | 23:29 | |
*** dboik has quit IRC | 23:32 | |
*** baoli has joined #openstack-neutron | 23:32 | |
*** baoli has quit IRC | 23:37 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!