*** jamesdenton has quit IRC | 00:01 | |
*** limao has quit IRC | 00:07 | |
*** jamesdenton has joined #openstack-neutron | 00:08 | |
*** thorst has quit IRC | 00:11 | |
armax | dhellmann: I was supposed to take care of the release, my apologies | 00:12 |
---|---|---|
*** achadha has joined #openstack-neutron | 00:15 | |
*** achadha has quit IRC | 00:20 | |
openstackgerrit | Merged openstack/ovsdbapp master: Update reno for stable/pike https://review.openstack.org/488743 | 00:23 |
mlavalle | kevinbenton: ping | 00:33 |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron master: DVR: Provide options for DVR North/South routing centralized https://review.openstack.org/485333 | 00:36 |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron master: DVR: Provide options for DVR North/South routing centralized https://review.openstack.org/485333 | 00:38 |
*** psahoo has joined #openstack-neutron | 00:38 | |
*** Swami has quit IRC | 00:40 | |
kevinbenton | mlavalle: pong | 00:47 |
mlavalle | kevinbenton: I am thinking of using session.context.info to store the segments | 00:47 |
kevinbenton | mlavalle: I really want to avoid that if we can | 00:48 |
mlavalle | ok | 00:48 |
kevinbenton | mlavalle: are you having trouble getting the segment ids? | 00:48 |
mlavalle | kevinbenton: is it ok if I get the segments ids in the delete_network method of the DB plugin? | 00:49 |
kevinbenton | mlavalle: dont' we put segment_ids already in the network dict? | 00:51 |
kevinbenton | mlavalle: or is that just subnet_ids? | 00:51 |
mlavalle | we are not putting segments ids in the network dict | 00:51 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron master: Add bandit target to tox https://review.openstack.org/488894 | 00:52 |
openstackgerrit | Armando Migliaccio proposed openstack/neutron master: Hook bandit security linter to pep8 target https://review.openstack.org/488895 | 00:52 |
mlavalle | I assumed that earlier today but playing with the unit test, I realized we don't | 00:52 |
kevinbenton | mlavalle: yeah, i see that now | 00:52 |
kevinbenton | mlavalle: i was assuming the same thing :) | 00:52 |
*** vijaykc4 has quit IRC | 00:52 | |
openstackgerrit | Terry Wilson proposed openstack/ovsdbapp master: Don't create a sandbox chassis by default https://review.openstack.org/488897 | 00:53 |
kevinbenton | mlavalle: yeah, it does seem like we are goint to have to jam something on the context | 00:54 |
mlavalle | kevinbenton: yeah, that's why I thought of session.info | 00:54 |
*** edmondsw has joined #openstack-neutron | 00:55 | |
kevinbenton | mlavalle: i don't think session.info is safe because the new engine facade will blow away the session between context managers | 00:55 |
kevinbenton | mlavalle: IIRC when this exits https://github.com/openstack/neutron/blob/master/neutron/db/db_base_plugin_v2.py#L454 | 00:55 |
mlavalle | kevinbenton: I realize that | 00:56 |
kevinbenton | mlavalle: context.session will be gone | 00:56 |
kevinbenton | mlavalle: so then the call here wouldn't have that https://github.com/openstack/neutron/blob/master/neutron/db/db_base_plugin_v2.py#L460-L461 | 00:56 |
*** jkilpatr has quit IRC | 00:56 | |
* mlavalle looking | 00:56 | |
mlavalle | kevinbenton: yes, but isn't the context restored at the end of the transaction? | 00:58 |
mlavalle | the context from line 433, because that is created outside any transaction | 00:58 |
kevinbenton | mlavalle: oh, yeah, right now it will swap back our legacy session | 00:59 |
kevinbenton | mlavalle: i see what you mean | 00:59 |
*** edmondsw has quit IRC | 00:59 | |
openstackgerrit | Dongcan Ye proposed openstack/neutron master: Tempest: Add availability-zone for agent https://review.openstack.org/475123 | 01:00 |
*** xinliang has quit IRC | 01:00 | |
*** chyka has joined #openstack-neutron | 01:00 | |
mlavalle | kevinbenton: so if I save the segments in the session.info of the BEFORE_DELETE context, that is the context I will receive in the AFTER_DELETE event | 01:00 |
mlavalle | right? | 01:00 |
kevinbenton | mlavalle: i believe so | 01:01 |
mlavalle | kevinbenton: ok, I will follow that path. I will push again tomorrow night | 01:01 |
kevinbenton | mlavalle: hang on a sec :) | 01:02 |
kevinbenton | mlavalle: i'm thinking through the implications | 01:02 |
mlavalle | kevinbenton: yeah, that is why I pinged you | 01:02 |
kevinbenton | mlavalle: the thing i don't like about session.info is the error paths | 01:02 |
kevinbenton | mlavalle: if we put something in there and then an exception is thrown before AFTER_DELETE that aborts the delete | 01:03 |
kevinbenton | mlavalle: it will just hang around | 01:03 |
kevinbenton | mlavalle: for the rest of the life of that context | 01:03 |
*** Manuel_112 has joined #openstack-neutron | 01:04 | |
mlavalle | kevinbenton: the alternative is to create a little cache in neutron/services/segments/db.py | 01:04 |
*** chyka has quit IRC | 01:04 | |
mlavalle | a dictionary where the keys are networks being deleted | 01:04 |
kevinbenton | mlavalle: yeah, just a map of network_id->segment_ids | 01:05 |
kevinbenton | right? | 01:05 |
mlavalle | yeap | 01:05 |
mlavalle | exactly | 01:05 |
mlavalle | kevinbenton: if you are ok with that approach, I will implement it between today and tomorrow | 01:06 |
kevinbenton | mlavalle: how about just registering a dict extend function that puts the segment IDs in the network response? | 01:06 |
kevinbenton | for make_network_dict | 01:06 |
mlavalle | kevinbenton: yeah, that's another approach | 01:07 |
mlavalle | I will try that | 01:07 |
kevinbenton | it shouldn't show up in the actual api response for networks anyway since it's not in the attr map | 01:07 |
mlavalle | correct | 01:07 |
mlavalle | let's give that approach a try | 01:08 |
kevinbenton | of all the hacks, i think i would prefer that one first because there is no risk of leaving stuff behind on exceptions | 01:08 |
kevinbenton | :) | 01:08 |
kevinbenton | does that make sense to you? | 01:08 |
mlavalle | perfect sense | 01:08 |
kevinbenton | because we might have the same problem with the cache of it growing over time as deletes fail | 01:08 |
kevinbenton | ok | 01:08 |
mlavalle | kevinbenton: expect something tomorrow night | 01:08 |
kevinbenton | mlavalle: there isn't a huge rush on this if you want to wait until monday | 01:08 |
*** Manuel_112 has quit IRC | 01:08 | |
kevinbenton | not a feaure :) | 01:09 |
*** marst has joined #openstack-neutron | 01:09 | |
mlavalle | kevinbenton: I am going to work a little bit anyway | 01:09 |
kevinbenton | mlavalle: ok. thanks for doing this, have a good weekend! | 01:09 |
mlavalle | kevinbenton: ok, c'ya, wife is about to start yelling at me, have a nice weekend! | 01:10 |
kevinbenton | mlavalle: ciao! | 01:10 |
kevinbenton | mlavalle: arrivaderci? | 01:10 |
*** jkilpatr has joined #openstack-neutron | 01:10 | |
kevinbenton | mlavalle: something :) | 01:10 |
mlavalle | kevinbenton: adios | 01:10 |
kevinbenton | mlavalle: hopefully armax isn't watching | 01:11 |
*** mlavalle has quit IRC | 01:11 | |
*** harlowja_ has quit IRC | 01:13 | |
*** deep-book-gk_ has joined #openstack-neutron | 01:17 | |
*** deep-book-gk_ has left #openstack-neutron | 01:19 | |
*** mriedem has quit IRC | 01:21 | |
*** psahoo has quit IRC | 01:27 | |
openstackgerrit | Merged openstack/python-neutronclient master: Update reno for stable/pike https://review.openstack.org/488871 | 01:32 |
armax | calling me in channel is not the way to go about it | 01:34 |
*** ijw has quit IRC | 01:35 | |
openstackgerrit | Merged openstack/networking-odl master: Updated from global requirements https://review.openstack.org/488026 | 01:38 |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: don't merge: experiment: disable tempest.api.compute.* https://review.openstack.org/488899 | 01:39 |
*** slaweq has joined #openstack-neutron | 01:40 | |
*** MoguCloud1 has quit IRC | 01:41 | |
*** psahoo has joined #openstack-neutron | 01:42 | |
*** ijw has joined #openstack-neutron | 01:44 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: don't merge: experimental: disable some of tempests test that uses floating ip https://review.openstack.org/486177 | 01:44 |
*** slaweq has quit IRC | 01:45 | |
*** yamahata has joined #openstack-neutron | 01:46 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: journal: reduce contention with get_oldest_pending_db_row_with_lock https://review.openstack.org/488573 | 01:48 |
*** ijw has quit IRC | 01:48 | |
*** salmankhan has quit IRC | 01:49 | |
*** zhurong has joined #openstack-neutron | 01:51 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: journal: reduce contention with get_oldest_pending_db_row_with_lock https://review.openstack.org/488573 | 01:52 |
*** markvoelker has joined #openstack-neutron | 01:56 | |
*** harlowja has joined #openstack-neutron | 02:05 | |
*** itlinux has joined #openstack-neutron | 02:06 | |
*** itlinux has quit IRC | 02:12 | |
*** pwiltsey has joined #openstack-neutron | 02:20 | |
*** ihrachys has quit IRC | 02:20 | |
*** MoguCloud has joined #openstack-neutron | 02:21 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron master: Hook bandit security linter to pep8 target https://review.openstack.org/488895 | 02:21 |
*** esberglu has joined #openstack-neutron | 02:23 | |
*** pwiltsey has quit IRC | 02:23 | |
*** esberglu has quit IRC | 02:27 | |
*** deep-book-gk_ has joined #openstack-neutron | 02:27 | |
openstackgerrit | Merged openstack/neutron master: Log revision number in resource updated message https://review.openstack.org/488557 | 02:28 |
*** deep-book-gk_ has left #openstack-neutron | 02:28 | |
*** markvoelker has quit IRC | 02:30 | |
*** MoguCloud has quit IRC | 02:32 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/ovsdbapp master: Updated from global requirements https://review.openstack.org/488107 | 02:40 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-neutronclient master: Updated from global requirements https://review.openstack.org/488124 | 02:41 |
*** slaweq has joined #openstack-neutron | 02:41 | |
*** edmondsw has joined #openstack-neutron | 02:43 | |
*** armax has quit IRC | 02:46 | |
*** slaweq has quit IRC | 02:47 | |
*** edmondsw has quit IRC | 02:47 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: journal: reduce contention with get_oldest_pending_db_row_with_lock https://review.openstack.org/488573 | 02:47 |
*** MoguCloud1 has joined #openstack-neutron | 02:50 | |
*** armax has joined #openstack-neutron | 02:50 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: journal: reduce contention with get_oldest_pending_db_row_with_lock https://review.openstack.org/488573 | 02:52 |
*** trinaths has joined #openstack-neutron | 02:53 | |
*** itlinux has joined #openstack-neutron | 02:57 | |
*** trinaths has quit IRC | 02:57 | |
*** MoguCloud1 has quit IRC | 03:01 | |
*** xinliang has joined #openstack-neutron | 03:11 | |
*** itlinux has quit IRC | 03:15 | |
*** harlowja has quit IRC | 03:16 | |
*** xinliang has quit IRC | 03:17 | |
*** xinliang has joined #openstack-neutron | 03:17 | |
*** harlowja has joined #openstack-neutron | 03:18 | |
*** markvoelker has joined #openstack-neutron | 03:28 | |
*** boris_42 has quit IRC | 03:29 | |
*** trinaths has joined #openstack-neutron | 03:30 | |
*** nicolasbock has joined #openstack-neutron | 03:38 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron master: WIP: Catch OVSFWPortNotFound during subport removal https://review.openstack.org/488914 | 03:40 |
*** ijw has joined #openstack-neutron | 03:48 | |
*** ijw_ has joined #openstack-neutron | 03:50 | |
*** harlowja has quit IRC | 03:52 | |
*** ijw has quit IRC | 03:53 | |
*** chyka has joined #openstack-neutron | 03:55 | |
*** chyka has quit IRC | 03:59 | |
*** obondarev has joined #openstack-neutron | 04:00 | |
*** obondarev has quit IRC | 04:00 | |
*** markvoelker has quit IRC | 04:01 | |
openstackgerrit | Merged openstack/neutron-dynamic-routing master: Updated from global requirements https://review.openstack.org/488029 | 04:02 |
*** esberglu has joined #openstack-neutron | 04:11 | |
*** thorst has joined #openstack-neutron | 04:11 | |
*** esberglu has quit IRC | 04:16 | |
*** pwiltsey has joined #openstack-neutron | 04:21 | |
*** pwiltsey has quit IRC | 04:23 | |
*** pwiltsey has joined #openstack-neutron | 04:23 | |
*** pwiltsey has quit IRC | 04:27 | |
*** thorst has quit IRC | 04:27 | |
*** bjolo has quit IRC | 04:30 | |
*** edmondsw has joined #openstack-neutron | 04:31 | |
*** edmondsw has quit IRC | 04:35 | |
*** armax has quit IRC | 04:36 | |
*** obondarev has joined #openstack-neutron | 04:37 | |
*** Manuel_112 has joined #openstack-neutron | 04:40 | |
*** obondarev has quit IRC | 04:41 | |
*** slaweq has joined #openstack-neutron | 04:43 | |
*** Manuel_112 has quit IRC | 04:45 | |
*** slaweq has quit IRC | 04:48 | |
openstackgerrit | Merged openstack/neutron-fwaas master: Updated from global requirements https://review.openstack.org/488030 | 04:54 |
*** vijaykc4 has joined #openstack-neutron | 04:57 | |
*** markvoelker has joined #openstack-neutron | 04:58 | |
*** itlinux has joined #openstack-neutron | 05:04 | |
*** gouthamr has quit IRC | 05:13 | |
*** janki has joined #openstack-neutron | 05:13 | |
*** wolverineav has joined #openstack-neutron | 05:29 | |
*** markvoelker has quit IRC | 05:31 | |
*** wolverineav has quit IRC | 05:33 | |
*** wolverineav has joined #openstack-neutron | 05:39 | |
*** vijaykc4 has quit IRC | 05:43 | |
*** wolverineav has quit IRC | 05:44 | |
*** chyka has joined #openstack-neutron | 05:45 | |
*** chyka has quit IRC | 05:50 | |
*** xinliang has quit IRC | 05:51 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: journal: reduce contention with get_oldest_pending_db_row_with_lock https://review.openstack.org/488573 | 05:53 |
*** baojg has joined #openstack-neutron | 05:55 | |
*** esberglu has joined #openstack-neutron | 05:59 | |
*** harlowja has joined #openstack-neutron | 06:02 | |
*** esberglu has quit IRC | 06:04 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: pseudo agentg: pre-populate agentdb if missing https://review.openstack.org/484446 | 06:14 |
*** gcheresh_ has joined #openstack-neutron | 06:16 | |
*** edmondsw has joined #openstack-neutron | 06:19 | |
*** vijaykc4 has joined #openstack-neutron | 06:22 | |
*** edmondsw has quit IRC | 06:23 | |
*** thorst has joined #openstack-neutron | 06:24 | |
*** gcheresh_ has quit IRC | 06:26 | |
*** vijaykc4 has quit IRC | 06:29 | |
*** thorst has quit IRC | 06:29 | |
*** aojea has joined #openstack-neutron | 06:30 | |
*** vijaykc4 has joined #openstack-neutron | 06:44 | |
*** zhurong has quit IRC | 06:44 | |
*** slaweq has joined #openstack-neutron | 06:46 | |
*** harlowja has quit IRC | 06:47 | |
*** slaweq has quit IRC | 06:50 | |
*** rcernin has joined #openstack-neutron | 06:51 | |
*** iranzo has joined #openstack-neutron | 06:57 | |
*** bzhao_ has joined #openstack-neutron | 07:00 | |
*** bzhao has quit IRC | 07:01 | |
*** bzhao has joined #openstack-neutron | 07:05 | |
*** bzhao has quit IRC | 07:06 | |
*** iranzo has quit IRC | 07:08 | |
*** ijw has joined #openstack-neutron | 07:11 | |
*** ijw_ has quit IRC | 07:15 | |
*** aojea has quit IRC | 07:17 | |
*** aojea has joined #openstack-neutron | 07:19 | |
*** xinliang has joined #openstack-neutron | 07:19 | |
*** xinliang has quit IRC | 07:19 | |
*** xinliang has joined #openstack-neutron | 07:19 | |
*** yamamoto has joined #openstack-neutron | 07:23 | |
*** Manuel_112 has joined #openstack-neutron | 07:25 | |
*** pwiltsey has joined #openstack-neutron | 07:26 | |
*** iranzo has joined #openstack-neutron | 07:26 | |
*** yamamoto has quit IRC | 07:26 | |
*** markvoelker has joined #openstack-neutron | 07:28 | |
*** Manuel_112 has quit IRC | 07:30 | |
*** aojea has quit IRC | 07:30 | |
*** aojea has joined #openstack-neutron | 07:31 | |
*** vijaykc4 has quit IRC | 07:31 | |
openstackgerrit | Merged openstack/networking-odl master: unit: fix up merge botch https://review.openstack.org/487629 | 07:31 |
*** yamamoto has joined #openstack-neutron | 07:32 | |
*** pwiltsey has quit IRC | 07:32 | |
*** iranzo has quit IRC | 07:35 | |
*** aojea has quit IRC | 07:35 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: pseudo agentg: pre-populate agentdb if missing https://review.openstack.org/484446 | 07:37 |
*** vijaykc4 has joined #openstack-neutron | 07:38 | |
openstackgerrit | Isaku Yamahata proposed openstack/networking-odl master: journal: reduce contention with get_oldest_pending_db_row_with_lock https://review.openstack.org/488573 | 07:41 |
*** yamamoto has quit IRC | 07:43 | |
*** yamamoto has joined #openstack-neutron | 07:43 | |
*** yamamoto has quit IRC | 07:45 | |
*** esberglu has joined #openstack-neutron | 07:47 | |
*** yamamoto has joined #openstack-neutron | 07:48 | |
*** yamamoto has quit IRC | 07:51 | |
*** esberglu has quit IRC | 07:52 | |
*** yamahata has quit IRC | 07:53 | |
*** zhurong has joined #openstack-neutron | 07:58 | |
*** markvoelker has quit IRC | 08:02 | |
*** kristian__ has joined #openstack-neutron | 08:06 | |
*** edmondsw has joined #openstack-neutron | 08:07 | |
*** janki has quit IRC | 08:12 | |
*** aojea has joined #openstack-neutron | 08:12 | |
*** edmondsw has quit IRC | 08:12 | |
*** limao has joined #openstack-neutron | 08:19 | |
*** limao_ has joined #openstack-neutron | 08:24 | |
*** limao has quit IRC | 08:25 | |
*** vijaykc4 has quit IRC | 08:31 | |
*** aojea has quit IRC | 08:31 | |
*** limao_ has quit IRC | 08:33 | |
*** limao has joined #openstack-neutron | 08:33 | |
*** limao has quit IRC | 08:44 | |
*** limao has joined #openstack-neutron | 08:45 | |
*** slaweq has joined #openstack-neutron | 08:48 | |
*** nicolasbock has quit IRC | 08:50 | |
*** liusheng has quit IRC | 08:50 | |
*** vijaykc4 has joined #openstack-neutron | 08:50 | |
*** yamamoto has joined #openstack-neutron | 08:52 | |
*** slaweq has quit IRC | 08:52 | |
*** limao has quit IRC | 08:55 | |
*** limao has joined #openstack-neutron | 08:56 | |
*** nplanel has joined #openstack-neutron | 08:57 | |
*** trinaths has quit IRC | 08:58 | |
*** yamamoto has quit IRC | 08:58 | |
*** yamamoto has joined #openstack-neutron | 08:58 | |
*** markvoelker has joined #openstack-neutron | 08:59 | |
*** itlinux has quit IRC | 08:59 | |
*** zhurong has quit IRC | 08:59 | |
*** kristia__ has joined #openstack-neutron | 09:02 | |
*** yamamoto has quit IRC | 09:02 | |
*** slaweq has joined #openstack-neutron | 09:05 | |
*** kristian__ has quit IRC | 09:05 | |
*** limao has quit IRC | 09:07 | |
*** limao has joined #openstack-neutron | 09:07 | |
*** yamamoto has joined #openstack-neutron | 09:13 | |
*** yamamoto has quit IRC | 09:14 | |
*** nplanel has quit IRC | 09:17 | |
*** vijaykc4 has quit IRC | 09:19 | |
*** psahoo has quit IRC | 09:25 | |
*** obondarev has joined #openstack-neutron | 09:26 | |
*** vijaykc4 has joined #openstack-neutron | 09:28 | |
*** limao has quit IRC | 09:28 | |
*** limao has joined #openstack-neutron | 09:29 | |
*** vijaykc4 has quit IRC | 09:30 | |
*** markvoelker has quit IRC | 09:31 | |
*** esberglu has joined #openstack-neutron | 09:35 | |
*** esberglu has quit IRC | 09:40 | |
*** yamamoto has joined #openstack-neutron | 09:42 | |
*** chyka has joined #openstack-neutron | 09:45 | |
openstackgerrit | ZhaoBo proposed openstack/neutron master: Add the check when create port invalid device_owner or fixed ip https://review.openstack.org/488944 | 09:49 |
*** chyka has quit IRC | 09:50 | |
*** limao has quit IRC | 09:51 | |
*** limao has joined #openstack-neutron | 09:51 | |
*** wolverineav has joined #openstack-neutron | 10:02 | |
*** limao has quit IRC | 10:02 | |
*** limao has joined #openstack-neutron | 10:03 | |
*** limao has quit IRC | 10:13 | |
*** limao has joined #openstack-neutron | 10:14 | |
*** obondarev has quit IRC | 10:23 | |
*** sanfern has quit IRC | 10:24 | |
*** limao has quit IRC | 10:25 | |
*** sanfern has joined #openstack-neutron | 10:25 | |
*** limao has joined #openstack-neutron | 10:25 | |
*** thorst has joined #openstack-neutron | 10:26 | |
*** obondarev has joined #openstack-neutron | 10:26 | |
*** markvoelker has joined #openstack-neutron | 10:28 | |
*** pwiltsey has joined #openstack-neutron | 10:30 | |
*** vijaykc4 has joined #openstack-neutron | 10:30 | |
*** xinliang has quit IRC | 10:30 | |
*** thorst has quit IRC | 10:30 | |
*** yamamoto has quit IRC | 10:32 | |
*** yamamoto has joined #openstack-neutron | 10:33 | |
*** pwiltsey has quit IRC | 10:34 | |
*** limao has quit IRC | 10:36 | |
*** limao has joined #openstack-neutron | 10:37 | |
*** nplanel has joined #openstack-neutron | 10:37 | |
*** yamamoto has quit IRC | 10:38 | |
*** kristian__ has joined #openstack-neutron | 10:41 | |
*** kristia__ has quit IRC | 10:42 | |
*** obondarev has quit IRC | 10:47 | |
*** limao has quit IRC | 10:48 | |
*** limao has joined #openstack-neutron | 10:48 | |
*** obondarev has joined #openstack-neutron | 10:57 | |
*** yamamoto has joined #openstack-neutron | 10:58 | |
*** limao has quit IRC | 10:59 | |
*** limao has joined #openstack-neutron | 11:00 | |
*** markvoelker has quit IRC | 11:01 | |
*** vijaykc4 has quit IRC | 11:02 | |
*** rossella__ has quit IRC | 11:08 | |
*** rossella__ has joined #openstack-neutron | 11:09 | |
*** limao has quit IRC | 11:10 | |
*** limao has joined #openstack-neutron | 11:11 | |
*** yamamoto has quit IRC | 11:18 | |
*** nplanel has quit IRC | 11:19 | |
*** xinliang has joined #openstack-neutron | 11:19 | |
*** yamamoto has joined #openstack-neutron | 11:20 | |
*** thorst has joined #openstack-neutron | 11:21 | |
*** yamamoto has quit IRC | 11:22 | |
*** yamamoto has joined #openstack-neutron | 11:22 | |
*** yamamoto has quit IRC | 11:22 | |
*** limao has quit IRC | 11:22 | |
*** thorst has quit IRC | 11:22 | |
*** limao has joined #openstack-neutron | 11:22 | |
*** obondarev has quit IRC | 11:24 | |
*** yamamoto has joined #openstack-neutron | 11:26 | |
*** ijw has quit IRC | 11:26 | |
*** pwiltsey has joined #openstack-neutron | 11:30 | |
*** xinliang has quit IRC | 11:34 | |
*** pwiltsey has quit IRC | 11:34 | |
*** limao has quit IRC | 11:37 | |
*** rossella__ has quit IRC | 11:42 | |
*** edmondsw has joined #openstack-neutron | 11:43 | |
*** rossella__ has joined #openstack-neutron | 11:46 | |
*** edmondsw has quit IRC | 11:47 | |
*** xinliang has joined #openstack-neutron | 11:50 | |
*** markvoelker has joined #openstack-neutron | 11:59 | |
*** yamamoto has quit IRC | 12:23 | |
*** yamamoto has joined #openstack-neutron | 12:25 | |
*** pwiltsey has joined #openstack-neutron | 12:31 | |
*** markvoelker has quit IRC | 12:31 | |
*** pwiltsey has quit IRC | 12:34 | |
*** yamamoto has quit IRC | 12:35 | |
*** yamamoto has joined #openstack-neutron | 12:35 | |
*** yamamoto has quit IRC | 12:36 | |
*** gbutnaru has quit IRC | 12:41 | |
*** zeus has quit IRC | 12:43 | |
*** vijaykc4 has joined #openstack-neutron | 12:51 | |
*** gbutnaru has joined #openstack-neutron | 12:55 | |
*** gcheresh_ has joined #openstack-neutron | 12:57 | |
*** gcheresh_ has quit IRC | 13:00 | |
*** tbachman has quit IRC | 13:05 | |
*** aojea has joined #openstack-neutron | 13:19 | |
*** wolverineav has quit IRC | 13:22 | |
*** thorst has joined #openstack-neutron | 13:23 | |
*** nplanel has joined #openstack-neutron | 13:23 | |
*** thorst has quit IRC | 13:28 | |
*** tbachman has joined #openstack-neutron | 13:30 | |
*** edmondsw has joined #openstack-neutron | 13:31 | |
*** tbachman_ has joined #openstack-neutron | 13:32 | |
*** aojea has quit IRC | 13:34 | |
*** tbachman has quit IRC | 13:35 | |
*** tbachman_ is now known as tbachman | 13:35 | |
*** edmondsw has quit IRC | 13:36 | |
*** yamamoto has joined #openstack-neutron | 13:36 | |
*** martinus__ has joined #openstack-neutron | 13:37 | |
*** itlinux has joined #openstack-neutron | 13:40 | |
*** ujjain has quit IRC | 13:43 | |
*** yamamoto has quit IRC | 13:45 | |
*** ujjain has joined #openstack-neutron | 13:50 | |
*** ujjain has quit IRC | 13:50 | |
*** ujjain has joined #openstack-neutron | 13:50 | |
*** Manuel_112 has joined #openstack-neutron | 13:51 | |
*** ujjain has quit IRC | 13:52 | |
*** gcheresh_ has joined #openstack-neutron | 13:53 | |
*** liuyulong has quit IRC | 13:55 | |
*** Manuel_112 has quit IRC | 13:56 | |
*** nplanel has quit IRC | 13:58 | |
*** ujjain has joined #openstack-neutron | 14:00 | |
*** ujjain has quit IRC | 14:00 | |
*** ujjain has joined #openstack-neutron | 14:00 | |
*** vijaykc4 has quit IRC | 14:03 | |
*** pwiltsey has joined #openstack-neutron | 14:19 | |
*** claudiub has joined #openstack-neutron | 14:19 | |
*** pwiltsey has quit IRC | 14:20 | |
*** wolverineav has joined #openstack-neutron | 14:21 | |
*** Manuel_112 has joined #openstack-neutron | 14:22 | |
*** nicolasbock has joined #openstack-neutron | 14:22 | |
*** ujjain has quit IRC | 14:25 | |
*** Manuel_112 has quit IRC | 14:27 | |
*** markvoelker has joined #openstack-neutron | 14:28 | |
*** thorst has joined #openstack-neutron | 14:32 | |
*** thorst has quit IRC | 14:32 | |
*** ujjain has joined #openstack-neutron | 14:33 | |
*** ujjain has quit IRC | 14:33 | |
*** ujjain has joined #openstack-neutron | 14:33 | |
*** wolverineav has quit IRC | 14:34 | |
*** gcheresh_ has quit IRC | 14:44 | |
*** donghao has joined #openstack-neutron | 14:44 | |
*** nicolasbock has quit IRC | 14:44 | |
*** catintheroof has joined #openstack-neutron | 14:44 | |
*** baoli has joined #openstack-neutron | 14:54 | |
*** baoli has quit IRC | 14:54 | |
*** kristian__ has quit IRC | 14:57 | |
*** kristian__ has joined #openstack-neutron | 14:57 | |
*** baoli has joined #openstack-neutron | 14:58 | |
*** baoli has quit IRC | 14:58 | |
*** markvoelker has quit IRC | 15:02 | |
*** baoli has joined #openstack-neutron | 15:04 | |
*** baoli has quit IRC | 15:04 | |
*** wolverineav has joined #openstack-neutron | 15:05 | |
*** baoli has joined #openstack-neutron | 15:07 | |
*** baoli has quit IRC | 15:08 | |
*** baoli has joined #openstack-neutron | 15:08 | |
*** tbachman has quit IRC | 15:10 | |
*** aojea has joined #openstack-neutron | 15:10 | |
*** wolverineav has quit IRC | 15:12 | |
*** armax has joined #openstack-neutron | 15:15 | |
*** itlinux has quit IRC | 15:16 | |
*** tmorin has joined #openstack-neutron | 15:16 | |
*** aojea has quit IRC | 15:16 | |
*** edmondsw has joined #openstack-neutron | 15:19 | |
*** pwiltsey has joined #openstack-neutron | 15:21 | |
*** imacdonn has quit IRC | 15:22 | |
*** imacdonn has joined #openstack-neutron | 15:22 | |
*** edmondsw has quit IRC | 15:24 | |
*** pwiltsey has quit IRC | 15:26 | |
*** catintheroof has quit IRC | 15:31 | |
*** tmorin has quit IRC | 15:32 | |
*** vijaykc4 has joined #openstack-neutron | 15:35 | |
*** armax has quit IRC | 15:38 | |
*** kristia__ has joined #openstack-neutron | 15:40 | |
*** kristia__ has quit IRC | 15:42 | |
*** kristia__ has joined #openstack-neutron | 15:43 | |
*** kristian__ has quit IRC | 15:44 | |
*** kristia__ has quit IRC | 15:47 | |
*** trinaths1 has joined #openstack-neutron | 15:51 | |
*** kristian__ has joined #openstack-neutron | 15:54 | |
*** kristia__ has joined #openstack-neutron | 15:55 | |
*** kristian__ has quit IRC | 15:56 | |
*** obondarev has joined #openstack-neutron | 15:57 | |
*** obondarev has quit IRC | 15:57 | |
*** markvoelker has joined #openstack-neutron | 15:59 | |
*** tmorin has joined #openstack-neutron | 16:00 | |
*** rossella__ has quit IRC | 16:04 | |
*** rossella__ has joined #openstack-neutron | 16:05 | |
*** obondarev has joined #openstack-neutron | 16:12 | |
*** aojea has joined #openstack-neutron | 16:13 | |
*** obondarev has quit IRC | 16:14 | |
*** tmorin has quit IRC | 16:15 | |
*** aojea has quit IRC | 16:17 | |
*** markvoelker has quit IRC | 16:32 | |
*** thorst has joined #openstack-neutron | 16:33 | |
*** thorst has quit IRC | 16:38 | |
*** hjensas has quit IRC | 16:41 | |
*** rossella__ has quit IRC | 16:42 | |
*** rossella__ has joined #openstack-neutron | 16:42 | |
*** aojea has joined #openstack-neutron | 16:44 | |
*** kristia__ has quit IRC | 16:54 | |
*** kristian__ has joined #openstack-neutron | 16:54 | |
*** donghao has quit IRC | 16:57 | |
*** hjensas has joined #openstack-neutron | 16:58 | |
*** kristian__ has quit IRC | 16:59 | |
*** edmondsw has joined #openstack-neutron | 17:08 | |
*** itlinux has joined #openstack-neutron | 17:08 | |
*** edmondsw has quit IRC | 17:12 | |
*** yamamoto has joined #openstack-neutron | 17:13 | |
*** yamamoto has quit IRC | 17:18 | |
*** vijaykc4 has quit IRC | 17:20 | |
*** pwiltsey has joined #openstack-neutron | 17:23 | |
*** pwiltsey has quit IRC | 17:28 | |
*** markvoelker has joined #openstack-neutron | 17:29 | |
*** gouthamr has joined #openstack-neutron | 17:37 | |
*** aojea has quit IRC | 17:47 | |
*** gregwork has quit IRC | 17:52 | |
*** kristian__ has joined #openstack-neutron | 17:53 | |
*** kristian__ has quit IRC | 17:58 | |
*** rcernin has quit IRC | 17:58 | |
*** harlowja has joined #openstack-neutron | 17:59 | |
*** markvoelker has quit IRC | 18:02 | |
*** kristian__ has joined #openstack-neutron | 18:03 | |
*** harlowja has quit IRC | 18:14 | |
*** trinaths1 has quit IRC | 18:15 | |
*** imacdonn has quit IRC | 18:16 | |
openstackgerrit | Merged openstack/networking-sfc master: Remove OSC parts https://review.openstack.org/432242 | 18:19 |
*** superdan is now known as dansmith | 18:20 | |
*** harlowja has joined #openstack-neutron | 18:21 | |
*** pwiltsey has joined #openstack-neutron | 18:24 | |
*** vijaykc4 has joined #openstack-neutron | 18:24 | |
*** imacdonn has joined #openstack-neutron | 18:28 | |
*** yamahata has joined #openstack-neutron | 18:28 | |
*** pwiltsey has quit IRC | 18:28 | |
*** thorst has joined #openstack-neutron | 18:34 | |
*** claudiub has quit IRC | 18:35 | |
*** thorst has quit IRC | 18:39 | |
*** harlowja has quit IRC | 18:42 | |
*** aojea has joined #openstack-neutron | 18:48 | |
*** aojea has quit IRC | 18:53 | |
*** hjensas has quit IRC | 18:58 | |
*** markvoelker has joined #openstack-neutron | 18:59 | |
*** rossella__ has quit IRC | 19:04 | |
*** rossella__ has joined #openstack-neutron | 19:05 | |
*** Alex_Staf has joined #openstack-neutron | 19:05 | |
*** itlinux has quit IRC | 19:10 | |
*** Alex_Staf has quit IRC | 19:13 | |
*** nyechiel has joined #openstack-neutron | 19:17 | |
*** rossella__ has quit IRC | 19:18 | |
*** rossella__ has joined #openstack-neutron | 19:21 | |
*** gcheresh_ has joined #openstack-neutron | 19:26 | |
*** markvoelker has quit IRC | 19:32 | |
*** vijaykc4 has quit IRC | 19:33 | |
*** rossella__ has quit IRC | 19:34 | |
*** rossella__ has joined #openstack-neutron | 19:36 | |
*** Manuel_112 has joined #openstack-neutron | 19:44 | |
*** nyechiel has quit IRC | 19:46 | |
*** Manuel_112 has quit IRC | 19:49 | |
*** aojea has joined #openstack-neutron | 19:49 | |
*** aojea has quit IRC | 19:53 | |
*** ijw has joined #openstack-neutron | 20:06 | |
*** ijw_ has joined #openstack-neutron | 20:07 | |
*** rossella__ has quit IRC | 20:10 | |
*** ijw has quit IRC | 20:11 | |
*** rossella__ has joined #openstack-neutron | 20:12 | |
*** thorst has joined #openstack-neutron | 20:15 | |
*** thorst has quit IRC | 20:19 | |
*** gcheresh_ has quit IRC | 20:21 | |
*** tbachman has joined #openstack-neutron | 20:24 | |
*** nyechiel has joined #openstack-neutron | 20:25 | |
*** hoonetorg has quit IRC | 20:27 | |
*** markvoelker has joined #openstack-neutron | 20:29 | |
*** rossella__ has quit IRC | 20:35 | |
*** rossella__ has joined #openstack-neutron | 20:35 | |
*** tbachman_ has joined #openstack-neutron | 20:37 | |
*** nyechiel has quit IRC | 20:38 | |
*** tbachman has quit IRC | 20:39 | |
*** tbachman_ is now known as tbachman | 20:39 | |
*** martinus__ has quit IRC | 20:42 | |
*** edmondsw has joined #openstack-neutron | 20:44 | |
*** Manuel_112 has joined #openstack-neutron | 20:45 | |
*** gcheresh_ has joined #openstack-neutron | 20:46 | |
*** edmondsw has quit IRC | 20:48 | |
*** Manuel_112 has quit IRC | 20:49 | |
*** aojea has joined #openstack-neutron | 20:50 | |
*** zhhuabj has quit IRC | 20:53 | |
*** aojea has quit IRC | 20:54 | |
*** markvoelker has quit IRC | 21:02 | |
*** zhhuabj has joined #openstack-neutron | 21:06 | |
*** gcheresh_ has quit IRC | 21:08 | |
*** d9k has quit IRC | 21:12 | |
*** itlinux has joined #openstack-neutron | 21:33 | |
*** d9k has joined #openstack-neutron | 21:37 | |
*** gouthamr has quit IRC | 21:41 | |
*** Manuel_112 has joined #openstack-neutron | 21:46 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/networking-sfc master: Updated from global requirements https://review.openstack.org/488028 | 21:47 |
*** itlinux has quit IRC | 21:47 | |
*** Manuel_112 has quit IRC | 21:50 | |
*** aojea has joined #openstack-neutron | 21:50 | |
*** aojea has quit IRC | 21:55 | |
*** markvoelker has joined #openstack-neutron | 21:59 | |
*** salmankhan has joined #openstack-neutron | 22:04 | |
*** thorst has joined #openstack-neutron | 22:04 | |
*** thorst has quit IRC | 22:09 | |
*** kristian__ has quit IRC | 22:20 | |
*** kristian__ has joined #openstack-neutron | 22:21 | |
*** sanfern has quit IRC | 22:23 | |
*** kristian__ has quit IRC | 22:26 | |
*** sanfern has joined #openstack-neutron | 22:26 | |
*** catintheroof has joined #openstack-neutron | 22:28 | |
*** edmondsw has joined #openstack-neutron | 22:32 | |
*** markvoelker has quit IRC | 22:32 | |
*** ijw has joined #openstack-neutron | 22:33 | |
*** markvoelker has joined #openstack-neutron | 22:34 | |
*** edmondsw has quit IRC | 22:36 | |
*** ijw_ has quit IRC | 22:37 | |
*** Manuel_112 has joined #openstack-neutron | 22:46 | |
*** Manuel_112 has quit IRC | 22:51 | |
*** aojea has joined #openstack-neutron | 22:51 | |
*** aojea has quit IRC | 22:56 | |
*** claudiub has joined #openstack-neutron | 23:10 | |
*** itlinux has joined #openstack-neutron | 23:16 | |
*** deep-book-gk_ has joined #openstack-neutron | 23:26 | |
*** deep-book-gk_ has left #openstack-neutron | 23:29 | |
*** catintheroof has quit IRC | 23:32 | |
*** thorst has joined #openstack-neutron | 23:36 | |
*** claudiub has quit IRC | 23:38 | |
*** claudiub has joined #openstack-neutron | 23:38 | |
*** thorst has quit IRC | 23:40 | |
*** sbezverk has quit IRC | 23:40 | |
*** Manuel_112 has joined #openstack-neutron | 23:47 | |
*** donghao has joined #openstack-neutron | 23:48 | |
*** Manuel_112 has quit IRC | 23:52 | |
*** aojea has joined #openstack-neutron | 23:52 | |
*** aojea has quit IRC | 23:57 | |
*** yamamoto has joined #openstack-neutron | 23:58 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!