*** thinrichs has joined #openstack-meeting | 00:00 | |
*** rossella_s has joined #openstack-meeting | 00:00 | |
thinrichs | Hi all | 00:01 |
---|---|---|
thinrichs | ekcs, ramineni, masahito, aimeeu: courtesy ping | 00:01 |
*** hoangcx has quit IRC | 00:01 | |
ramineni_ | hi | 00:01 |
aimeeu | hello! | 00:01 |
thinrichs | #startmeeting CongressTeamMeeting | 00:01 |
openstack | Meeting started Thu Jul 28 00:01:31 2016 UTC and is due to finish in 60 minutes. The chair is thinrichs. Information about MeetBot at http://wiki.debian.org/MeetBot. | 00:01 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 00:01 |
*** salv-orlando has joined #openstack-meeting | 00:01 | |
*** openstack changes topic to " (Meeting topic: CongressTeamMeeting)" | 00:01 | |
openstack | The meeting name has been set to 'congressteammeeting' | 00:01 |
*** masahito has joined #openstack-meeting | 00:01 | |
masahito | hi | 00:01 |
thinrichs | Agenda for today: (i) mascots, (ii) status | 00:01 |
thinrichs | Anything else? | 00:02 |
*** Swami has quit IRC | 00:02 | |
*** ihrachys has quit IRC | 00:02 | |
*** thorst_ has joined #openstack-meeting | 00:02 | |
thinrichs | No ekcs yet. Maybe we should hold off on the mascot topic. | 00:02 |
thinrichs | We need to decide for sure today, so let's not forget. | 00:03 |
*** shaohe_feng has quit IRC | 00:03 | |
thinrichs | Let's do status updates. | 00:03 |
thinrichs | #topic status | 00:03 |
*** openstack changes topic to "status (Meeting topic: CongressTeamMeeting)" | 00:03 | |
thinrichs | ramineni: want to start? | 00:03 |
*** ekcs has joined #openstack-meeting | 00:03 | |
ramineni_ | thinrichs: sure | 00:03 |
*** shaohe_feng has joined #openstack-meeting | 00:03 | |
ekcs | sorry delayed by software weirdness. | 00:03 |
ramineni_ | thinrichs: completed synchronizer migration and horizon plugin model | 00:04 |
*** mbound has quit IRC | 00:04 | |
ramineni_ | thinrichs: bth looks ready to merge | 00:04 |
ramineni_ | thinrichs: thats it from my side | 00:04 |
thinrichs | Synchronizer code is merged | 00:05 |
*** asettle has quit IRC | 00:05 | |
ramineni_ | oh great , havent checked it yet | 00:05 |
thinrichs | Looks like 1 more typo in the horizon plugin. Then we should merge it. | 00:05 |
*** salv-orlando has quit IRC | 00:06 | |
ramineni_ | ok, will have a look | 00:06 |
aimeeu | very minor typo (sorry!) | 00:06 |
thinrichs | ramineni: Nice work getting those two big changes in | 00:06 |
thinrichs | aimeeu: want to go next? | 00:07 |
aimeeu | sure | 00:07 |
aimeeu | I haven't had much time this week to work on Congress. I started the HAHT overview guide and plan work on the python-congressclient support for identity v3 token unless ramineni wants to take that over. I'm having trouble getting Tempest to work on devstack. | 00:07 |
*** Suyi has quit IRC | 00:08 | |
aimeeu | and I thought a tempest test would be good to test identity v3 in the python-congressclient | 00:08 |
aimeeu | that's all for me | 00:09 |
thinrichs | We all have trouble getting tempest working. | 00:09 |
aimeeu | ah, good to know - I've disabled the service for now | 00:09 |
aimeeu | and plan to make code changes and test manually | 00:09 |
thinrichs | A v3 identity test for the client would be good. Is there a way to do it with a unit test? It wouldn't be a live test, but might get us partway. | 00:10 |
thinrichs | Tempest test would also be good | 00:10 |
*** thorst_ has quit IRC | 00:10 | |
aimeeu | I'll look into that - thanks for the suggestion! | 00:10 |
*** elo has joined #openstack-meeting | 00:10 | |
thinrichs | masahito: want to go next? | 00:11 |
masahito | ok | 00:11 |
masahito | Pacemaker RA and its deploy guide for HAHT were merged. | 00:11 |
masahito | And I pushed first code for lazy datasource driver. | 00:11 |
masahito | The patch got tempest failure, so I'm investigating it. | 00:12 |
masahito | That's from my side. | 00:12 |
*** shaohe_feng has quit IRC | 00:13 | |
thinrichs | Need feedback on the lazy driver? Or is it too early? | 00:13 |
*** shaohe_feng has joined #openstack-meeting | 00:14 | |
masahito | Need review. | 00:14 |
thinrichs | Will do. | 00:14 |
masahito | The tempest failure is in ha tests that we all hit. | 00:14 |
*** banix has joined #openstack-meeting | 00:15 | |
thinrichs | Okay. Have those tempest gate tests been pretty reliable lately? Or are they still flakey sometimes? | 00:16 |
ramineni_ | if its timeout issue, Eric´s patch should solve it , else have to look at it | 00:17 |
thinrichs | ekcs: want to go next? | 00:17 |
thinrichs | ramineni: good to know. Thought it was all pretty solid at this point. | 00:18 |
ekcs | sure. | 00:18 |
ekcs | API routing patch done but stuck at a gate failure. I think the failure is unrelated to the patch and probably occassional (checks passed, but gate failed). But I'm not sure what the cause is. | 00:18 |
masahito | thinrichs: for dse1 test it's reliable, for dse2 test the log don't show the details. | 00:18 |
ekcs | I did a lot of thinking and testing about the push data persistence design. Writing table as string to mysql or writing table as mysql tables. | 00:18 |
thinrichs | masahito: got it. | 00:19 |
thinrichs | ekcs: what did you conclude about the push data persistence? | 00:19 |
ekcs | Using 100kb json string (500 rows), writing a whole new json string is faster than adding 5 and deleting 5 rows. (20ms vs 100ms on very slow laptop HDD, 10 times faster on SSD) | 00:20 |
thinrichs | Interesting stats | 00:21 |
ekcs | as we keep increasing table size, writing whole json string will eventually lose to adding/deleting rows. I think it happens around 1000kb. | 00:21 |
thinrichs | So if people are pushing 1MB+ of data, it makes more sense to compute the diff and update individual rows in the DB. | 00:22 |
thinrichs | Did you think through the issues around upgrade? | 00:23 |
*** shaohe_feng has quit IRC | 00:23 | |
ekcs | yes. But I think the best approach is to write string not rows, but allow writing string for incremental update (say 100 updates before writing a full snapshot and getting rid of those updates). | 00:24 |
*** shaohe_feng has joined #openstack-meeting | 00:24 | |
ekcs | for upgrade, I think either approach could be made to work. writing string into single table is easier than writing each ds table into db table. | 00:25 |
*** sarob has quit IRC | 00:26 | |
ekcs | and the decision around when to write full snapshot and when to write diff can be made on a case by case basis if we write string rather than db rows | 00:26 |
thinrichs | Not sure I follow this exactly. | 00:26 |
thinrichs | So there's 1 DB table for all push datasources | 00:26 |
thinrichs | That table has a column for datasource-name, datasource-state-as-a-string | 00:27 |
ekcs | yes. | 00:27 |
thinrichs | Where do the deltas come in? | 00:27 |
ekcs | and for handling large tables (1m+), we can in addition store datasource-state-diff-as-string, indexed increasing number since the last snapshot. | 00:28 |
*** david-lyle_ has joined #openstack-meeting | 00:28 | |
ekcs | in another table <dsname, update #, ds-state-delta-as-string> | 00:29 |
*** longxiongqiu has joined #openstack-meeting | 00:29 | |
ekcs | the key is that this is usually a write only store, we very rarely expect to have to read. | 00:29 |
thinrichs | Then when we write a new snapshot we delete all the rows in that table for that dsname | 00:30 |
ekcs | yes. | 00:30 |
*** toddjohn has joined #openstack-meeting | 00:30 | |
thinrichs | Another thought… we could add a col to the original table for 'diff-since-last-snapshot-string' | 00:30 |
thinrichs | and then update that each time | 00:30 |
*** vdeolali has joined #openstack-meeting | 00:31 | |
ekcs | yea that’s a good option to consider too. | 00:31 |
thinrichs | Hmmm…that might be awkward though b/c the delta wouldn't be based on the in-memory snapshot, but rather a snapshot from the past. | 00:31 |
*** roxanaghe has quit IRC | 00:31 | |
ekcs | the intuition around it is that mysql table is optimized for read that’s why it’s slow even to add&delete 10 rows. we really only care about write. | 00:32 |
thinrichs | I'd imagine starting with just writing the snapshot as a string. Then optimizing as needed. | 00:33 |
ekcs | yup my thought too. | 00:33 |
*** toddjohn has quit IRC | 00:33 | |
thinrichs | ekcs: good observation that we're not reading from this table very often. We've effectively got an in-memory cache. | 00:33 |
*** toddjohn has joined #openstack-meeting | 00:33 | |
*** shaohe_feng has quit IRC | 00:34 | |
thinrichs | ekcs: Thanks for digging into that! | 00:34 |
ekcs | one problem. to store long string in column, | 00:34 |
*** longxiongqiu has quit IRC | 00:34 | |
ekcs | we need to use special DB specific datatype (longtext, clob, etc.). | 00:34 |
*** shaohe_feng has joined #openstack-meeting | 00:34 | |
ekcs | so we may lose the ability to arbitrarily swap mysql for postgres etc. | 00:34 |
ekcs | i’ll need to look at that deeper. | 00:34 |
thinrichs | Is that supported by oslo-db? | 00:35 |
-masahito- I think it's supported by oslo-db. | 00:35 | |
ekcs | I think so (supported by sqlalchemy). but maybe I need to make sure. | 00:35 |
ekcs | for sure supported by sqlalchemy. | 00:35 |
ekcs | just not sure if the oslo-db version restricts. | 00:35 |
thinrichs | oslo-db is the OpenStack database layer, right? If that does it, I'd say it's fine. If not, I'm less certain. | 00:36 |
ekcs | ok. | 00:36 |
ekcs | i’ll make sure. that’s all from me. | 00:36 |
*** emagana has joined #openstack-meeting | 00:37 | |
thinrichs | Thanks! | 00:37 |
thinrichs | Here's my status update. | 00:37 |
*** shu-mutou-AFK is now known as shu-mutou | 00:37 | |
thinrichs | I've tweaked my patch that disables DSE1 a bit. Had mistakenly removed some tests when moving tests2 to tests. | 00:38 |
thinrichs | Now I'm working on rebasing the patch on top of the few that went in recently. | 00:39 |
thinrichs | Enough changes that it's nontrivial. | 00:39 |
thinrichs | This patch is large by its nature. | 00:39 |
thinrichs | Future patches that finish off disabling dse1 will be easier to contain | 00:39 |
thinrichs | So I'm looking forward to getting this merged | 00:40 |
thinrichs | That's it from me. | 00:40 |
thinrichs | 2 more topics… | 00:41 |
thinrichs | s/topics/agenda items/ | 00:41 |
thinrichs | #topic mascots | 00:41 |
*** openstack changes topic to "mascots (Meeting topic: CongressTeamMeeting)" | 00:41 | |
thinrichs | We need to finalize our mascot decision today. | 00:41 |
*** emagana has quit IRC | 00:41 | |
thinrichs | I gave our suggestions to get a little early feedback. here's what they said... | 00:41 |
thinrichs | We're not allowed to choose a specific land item like Aeropagus | 00:42 |
thinrichs | We could choose a large rock, but they thought it would just look like a blob and recommended against it. | 00:42 |
*** thorst_ has joined #openstack-meeting | 00:43 | |
thinrichs | There were a few lizard-like proposals from other teams, so they might have trouble differentiating a salamander from those. | 00:43 |
thinrichs | The Raven seemed somewhat unique. | 00:43 |
thinrichs | No one chose a monkey/baboon | 00:43 |
*** thorst_ has quit IRC | 00:44 | |
*** shaohe_feng has quit IRC | 00:44 | |
thinrichs | They say all of those will work. | 00:44 |
*** thorst_ has joined #openstack-meeting | 00:44 | |
thinrichs | Personally I'm leaning toward raven and then salamander | 00:44 |
thinrichs | Any other thoughts? | 00:44 |
*** shaohe_feng has joined #openstack-meeting | 00:45 | |
ekcs | I think so too. | 00:45 |
aimeeu | I agree with the raven | 00:45 |
*** zhangshuai has joined #openstack-meeting | 00:45 | |
masahito | I agree the order. | 00:45 |
ekcs | but I really really don’t want a monkey or baboon. | 00:45 |
thinrichs | ekcs: agreed | 00:45 |
ekcs | we have to submit three things right? | 00:46 |
thinrichs | ekcs: agreed on the no baboon | 00:46 |
thinrichs | I think just 2 is fine | 00:46 |
thinrichs | They're going to pick 1, after all | 00:46 |
thinrichs | And they've already told us both the raven and salamander are fine | 00:46 |
ekcs | got it. | 00:47 |
masahito | +1 | 00:47 |
*** pvaneck has quit IRC | 00:47 | |
thinrichs | Okay, so I'll send them (1) raven and (2) salamander | 00:47 |
thinrichs | final topic… | 00:48 |
thinrichs | #topic Barcelona | 00:48 |
*** openstack changes topic to "Barcelona (Meeting topic: CongressTeamMeeting)" | 00:48 | |
thinrichs | Voting for talks is open. | 00:48 |
* thinrichs looking for link | 00:48 | |
thinrichs | #link https://www.openstack.org/summit/barcelona-2016/vote-for-speakers/ | 00:48 |
thinrichs | If you search for Congress on the left-hand side, you can see the talks people have submitted | 00:49 |
thinrichs | #topic open discussion | 00:49 |
*** openstack changes topic to "open discussion (Meeting topic: CongressTeamMeeting)" | 00:49 | |
thinrichs | Anything we should discuss? | 00:49 |
thinrichs | aimeeu: one thing before I forget. ramineni and I ran across some low-hanging fruit you might be interested in. | 00:50 |
aimeeu | excellent | 00:50 |
*** hoangcx2 has quit IRC | 00:50 | |
thinrichs | we noticed that we're using 'e.message' in a bunch of places, where e is an exception. That works in Python2 but not Python3. We should be using 'str(e)' instead. | 00:51 |
aimeeu | I could use a morale-boosting easy fix! (and one that lets me read lots of code) | 00:51 |
thinrichs | aimeeu: :) | 00:51 |
aimeeu | has a bug been created? | 00:51 |
thinrichs | Not yet. | 00:52 |
*** thorst_ has quit IRC | 00:52 | |
ekcs | any thoughts on the gate failure? #link https://review.openstack.org/#/c/341904/In setting up test_datasource_db_sync_remove, datasource 'fake' seems to already exists. A wild guess is some kind of leftover state that carried forward from one test to the next, but the frequency of failure seems too low for that to be the case. | 00:52 |
aimeeu | thinrichs: I can create the bug and assign it to myself. | 00:52 |
thinrichs | ekcs: does that Py2 vs Py3 behavior sound right to you? I don't understand why we didn't hit the e.message problem before this | 00:52 |
thinrichs | aimeeu: that would be great! | 00:53 |
ekcs | yes that’s a py2vs3 thing. | 00:53 |
ekcs | probbaly because we just haven’t hit those errors in testing. | 00:53 |
thinrichs | That's a bit scary. We use that in like 50 places | 00:53 |
*** shaohe_feng has quit IRC | 00:54 | |
ekcs | yea. I think most people still do manual testing in py2 | 00:54 |
*** shaohe_feng has joined #openstack-meeting | 00:55 | |
thinrichs | ekcs: that's the synchronizer test. All kinds of potential race conditions I'd imagine. | 00:55 |
*** mtanino has joined #openstack-meeting | 00:55 | |
*** cdelatte has quit IRC | 00:55 | |
ekcs | I dug through some code to understand the setup and teardown. and I can’t seem to understand exactly what may persist from test to test. it’s the same devstack instance right not a new one? | 00:56 |
thinrichs | ramineni's the expert here | 00:56 |
ramineni_ | :) , not sure , ill have a look at it today , is it because of new synchronizer code mergd? | 00:57 |
ekcs | oh hmm that’s possible. it was the last patch to go in before the failures. | 00:58 |
ramineni_ | ekcs: yep, ill take a look today, and let you know if I find anything | 00:58 |
ekcs | great thanks! | 00:58 |
thinrichs | Out of time for today. Thanks all! | 00:59 |
masahito | thanks all | 00:59 |
aimeeu | bye! | 00:59 |
thinrichs | #endmeeting | 01:01 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 01:01 | |
openstack | Meeting ended Thu Jul 28 01:01:08 2016 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 01:01 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-28-00.01.html | 01:01 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-28-00.01.txt | 01:01 |
openstack | Log: http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-28-00.01.log.html | 01:01 |
*** toddjohn has quit IRC | 01:01 | |
*** ronghui has quit IRC | 01:01 | |
*** gyee has quit IRC | 01:03 | |
*** zhhuabj has quit IRC | 01:03 | |
*** mbound has joined #openstack-meeting | 01:03 | |
*** shaohe_feng has quit IRC | 01:04 | |
*** shaohe_feng has joined #openstack-meeting | 01:05 | |
*** mbound has quit IRC | 01:08 | |
*** zzxwill has joined #openstack-meeting | 01:10 | |
*** yamamoto_ has joined #openstack-meeting | 01:12 | |
*** sindhu has joined #openstack-meeting | 01:13 | |
*** david-lyle_ has quit IRC | 01:14 | |
*** dmacpher has joined #openstack-meeting | 01:14 | |
*** shaohe_feng has quit IRC | 01:15 | |
*** shaohe_feng has joined #openstack-meeting | 01:15 | |
*** fnaval has quit IRC | 01:16 | |
*** thinrichs has quit IRC | 01:16 | |
*** zhhuabj has joined #openstack-meeting | 01:16 | |
*** ramineni_ has quit IRC | 01:18 | |
*** Sukhdev has quit IRC | 01:18 | |
*** bobh has joined #openstack-meeting | 01:19 | |
*** vdeolali has quit IRC | 01:20 | |
*** ronghui has joined #openstack-meeting | 01:22 | |
*** bobh has quit IRC | 01:23 | |
*** gcb has quit IRC | 01:24 | |
*** Apoorva has joined #openstack-meeting | 01:24 | |
*** banix has quit IRC | 01:24 | |
*** JRobinson__ has joined #openstack-meeting | 01:24 | |
*** esberglu has joined #openstack-meeting | 01:24 | |
*** gcb has joined #openstack-meeting | 01:25 | |
*** shaohe_feng has quit IRC | 01:25 | |
*** zhurong has joined #openstack-meeting | 01:25 | |
*** thorst_ has joined #openstack-meeting | 01:25 | |
*** shaohe_feng has joined #openstack-meeting | 01:26 | |
*** toddjohn has joined #openstack-meeting | 01:26 | |
*** sdague has quit IRC | 01:29 | |
*** shashank_hegde has quit IRC | 01:30 | |
*** banix has joined #openstack-meeting | 01:30 | |
*** roxanaghe has joined #openstack-meeting | 01:32 | |
*** longxiongqiu has joined #openstack-meeting | 01:32 | |
*** thorst_ has quit IRC | 01:34 | |
*** shaohe_feng has quit IRC | 01:35 | |
*** shaohe_feng has joined #openstack-meeting | 01:35 | |
*** Apoorva has quit IRC | 01:36 | |
*** roxanaghe has quit IRC | 01:36 | |
*** masahito has quit IRC | 01:39 | |
*** esberglu has quit IRC | 01:45 | |
*** shaohe_feng has quit IRC | 01:45 | |
*** shaohe_feng has joined #openstack-meeting | 01:46 | |
*** s3wong has quit IRC | 01:47 | |
*** mriedem has quit IRC | 01:49 | |
*** egallen has joined #openstack-meeting | 01:49 | |
*** zhhuabj has quit IRC | 01:50 | |
*** zz_dimtruck is now known as dimtruck | 01:52 | |
*** karthikp_ has quit IRC | 01:54 | |
*** esberglu has joined #openstack-meeting | 01:55 | |
*** shaohe_feng has quit IRC | 01:56 | |
*** liamji has joined #openstack-meeting | 01:56 | |
*** dmorita_ has quit IRC | 01:56 | |
*** shaohe_feng has joined #openstack-meeting | 01:56 | |
*** woodster_ has quit IRC | 01:59 | |
*** longxiongqiu has quit IRC | 01:59 | |
*** coolsvap has joined #openstack-meeting | 01:59 | |
*** banix has quit IRC | 02:00 | |
*** RuiChen has quit IRC | 02:02 | |
*** esberglu has quit IRC | 02:02 | |
*** zhhuabj has joined #openstack-meeting | 02:03 | |
*** thorst_ has joined #openstack-meeting | 02:04 | |
*** shaohe_feng has quit IRC | 02:06 | |
*** baoli has quit IRC | 02:06 | |
*** shaohe_feng has joined #openstack-meeting | 02:06 | |
*** amotoki has quit IRC | 02:10 | |
*** thorst_ has quit IRC | 02:10 | |
*** unicell has quit IRC | 02:10 | |
*** jungleboyj has joined #openstack-meeting | 02:11 | |
*** iyamahat_ has quit IRC | 02:12 | |
*** yamahata has quit IRC | 02:13 | |
*** banix has joined #openstack-meeting | 02:13 | |
*** esberglu has joined #openstack-meeting | 02:13 | |
*** ajmiller has joined #openstack-meeting | 02:13 | |
*** egallen has quit IRC | 02:14 | |
*** dimtruck is now known as zz_dimtruck | 02:15 | |
*** shaohe_feng has quit IRC | 02:16 | |
*** shaohe_feng has joined #openstack-meeting | 02:17 | |
*** ajmiller has quit IRC | 02:22 | |
*** esberglu has quit IRC | 02:24 | |
*** toddjohn has quit IRC | 02:24 | |
*** ayoung has quit IRC | 02:25 | |
*** shaohe_feng has quit IRC | 02:26 | |
*** ayoung has joined #openstack-meeting | 02:27 | |
*** shaohe_feng has joined #openstack-meeting | 02:27 | |
*** AmitGalitz has joined #openstack-meeting | 02:28 | |
*** rwsu has quit IRC | 02:28 | |
*** zzxwill has quit IRC | 02:30 | |
*** zzxwill has joined #openstack-meeting | 02:30 | |
*** toddjohn has joined #openstack-meeting | 02:31 | |
*** yamamoto_ has quit IRC | 02:31 | |
*** amotoki has joined #openstack-meeting | 02:32 | |
*** ayoung has quit IRC | 02:32 | |
*** roxanaghe has joined #openstack-meeting | 02:33 | |
*** amotoki has quit IRC | 02:36 | |
*** sarob has joined #openstack-meeting | 02:36 | |
*** ayoung has joined #openstack-meeting | 02:36 | |
*** shaohe_feng has quit IRC | 02:37 | |
*** roxanaghe has quit IRC | 02:37 | |
*** shaohe_feng has joined #openstack-meeting | 02:37 | |
*** xenogear has quit IRC | 02:38 | |
*** wcriswelc has quit IRC | 02:38 | |
*** nk2527_ has quit IRC | 02:38 | |
*** rwsu has joined #openstack-meeting | 02:40 | |
*** thorst_ has joined #openstack-meeting | 02:40 | |
*** amotoki has joined #openstack-meeting | 02:40 | |
*** sarob has quit IRC | 02:41 | |
*** thorst_ has quit IRC | 02:41 | |
*** shaohe_feng has quit IRC | 02:47 | |
*** shaohe_feng has joined #openstack-meeting | 02:47 | |
*** yuanying has quit IRC | 02:47 | |
*** gcb has quit IRC | 02:51 | |
*** xenogear has joined #openstack-meeting | 02:53 | |
*** jrist has quit IRC | 02:55 | |
*** agireud has quit IRC | 02:55 | |
*** myoung has quit IRC | 02:55 | |
*** zhurong has quit IRC | 02:56 | |
*** shaohe_feng has quit IRC | 02:57 | |
*** shaohe_feng has joined #openstack-meeting | 02:57 | |
*** agireud has joined #openstack-meeting | 02:58 | |
*** amotoki has quit IRC | 03:01 | |
*** zhurong has joined #openstack-meeting | 03:03 | |
*** nk2527 has joined #openstack-meeting | 03:06 | |
*** shaohe_feng has quit IRC | 03:07 | |
*** shaohe_feng has joined #openstack-meeting | 03:08 | |
*** amotoki has joined #openstack-meeting | 03:10 | |
*** esberglu has joined #openstack-meeting | 03:11 | |
*** vishwanathj has joined #openstack-meeting | 03:11 | |
*** fnaval has joined #openstack-meeting | 03:13 | |
*** fnaval has quit IRC | 03:14 | |
*** ayoung has quit IRC | 03:14 | |
*** fnaval has joined #openstack-meeting | 03:14 | |
*** sdake has joined #openstack-meeting | 03:15 | |
*** tonytan4ever has joined #openstack-meeting | 03:17 | |
*** shaohe_feng has quit IRC | 03:18 | |
*** shaohe_feng has joined #openstack-meeting | 03:18 | |
*** emagana has joined #openstack-meeting | 03:19 | |
*** salv-orlando has joined #openstack-meeting | 03:20 | |
*** bobh has joined #openstack-meeting | 03:21 | |
*** emagana has quit IRC | 03:24 | |
*** sdake_ has joined #openstack-meeting | 03:25 | |
*** Liuqing has joined #openstack-meeting | 03:26 | |
*** shz has joined #openstack-meeting | 03:26 | |
*** sdake has quit IRC | 03:27 | |
*** shaohe_feng has quit IRC | 03:28 | |
*** tochi has quit IRC | 03:28 | |
*** Kevin_Zheng has joined #openstack-meeting | 03:28 | |
*** shaohe_feng has joined #openstack-meeting | 03:28 | |
*** shihanzhang has quit IRC | 03:29 | |
*** salv-orlando has quit IRC | 03:30 | |
*** sankarshan_away is now known as sankarshan | 03:31 | |
*** thinrichs has joined #openstack-meeting | 03:33 | |
*** mickeys has quit IRC | 03:33 | |
*** thinrichs has left #openstack-meeting | 03:34 | |
*** esberglu has quit IRC | 03:34 | |
*** mickeys has joined #openstack-meeting | 03:34 | |
*** toddjohn has quit IRC | 03:35 | |
*** shaohe_feng has quit IRC | 03:38 | |
*** mickeys has quit IRC | 03:38 | |
*** shaohe_feng has joined #openstack-meeting | 03:39 | |
*** mtanino has quit IRC | 03:39 | |
*** sandanar has joined #openstack-meeting | 03:40 | |
*** anilvenkata has joined #openstack-meeting | 03:40 | |
*** anilvenkata has quit IRC | 03:44 | |
*** vishnoianil has quit IRC | 03:45 | |
*** david-lyle_ has joined #openstack-meeting | 03:45 | |
*** sdake_ has quit IRC | 03:46 | |
*** sdake has joined #openstack-meeting | 03:46 | |
*** zzxwill has quit IRC | 03:47 | |
*** shaohe_feng has quit IRC | 03:48 | |
*** shaohe_feng has joined #openstack-meeting | 03:49 | |
*** bill_az has quit IRC | 03:49 | |
*** yuanying has joined #openstack-meeting | 03:50 | |
*** ljxiash has joined #openstack-meeting | 03:53 | |
*** david-lyle_ is now known as david-lyle | 03:54 | |
*** dmorita has joined #openstack-meeting | 03:57 | |
*** liusheng has joined #openstack-meeting | 03:58 | |
*** shaohe_feng has quit IRC | 03:59 | |
*** julim has quit IRC | 03:59 | |
*** shaohe_feng has joined #openstack-meeting | 03:59 | |
*** ramineni_ has joined #openstack-meeting | 03:59 | |
*** bill_az has joined #openstack-meeting | 04:01 | |
*** tochi has joined #openstack-meeting | 04:01 | |
*** dmorita has quit IRC | 04:02 | |
*** julim has joined #openstack-meeting | 04:02 | |
*** julim has quit IRC | 04:02 | |
*** links has joined #openstack-meeting | 04:03 | |
*** david-lyle has quit IRC | 04:07 | |
*** shaohe_feng has quit IRC | 04:09 | |
*** shaohe_feng has joined #openstack-meeting | 04:10 | |
*** david-lyle has joined #openstack-meeting | 04:11 | |
*** JRobinson__ is now known as JRobinson__afk | 04:15 | |
*** Sukhdev has joined #openstack-meeting | 04:15 | |
*** shaohe_feng has quit IRC | 04:19 | |
*** IlyaG has joined #openstack-meeting | 04:20 | |
*** shaohe_feng has joined #openstack-meeting | 04:20 | |
*** bobh has quit IRC | 04:23 | |
*** fnaval has quit IRC | 04:25 | |
*** shaohe_feng has quit IRC | 04:29 | |
*** harlowja_at_home has joined #openstack-meeting | 04:30 | |
*** shaohe_feng has joined #openstack-meeting | 04:30 | |
*** zhhuabj has quit IRC | 04:32 | |
*** gcb has joined #openstack-meeting | 04:33 | |
*** ramineni_ has left #openstack-meeting | 04:34 | |
*** shaohe_feng has quit IRC | 04:40 | |
*** shaohe_feng has joined #openstack-meeting | 04:40 | |
*** bill_az has quit IRC | 04:44 | |
*** zhhuabj has joined #openstack-meeting | 04:46 | |
*** shaohe_feng has quit IRC | 04:50 | |
*** shaohe_feng has joined #openstack-meeting | 04:51 | |
*** shashank_hegde has joined #openstack-meeting | 04:51 | |
*** banix has quit IRC | 04:55 | |
*** muawiakhan has joined #openstack-meeting | 04:55 | |
*** Sukhdev has quit IRC | 04:58 | |
*** IlyaG has quit IRC | 04:58 | |
*** csomerville has joined #openstack-meeting | 04:59 | |
*** cody-somerville has quit IRC | 04:59 | |
*** shaohe_feng has quit IRC | 05:00 | |
*** shaohe_feng has joined #openstack-meeting | 05:00 | |
*** ronghui has quit IRC | 05:01 | |
*** jrist has joined #openstack-meeting | 05:03 | |
*** Apoorva has joined #openstack-meeting | 05:03 | |
*** Apoorva has quit IRC | 05:06 | |
*** khushbu has joined #openstack-meeting | 05:07 | |
*** fnaval has joined #openstack-meeting | 05:09 | |
*** flwang1 has quit IRC | 05:09 | |
*** zhhuabj has quit IRC | 05:09 | |
*** asettle has joined #openstack-meeting | 05:10 | |
*** fnaval has quit IRC | 05:10 | |
*** shaohe_feng has quit IRC | 05:10 | |
*** fnaval has joined #openstack-meeting | 05:11 | |
*** shaohe_feng has joined #openstack-meeting | 05:11 | |
*** ljxiash has quit IRC | 05:11 | |
*** shashank_hegde has quit IRC | 05:11 | |
*** ljxiash has joined #openstack-meeting | 05:11 | |
*** asettle has quit IRC | 05:14 | |
*** ronghui has joined #openstack-meeting | 05:15 | |
*** ljxiash has quit IRC | 05:16 | |
*** sandanar has quit IRC | 05:16 | |
*** sridharg has joined #openstack-meeting | 05:20 | |
*** shaohe_feng has quit IRC | 05:21 | |
*** shaohe_feng has joined #openstack-meeting | 05:21 | |
*** zzxwill has joined #openstack-meeting | 05:22 | |
*** unicell has joined #openstack-meeting | 05:24 | |
*** bobh has joined #openstack-meeting | 05:24 | |
*** JRobinson__afk is now known as JRobinson__ | 05:26 | |
*** JRobinson__ has quit IRC | 05:28 | |
*** bobh has quit IRC | 05:29 | |
*** JRobinson__ has joined #openstack-meeting | 05:30 | |
*** zhhuabj has joined #openstack-meeting | 05:31 | |
*** shaohe_feng has quit IRC | 05:31 | |
*** b1airo has quit IRC | 05:31 | |
*** shaohe_feng has joined #openstack-meeting | 05:31 | |
*** b1airo has joined #openstack-meeting | 05:31 | |
*** rbrady has quit IRC | 05:34 | |
*** ljxiash has joined #openstack-meeting | 05:36 | |
*** khushbu has quit IRC | 05:36 | |
*** iyamahat has joined #openstack-meeting | 05:37 | |
*** anilvenkata has joined #openstack-meeting | 05:38 | |
*** shaohe_feng has quit IRC | 05:41 | |
*** gongysh has joined #openstack-meeting | 05:41 | |
*** shaohe_feng has joined #openstack-meeting | 05:42 | |
*** iyamahat has quit IRC | 05:43 | |
*** fnaval has quit IRC | 05:47 | |
*** egallen has joined #openstack-meeting | 05:47 | |
*** jprovazn has joined #openstack-meeting | 05:47 | |
*** amotoki_ has joined #openstack-meeting | 05:48 | |
*** sarob has joined #openstack-meeting | 05:49 | |
*** unicell has quit IRC | 05:49 | |
*** unicell has joined #openstack-meeting | 05:50 | |
*** khushbu has joined #openstack-meeting | 05:50 | |
*** amotoki has quit IRC | 05:51 | |
*** b1airo has quit IRC | 05:51 | |
*** shaohe_feng has quit IRC | 05:51 | |
*** shaohe_feng has joined #openstack-meeting | 05:52 | |
*** sarob has quit IRC | 05:53 | |
*** yamahata has joined #openstack-meeting | 05:55 | |
*** gongysh has quit IRC | 05:58 | |
*** manikanta_tadi has joined #openstack-meeting | 06:01 | |
*** shaohe_feng has quit IRC | 06:02 | |
*** david-lyle has quit IRC | 06:02 | |
*** shaohe_feng has joined #openstack-meeting | 06:02 | |
*** asettle has joined #openstack-meeting | 06:03 | |
*** christx2 has quit IRC | 06:04 | |
*** dmacpher has quit IRC | 06:06 | |
*** aeng has quit IRC | 06:06 | |
*** asettle has quit IRC | 06:08 | |
*** roxanaghe has joined #openstack-meeting | 06:12 | |
*** shaohe_feng has quit IRC | 06:12 | |
*** shaohe_feng has joined #openstack-meeting | 06:13 | |
*** saju_m has quit IRC | 06:13 | |
*** harlowja_at_home has quit IRC | 06:16 | |
*** roxanaghe has quit IRC | 06:16 | |
*** pcaruana has joined #openstack-meeting | 06:17 | |
*** adiantum has joined #openstack-meeting | 06:18 | |
*** dmacpher has joined #openstack-meeting | 06:18 | |
*** gongysh has joined #openstack-meeting | 06:19 | |
*** nkrinner_afk is now known as nkrinner | 06:19 | |
*** shaohe_feng has quit IRC | 06:22 | |
*** shaohe_feng has joined #openstack-meeting | 06:23 | |
*** bobh has joined #openstack-meeting | 06:25 | |
*** yamamoto_ has joined #openstack-meeting | 06:27 | |
*** yuval has joined #openstack-meeting | 06:28 | |
*** egallen has quit IRC | 06:30 | |
*** Daisy has joined #openstack-meeting | 06:30 | |
*** bobh has quit IRC | 06:31 | |
*** muawiakhan has quit IRC | 06:31 | |
*** gongysh has quit IRC | 06:32 | |
*** shaohe_feng has quit IRC | 06:32 | |
*** sandanar has joined #openstack-meeting | 06:33 | |
*** shaohe_feng has joined #openstack-meeting | 06:33 | |
*** rbartal has joined #openstack-meeting | 06:36 | |
*** mickeys has joined #openstack-meeting | 06:36 | |
*** tonytan4ever has quit IRC | 06:38 | |
*** sridharg has quit IRC | 06:40 | |
*** mickeys has quit IRC | 06:40 | |
*** Daisy has quit IRC | 06:42 | |
*** tesseract- has joined #openstack-meeting | 06:42 | |
*** sdake has quit IRC | 06:42 | |
*** shaohe_feng has quit IRC | 06:43 | |
*** shaohe_feng has joined #openstack-meeting | 06:43 | |
*** ljxiash has quit IRC | 06:46 | |
*** ljxiash has joined #openstack-meeting | 06:47 | |
*** salv-orlando has joined #openstack-meeting | 06:48 | |
*** vishwanathj has quit IRC | 06:49 | |
*** Daisy has joined #openstack-meeting | 06:49 | |
*** ljxiash has quit IRC | 06:51 | |
*** shaohe_feng has quit IRC | 06:53 | |
*** shaohe_feng has joined #openstack-meeting | 06:53 | |
*** egallen has joined #openstack-meeting | 06:55 | |
*** fredrik has joined #openstack-meeting | 06:56 | |
*** jlanoux has joined #openstack-meeting | 06:56 | |
*** asettle has joined #openstack-meeting | 06:57 | |
*** JRobinson__ has quit IRC | 06:58 | |
*** jlanoux has quit IRC | 06:58 | |
*** jlanoux has joined #openstack-meeting | 06:59 | |
*** asettle has quit IRC | 07:01 | |
*** Daisy has quit IRC | 07:02 | |
*** jtomasek has joined #openstack-meeting | 07:02 | |
*** comay has quit IRC | 07:02 | |
*** Daisy has joined #openstack-meeting | 07:02 | |
*** irenab has joined #openstack-meeting | 07:03 | |
*** shaohe_feng has quit IRC | 07:03 | |
*** shaohe_feng has joined #openstack-meeting | 07:04 | |
*** vishnoianil has joined #openstack-meeting | 07:04 | |
*** Fdaisuke_ has joined #openstack-meeting | 07:05 | |
*** ljxiash has joined #openstack-meeting | 07:05 | |
*** Daisy has quit IRC | 07:07 | |
*** Fdaisuke has quit IRC | 07:07 | |
*** akuznetsov has joined #openstack-meeting | 07:11 | |
*** adiantum has quit IRC | 07:12 | |
*** Daisy has joined #openstack-meeting | 07:12 | |
*** roxanaghe has joined #openstack-meeting | 07:13 | |
*** permalac has joined #openstack-meeting | 07:13 | |
*** shaohe_feng has quit IRC | 07:13 | |
*** shaohe_feng has joined #openstack-meeting | 07:14 | |
*** Na3iL has joined #openstack-meeting | 07:15 | |
*** roxanaghe has quit IRC | 07:17 | |
*** pnavarro has joined #openstack-meeting | 07:17 | |
*** agireud has quit IRC | 07:17 | |
*** sridharg has joined #openstack-meeting | 07:18 | |
*** comay has joined #openstack-meeting | 07:18 | |
*** egallen has quit IRC | 07:19 | |
*** egallen has joined #openstack-meeting | 07:19 | |
*** ihrachys has joined #openstack-meeting | 07:21 | |
*** nmagnezi has joined #openstack-meeting | 07:22 | |
*** dmacpher has quit IRC | 07:22 | |
*** shaohe_feng has quit IRC | 07:24 | |
*** ljxiash has quit IRC | 07:24 | |
*** shaohe_feng has joined #openstack-meeting | 07:24 | |
*** gongysh has joined #openstack-meeting | 07:25 | |
*** agireud has joined #openstack-meeting | 07:26 | |
*** bobh has joined #openstack-meeting | 07:27 | |
*** tonytan4ever has joined #openstack-meeting | 07:29 | |
*** flwang1 has joined #openstack-meeting | 07:29 | |
*** pece has joined #openstack-meeting | 07:29 | |
*** geguileo has left #openstack-meeting | 07:30 | |
*** mikelk has joined #openstack-meeting | 07:30 | |
*** fzdarsky has joined #openstack-meeting | 07:30 | |
*** bobh has quit IRC | 07:32 | |
*** asettle has joined #openstack-meeting | 07:33 | |
*** RuiChen has joined #openstack-meeting | 07:34 | |
*** Daisy has quit IRC | 07:34 | |
*** shaohe_feng has quit IRC | 07:34 | |
*** shaohe_feng has joined #openstack-meeting | 07:34 | |
*** lezbar has joined #openstack-meeting | 07:34 | |
*** muawiakhan has joined #openstack-meeting | 07:36 | |
*** muawiakhan has quit IRC | 07:36 | |
*** akuznets_ has joined #openstack-meeting | 07:38 | |
*** akuznetsov has quit IRC | 07:38 | |
*** asettle has quit IRC | 07:38 | |
*** ihrachys has quit IRC | 07:40 | |
*** khushbu has quit IRC | 07:41 | |
*** mikelk has quit IRC | 07:42 | |
*** Daisy has joined #openstack-meeting | 07:43 | |
*** shaohe_feng has quit IRC | 07:44 | |
*** shaohe_feng has joined #openstack-meeting | 07:44 | |
*** sarob has joined #openstack-meeting | 07:49 | |
*** armax has quit IRC | 07:50 | |
*** rbrady has joined #openstack-meeting | 07:50 | |
*** hashar has joined #openstack-meeting | 07:51 | |
*** emagana has joined #openstack-meeting | 07:51 | |
*** mikelk has joined #openstack-meeting | 07:51 | |
*** andymaier has joined #openstack-meeting | 07:51 | |
*** phil_ has joined #openstack-meeting | 07:53 | |
*** phil_ is now known as Guest90724 | 07:54 | |
*** sarob has quit IRC | 07:54 | |
*** shaohe_feng has quit IRC | 07:54 | |
*** zzxwill has quit IRC | 07:54 | |
*** shaohe_feng has joined #openstack-meeting | 07:55 | |
*** emagana has quit IRC | 07:56 | |
*** asettle has joined #openstack-meeting | 07:56 | |
*** yuriy_n17 has left #openstack-meeting | 07:57 | |
*** rossella_s has quit IRC | 07:59 | |
*** saggi has joined #openstack-meeting | 08:00 | |
*** rossella_s has joined #openstack-meeting | 08:00 | |
*** asettle has quit IRC | 08:01 | |
*** akuznets_ has quit IRC | 08:01 | |
*** e0ne has joined #openstack-meeting | 08:01 | |
*** matrohon has joined #openstack-meeting | 08:01 | |
*** salv-orlando has quit IRC | 08:01 | |
*** akuznetsov has joined #openstack-meeting | 08:03 | |
*** shaohe_feng has quit IRC | 08:05 | |
*** andymaier has quit IRC | 08:05 | |
*** shaohe_feng has joined #openstack-meeting | 08:05 | |
*** zzxwill has joined #openstack-meeting | 08:07 | |
*** _Fdaisuke_ has joined #openstack-meeting | 08:09 | |
*** Fdaisuke_ has quit IRC | 08:10 | |
*** obondarev has joined #openstack-meeting | 08:11 | |
*** hparekh has quit IRC | 08:11 | |
*** reedip has quit IRC | 08:11 | |
*** toscalix has joined #openstack-meeting | 08:12 | |
*** shu-mutou has quit IRC | 08:13 | |
*** akuznetsov has quit IRC | 08:13 | |
*** Daisy has quit IRC | 08:14 | |
*** shaohe_feng has quit IRC | 08:15 | |
*** shaohe_feng has joined #openstack-meeting | 08:16 | |
*** Daisy has joined #openstack-meeting | 08:16 | |
*** yassine has joined #openstack-meeting | 08:17 | |
*** vponomaryov has joined #openstack-meeting | 08:17 | |
*** yassine is now known as Guest39997 | 08:17 | |
*** hparekh has joined #openstack-meeting | 08:24 | |
*** shaohe_feng has quit IRC | 08:25 | |
*** permalac has quit IRC | 08:26 | |
*** permalac has joined #openstack-meeting | 08:26 | |
*** ygbo has joined #openstack-meeting | 08:27 | |
*** reedip has joined #openstack-meeting | 08:27 | |
*** marekd2 has joined #openstack-meeting | 08:27 | |
*** shaohe_feng has joined #openstack-meeting | 08:28 | |
*** bobh has joined #openstack-meeting | 08:29 | |
*** hashar has quit IRC | 08:29 | |
*** hashar has joined #openstack-meeting | 08:29 | |
*** khushbu_ has joined #openstack-meeting | 08:30 | |
*** r-mibu has quit IRC | 08:31 | |
*** bobh has quit IRC | 08:33 | |
*** numans has joined #openstack-meeting | 08:34 | |
*** otherwiseguy has quit IRC | 08:34 | |
*** shaohe_feng has quit IRC | 08:35 | |
*** tiantian has quit IRC | 08:35 | |
*** shaohe_feng has joined #openstack-meeting | 08:36 | |
*** RuiChen has quit IRC | 08:36 | |
*** zhongjun_ has quit IRC | 08:36 | |
*** tiantian has joined #openstack-meeting | 08:36 | |
*** zhongjun_ has joined #openstack-meeting | 08:36 | |
*** manikanta_tadi has quit IRC | 08:39 | |
*** Liuqing_ has joined #openstack-meeting | 08:39 | |
*** Liuqing has quit IRC | 08:40 | |
*** r-mibu has joined #openstack-meeting | 08:41 | |
*** otherwiseguy has joined #openstack-meeting | 08:43 | |
*** zhhuabj has quit IRC | 08:43 | |
*** asettle has joined #openstack-meeting | 08:44 | |
*** asettle has quit IRC | 08:44 | |
*** asettle has joined #openstack-meeting | 08:44 | |
*** shaohe_feng has quit IRC | 08:46 | |
*** saju_m has joined #openstack-meeting | 08:46 | |
*** zhhuabj has joined #openstack-meeting | 08:46 | |
*** mickeys has joined #openstack-meeting | 08:46 | |
*** sambetts|afk is now known as sambetts | 08:46 | |
*** shaohe_feng has joined #openstack-meeting | 08:47 | |
*** saggi1 has joined #openstack-meeting | 08:47 | |
*** saggi has quit IRC | 08:47 | |
*** amitgandhinz has quit IRC | 08:51 | |
*** tonytan4ever has quit IRC | 08:51 | |
*** zhhuabj_ has joined #openstack-meeting | 08:51 | |
*** amitgandhinz has joined #openstack-meeting | 08:52 | |
*** acoles_ is now known as acoles | 08:52 | |
*** khushbu_ has quit IRC | 08:53 | |
*** andymaier has joined #openstack-meeting | 08:53 | |
*** zhhuabj has quit IRC | 08:54 | |
*** nishaYadav has joined #openstack-meeting | 08:54 | |
*** mickeys has quit IRC | 08:55 | |
*** mickeys has joined #openstack-meeting | 08:55 | |
*** shaohe_feng has quit IRC | 08:56 | |
*** shaohe_feng has joined #openstack-meeting | 08:57 | |
*** dmorita has joined #openstack-meeting | 08:57 | |
*** gmann_ has joined #openstack-meeting | 08:58 | |
*** mickeys has quit IRC | 09:00 | |
gmann_ | #startmeeting qa | 09:00 |
openstack | Meeting started Thu Jul 28 09:00:21 2016 UTC and is due to finish in 60 minutes. The chair is gmann_. Information about MeetBot at http://wiki.debian.org/MeetBot. | 09:00 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 09:00 |
*** openstack changes topic to " (Meeting topic: qa)" | 09:00 | |
openstack | The meeting name has been set to 'qa' | 09:00 |
*** roxanaghe has joined #openstack-meeting | 09:00 | |
gmann_ | hi, - who's here today? | 09:00 |
andreaf | o/ | 09:00 |
dmellado | \o hi there | 09:00 |
vponomaryov | hello | 09:00 |
gmann_ | hi everyone | 09:01 |
gmann_ | let's wait if more people join | 09:01 |
*** Daisy has quit IRC | 09:02 | |
*** ronghui has quit IRC | 09:02 | |
*** dmorita has quit IRC | 09:02 | |
*** zhhuabj has joined #openstack-meeting | 09:02 | |
andreaf | masayukig, jordanP, afazekas, mkoderer: around? | 09:02 |
gmann_ | masayukig: is joining some openstack event today | 09:03 |
gmann_ | anyways let's start | 09:03 |
gmann_ | #link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Agenda_for_July_28th_2016_.280900_UTC.29 | 09:03 |
gmann_ | ^^ today agenda | 09:03 |
gmann_ | #topic Newton priorities | 09:04 |
*** openstack changes topic to "Newton priorities (Meeting topic: qa)" | 09:04 | |
gmann_ | #link https://etherpad.openstack.org/p/newton-qa-newton-priorities | 09:04 |
*** roxanaghe has quit IRC | 09:04 | |
gmann_ | so we have items there and some of them in progress | 09:05 |
*** zhhuabj_ has quit IRC | 09:05 | |
gmann_ | i would like to avoid talking about each item | 09:05 |
gmann_ | if anyone want to update on these | 09:05 |
*** asettle has quit IRC | 09:05 | |
gmann_ | probably we are going in good shape on those. | 09:06 |
*** asettle has joined #openstack-meeting | 09:06 | |
*** shaohe_feng has quit IRC | 09:06 | |
dmellado | I think so, althought for the test class hierarchy squash I'll wait for mid cycle | 09:06 |
gmann_ | dmellado: ok | 09:07 |
*** lixiaoy1 has joined #openstack-meeting | 09:07 | |
*** shaohe_feng has joined #openstack-meeting | 09:07 | |
gmann_ | yea we can finish may of those there | 09:07 |
*** zhhuabj has quit IRC | 09:07 | |
gmann_ | if nothing let's move | 09:07 |
gmann_ | #topic Specs Reviews | 09:07 |
*** openstack changes topic to "Specs Reviews (Meeting topic: qa)" | 09:07 | |
gmann_ | #link https://review.openstack.org/#/q/status:open+project:openstack/qa-specs,n,z | 09:08 |
gmann_ | there no new spec | 09:08 |
andreaf | gmann_: indeed, probably nothing to discuss on this, unless someone as something to bring up | 09:08 |
gmann_ | andreaf: tempest resource is on hold? | 09:08 |
gmann_ | yea | 09:09 |
andreaf | gmann_: oomichi took that over, so I'm not looking at it right now | 09:09 |
gmann_ | andreaf: ohk, | 09:09 |
gmann_ | let's jump to tempest | 09:09 |
gmann_ | #topic Tempest | 09:10 |
*** openstack changes topic to "Tempest (Meeting topic: qa)" | 09:10 | |
gmann_ | 1 is about compute microversion tests | 09:10 |
* masayukig is read only mode this time because he's on a train and walking to the event | 09:10 | |
*** jordanP has joined #openstack-meeting | 09:10 | |
gmann_ | Matt have doc update for those as per ML and nova mid cycle discussion | 09:10 |
gmann_ | masayukig: +1 | 09:11 |
gmann_ | #link https://review.openstack.org/#/c/346092/ | 09:11 |
gmann_ | and nova one | 09:11 |
gmann_ | #link https://review.openstack.org/#/c/346080/ | 09:12 |
*** liamji has quit IRC | 09:12 | |
*** Daisy has joined #openstack-meeting | 09:12 | |
gmann_ | but seems like we need to get conslusion about those in doc first | 09:12 |
gmann_ | because there are some microvesion tests patches which may or may not be needed | 09:12 |
*** Guest90724 is now known as preisner | 09:12 | |
*** claudiub|2 has joined #openstack-meeting | 09:13 | |
gmann_ | so i brought this here to hold those microversion patches (touching Nova API/DB only ) till we have clear doc on thsoe | 09:13 |
gmann_ | please provide your opinion on doc patches | 09:13 |
andreaf | gmann_: will do | 09:13 |
gmann_ | andreaf: Thanks. | 09:14 |
vponomaryov | manila tempest plugin has support of microversions, if someone is interested may look at it | 09:14 |
*** ronghui has joined #openstack-meeting | 09:14 | |
* afazekas hi | 09:15 | |
gmann_ | afazekas: hi | 09:15 |
jordanP | hi | 09:15 |
gmann_ | vponomaryov: great. actually here question is do we need to implement tests for all microversion? | 09:15 |
andreaf | gmann_: my main concern is adding schema changes in tempest that are not tested - I agree we don't necessarily need to have a tempest test for each microversion, but we need some way to validate the schema, and that's not something we can do in unit tests unfortunately | 09:15 |
gmann_ | jordanP: hi | 09:15 |
dmellado | hi afazekas jordanP | 09:15 |
vponomaryov | gmann_: we add tests for diff of each new microversion if possible | 09:15 |
gmann_ | andreaf: definitely, we would not add schema which are not tested | 09:16 |
gmann_ | andreaf: but if higher version tests cover those schema then it should be fine | 09:16 |
*** shaohe_feng has quit IRC | 09:16 | |
gmann_ | as Nova always honor the lower version changes in higher one | 09:16 |
*** shaohe_feng has joined #openstack-meeting | 09:17 | |
*** e0ne has quit IRC | 09:17 | |
gmann_ | vponomaryov: yea but sometime whose are duplicate with project functional tests | 09:17 |
gmann_ | if the just change the API/DB layer only | 09:17 |
andreaf | gmann_: yes - the only thing we don't really test is that the lower version where we add the schema is the right one | 09:17 |
andreaf | gmann_: but that's probably not so relevant from a tempest pov | 09:17 |
gmann_ | you mean to tests nothing more is returned in specific version | 09:18 |
gmann_ | andreaf: yea that is nice point | 09:18 |
andreaf | gmann_: e.g. if we add a test for version 2.50 (just an example) and for that we add schema changes that came in in version 2.30, but we call those 2.31, it would work just fine, as long as there is no test for 2.30 or 2.31 | 09:19 |
gmann_ | I was thinking about filling the gap at end of cycle but from nova and tempest doc patch i feel we should test each microversion changing the schema | 09:19 |
gmann_ | andreaf: yea but without 2.30/31 tests we would not make sure it does not return more attributes than expected | 09:20 |
andreaf | gmann_: correct | 09:22 |
andreaf | gmann_: so are you saying we actually need a test for every microversion? | 09:22 |
gmann_ | andreaf: every microversion which change the schema. | 09:23 |
gmann_ | andreaf: is there is no schema change then first rule applicable (if touching only API/DB then no) | 09:23 |
gmann_ | is->if | 09:23 |
andreaf | ok | 09:23 |
gmann_ | actually that is current proposed in nova and tempest doc patches | 09:24 |
vponomaryov | all microversions change chema | 09:24 |
*** RuiChen has joined #openstack-meeting | 09:24 | |
vponomaryov | they are added because of change of schema | 09:24 |
gmann_ | vponomaryov: no, it depends on version to version | 09:25 |
gmann_ | vponomaryov: no, there can be any kind of changes | 09:25 |
*** permalac has quit IRC | 09:25 | |
vponomaryov | gmann_: change of response code I consider as change of schema too | 09:25 |
gmann_ | vponomaryov: for example, only request schema change or functional change or bug fix | 09:25 |
gmann_ | vponomaryov: yea but not every microversion change response | 09:26 |
*** electrofelix has joined #openstack-meeting | 09:26 | |
vponomaryov | it was example | 09:26 |
vponomaryov | microversions are added, when API started behaving differently | 09:26 |
*** shaohe_feng has quit IRC | 09:27 | |
gmann_ | example - https://github.com/openstack/nova/blob/master/nova/api/openstack/rest_api_version_history.rst#27 | 09:27 |
vponomaryov | s/started/starts/ | 09:27 |
gmann_ | vponomaryov: yea which does not mean change in response only. | 09:27 |
*** shaohe_feng has joined #openstack-meeting | 09:27 | |
gmann_ | anyways let's review those and merged soon | 09:28 |
gmann_ | next item i want to bring is very simple one | 09:29 |
*** reedip has quit IRC | 09:29 | |
gmann_ | Removal of Javelin | 09:29 |
gmann_ | #link https://review.openstack.org/#/c/347216/ | 09:29 |
*** bobh has joined #openstack-meeting | 09:29 | |
gmann_ | will be pretty easy. | 09:29 |
dmellado | +1 from my side, we already marked it as deprecated a while ago | 09:29 |
jordanP | +1 | 09:29 |
gmann_ | I still need to create new repo for stress tests and thn remove from tempest | 09:30 |
gmann_ | dmellado: yea its over 6 month | 09:30 |
gmann_ | that'all from my side on Tempest | 09:31 |
*** obondarev has quit IRC | 09:31 | |
andreaf | gmann_: is javelin going into it's own repo or just dropped? | 09:31 |
gmann_ | andreaf: just dropped | 09:31 |
gmann_ | andreaf: i did not feel like anybody need so did not added new repo | 09:31 |
andreaf | gmann_: ok | 09:31 |
gmann_ | andreaf: you want talk about client refactor one | 09:32 |
jordanP | yeah, just drop it | 09:32 |
andreaf | gmann_: are you looking at negative test framework as well? | 09:32 |
andreaf | gmann_: sure | 09:32 |
gmann_ | andreaf: no, may be in mid cycle we can discuss with mkoderer there :) | 09:32 |
*** e0ne has joined #openstack-meeting | 09:32 | |
andreaf | gmann_: ok | 09:32 |
andreaf | gmann_: regarding the client manager refactor | 09:32 |
gmann_ | andreaf: i need to review as you updated those i think | 09:32 |
andreaf | gmann_: a few patches merged, but there are a few more https://review.openstack.org/#/q/status:open+branch:master+topic:bp/client-manager-refactor | 09:33 |
andreaf | gmann_: the series is ready from my perspective, I already got some +2 on some of the patches but it could use more attention | 09:33 |
*** bobh has quit IRC | 09:34 | |
gmann_ | andreaf: may be this one and next one is key - https://review.openstack.org/#/c/333513/ | 09:34 |
gmann_ | andreaf: after that it will be easy to merge others | 09:34 |
andreaf | gmann_: yes, that's probably the key one. I hope I addressed all the comments from you, mtreinish and oomichi on that one | 09:35 |
andreaf | gmann_: I changed it now to a fail fast behaviour in case of bad plugins | 09:35 |
gmann_ | andreaf: Thanks, need to look on those. I will definitely do those 2 tomorrow. | 09:36 |
*** obondarev has joined #openstack-meeting | 09:36 | |
gmann_ | and get back to you if anything | 09:36 |
andreaf | gmann_: since the service client interface is new, it's better not to be lenient on avoid broken implementations | 09:36 |
andreaf | gmann_: thanks | 09:36 |
*** shaohe_feng has quit IRC | 09:37 | |
dmellado | andreaf: so then once that this is done we'll need to address every plugin with patches like this one, isn't it? | 09:37 |
gmann_ | ohk. i will check the updates | 09:37 |
dmellado | https://review.openstack.org/#/c/334596/ | 09:37 |
*** shaohe_feng has joined #openstack-meeting | 09:38 | |
andreaf | I have patches up for manila and monasca, I don't expect to do such patches for all plugins, but I will send an email to the ML and help people out where needed. I think a couple of examples should be sufficient for most teams to adapt their plugins | 09:39 |
*** electrofelix has quit IRC | 09:39 | |
gmann_ | andreaf: +1, nice way. we cannot do for all plugin | 09:39 |
andreaf | gmann_: using the new interface should be quite straight-forward | 09:40 |
dmellado | andreaf: exactly, that was also my point | 09:40 |
gmann_ | yea | 09:40 |
andreaf | gmann_: one limitation is that only stable clients are available | 09:40 |
dmellado | I'd be able to land a few too if needed, though | 09:40 |
andreaf | gmann_: which means that as long as volume, identity and object-storage are stable, they are not available to plugins via the stable interface | 09:40 |
gmann_ | andreaf: yea, that is little nit tricky | 09:41 |
gmann_ | andreaf: user need to use both way if they want all clients | 09:41 |
andreaf | s/are stable/are not stable | 09:41 |
dmellado | maybe we'd need to get more help on getting them stable | 09:41 |
gmann_ | but let's hope we will get those clients as stable soon. | 09:41 |
dmellado | AFAIK there are some projects, like manila who were complaning about that | 09:42 |
dmellado | vponomaryov: just pointing to that later, but is that part of your reason to skip some plugins? | 09:42 |
gmann_ | dmellado: everyone complain on those when changed :) | 09:42 |
vponomaryov | dmellado: the reason is some other broken plugins were broken whole test run | 09:43 |
dmellado | gmann_: :D | 09:43 |
vponomaryov | s/were broken/were breaking/ | 09:43 |
gmann_ | ok let's move | 09:43 |
gmann_ | anything else from anyone | 09:43 |
*** yamamoto_ has quit IRC | 09:43 | |
gmann_ | vponomaryov: due to setup of plugins on gate as al plugin get setup there? | 09:43 |
vponomaryov | gmann_: yes, just by fact of their presence | 09:44 |
vponomaryov | that is unavoidable | 09:44 |
gmann_ | vponomaryov: no, that is avoidable | 09:44 |
gmann_ | vponomaryov: you can install only your plugin i think in venv | 09:44 |
gmann_ | ironic did? | 09:44 |
gmann_ | I need to check if those are got merged or not | 09:44 |
vponomaryov | gmann_: it is workaround | 09:45 |
gmann_ | vponomaryov: yea, | 09:45 |
*** claudiub|2 has quit IRC | 09:45 | |
dmellado | vponomaryov: gmann_ but as they're know | 09:45 |
dmellado | and specifically to manila | 09:45 |
dmellado | as you point to an specific commit | 09:45 |
dmellado | if you install all plugins | 09:45 |
dmellado | things might break, imho | 09:45 |
dmellado | :\ | 09:45 |
gmann_ | yea | 09:45 |
vponomaryov | we used to breakage of tempest, sorry | 09:46 |
gmann_ | humm | 09:46 |
gmann_ | let's jump to critical review | 09:46 |
dmellado | I really do hope that finishing the stable clients would help on that | 09:46 |
gmann_ | we can skip devstack and dashboard if nothing on those | 09:46 |
dmellado | +1 | 09:46 |
andreaf | vponomaryov, dmellado, gmann_: the more stable interface we have the less breakages you may expect | 09:46 |
gmann_ | #topic Critical Reviews | 09:46 |
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)" | 09:46 | |
gmann_ | right | 09:47 |
andreaf | gmann_: #link https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/client-manager-refactor | 09:47 |
dmellado | andreaf: yep, that's why I'm trying to land a few patch series on those too | 09:47 |
gmann_ | any reviews from anyone | 09:47 |
*** shaohe_feng has quit IRC | 09:47 | |
gmann_ | andreaf: noted :) | 09:47 |
*** shaohe_feng has joined #openstack-meeting | 09:48 | |
gmann_ | ok, we have 10 min left , let's move | 09:48 |
gmann_ | #topic Possibility to enable/disable external plugins | 09:48 |
*** openstack changes topic to "Possibility to enable/disable external plugins (Meeting topic: qa)" | 09:48 | |
gmann_ | vponomaryov: your one. | 09:48 |
vponomaryov | I proposed change (#link https://review.openstack.org/#/c/343830/), that allows us to enable/disable any external plugins we want just setting up one additional config option. | 09:48 |
vponomaryov | It has two pros: | 09:49 |
vponomaryov | - We can ignore undesired plugins | 09:49 |
vponomaryov | - We can avoid presence of tests from dozens of undesired projects in our generated test list. | 09:49 |
vponomaryov | So, I would like to get opinions on it. | 09:49 |
gmann_ | vponomaryov: and it will do this while loading plugin? | 09:50 |
andreaf | vponomaryov: ignore tests is something you can already do via regex, just pick the tests from your plugin | 09:50 |
vponomaryov | gmann_: it allows us to influence loading of any plugin | 09:50 |
dmellado | vponomaryov: I assume you mean a plugin breaking your one, isn't it? | 09:50 |
andreaf | vponomaryov: I'm not against skipping plugins in general, but I think it's a bit of a workaround | 09:50 |
vponomaryov | andreaf: false, tests regex is far away of step when plugins are disabled | 09:51 |
*** manikanta_tadi has joined #openstack-meeting | 09:51 | |
andreaf | vponomaryov: and I fear it will reduce the pressure on broken plugins to be fixed | 09:51 |
gmann_ | vponomaryov: then it is while loading the tests? | 09:51 |
vponomaryov | gmann_: loading plugins | 09:51 |
vponomaryov | gmann_: before it | 09:51 |
jordanP | why don't use just start only the tests you are interested in running, like: tox -e all-plugin -- manila.tests ? | 09:51 |
gmann_ | vponomaryov: humm | 09:51 |
jordanP | ah ok, got it | 09:51 |
*** jschwarz is now known as jschwarz|afk | 09:51 | |
dmellado | also, what we were discussing before, wouldn't a solution -workaround too- have a venv containging only your desired plugins? | 09:52 |
dmellado | vponomaryov: ^^ | 09:52 |
gmann_ | jordanP: actually issue is loading of tests from other plugin if they import error | 09:52 |
vponomaryov | jordanP: because lots of redundant stuff is performed, if not broken at all | 09:52 |
jordanP | yeah | 09:52 |
vponomaryov | dmellado: I consider venv-based part as workaround | 09:52 |
andreaf | gmann_, jordanP: plugins should not do things at import time, same as tempest - so those should be fixed | 09:53 |
vponomaryov | dmellado: we should be able to use site-package-based plugins | 09:53 |
jordanP | I am not sure it's a good idea, broken plugins should be fixed or not installed at all... | 09:53 |
dmellado | jordanP: that might not be possible for in-tree packages | 09:53 |
andreaf | jordanP: yes that's my feeling too | 09:53 |
vponomaryov | jordanP: people install packages with some lugins, not just plugins | 09:53 |
jordanP | I think we wanted/want to move away from the proliferation of virtualenvs required to run tempest | 09:53 |
gmann_ | jordanP: andreaf exactly. me too same feeling. they should be correct one or do not install | 09:53 |
dmellado | gmann_: but again | 09:54 |
vponomaryov | jordanP: I would like to not install some plugins of some packages, but it requires hacking only | 09:54 |
*** ihrachys has joined #openstack-meeting | 09:54 | |
dmellado | how would you avoid having a plugin installed | 09:54 |
dmellado | if it comes with the in-tree project | 09:54 |
dmellado | such as the neutron one | 09:54 |
dmellado | ? | 09:54 |
vponomaryov | in proposed commit I just allow to ignore it in tempest | 09:54 |
dmellado | you might end up in a situation where if you don't use venv, you'll have quite a few plugins from start | 09:54 |
gmann_ | dmellado: then do not install neutron. | 09:54 |
*** saggi1 has quit IRC | 09:54 | |
jordanP | if neutron's plugin is broken, then they have a big issue | 09:54 |
andreaf | dmellado: one more reason to have the plugin in a dedicated reop | 09:54 |
dmellado | andreaf: I do agree on that | 09:55 |
gmann_ | venv things are very nice here. | 09:55 |
dmellado | and I'm trying to push it that way | 09:55 |
andreaf | s/reop/repo | 09:55 |
*** iyamahat has joined #openstack-meeting | 09:55 | |
dmellado | but for instance I found some similar issue with the ironic plugin | 09:55 |
dmellado | which was even breaking testr list-tests | 09:55 |
gmann_ | because tempest should load everything it detect | 09:55 |
dmellado | due to it trying to get credentials while it, which is quite weird | 09:55 |
vponomaryov | gmann_: we should be able to disable "load everything" that is the point | 09:55 |
dmellado | so I think that this could come in handy | 09:55 |
vponomaryov | gmann_: it is testing tool and shoudl be flexible enough | 09:56 |
vponomaryov | to serve lots of possible needs | 09:56 |
andreaf | dmellado, vponomaryov: plugins should not do things at import time, because that may break discovery | 09:56 |
*** jordanP_ has joined #openstack-meeting | 09:56 | |
dmellado | andreaf: I do agree on that, but I'm just thinking on a system when you'll end up not wanting to use venv | 09:56 |
*** mbound has joined #openstack-meeting | 09:56 | |
gmann_ | vponomaryov: but its all like my distribution. and what i installed should be in working condition instead of skiping those during runtime | 09:56 |
andreaf | vponomaryov: as I said I'm not opposed to the idea, but I'd like to make sure issues in plugins are fixed | 09:57 |
dmellado | while at the same time isolating/skipping plugins | 09:57 |
dmellado | andreaf: so you're fearing that with this, people would just don't care | 09:57 |
vponomaryov | andreaf: default behaviour is to load all | 09:57 |
vponomaryov | andreaf: "possibility" is added | 09:57 |
*** shaohe_feng has quit IRC | 09:57 | |
vponomaryov | andreaf: possibility to disable some | 09:57 |
vponomaryov | plugins | 09:57 |
dmellado | gmann_: I'll ask you about the way you handle plugins later, don't want to spam here | 09:58 |
gmann_ | dmellado: sure | 09:58 |
*** shaohe_feng has joined #openstack-meeting | 09:58 | |
jordanP_ | what about surounding the plugin loading with a big try/except so that if a broken is broken at import/init, we just skip it ? | 09:58 |
gmann_ | let's see the patch and get more feedback there | 09:58 |
*** yamahata has quit IRC | 09:58 | |
gmann_ | but i also still feel its all installation of system | 09:58 |
dmellado | jordanP_: that could be another option | 09:59 |
gmann_ | jordanP_: might be not good, i tried this before :) | 09:59 |
dmellado | gmann_: and what happened? | 09:59 |
gmann_ | jordanP_: it might hide lot of issues in plugin | 09:59 |
andreaf | jordanP_: sure that's an option, but that would make us even more lenient on broken plugins | 09:59 |
andreaf | gmann_ +1 | 09:59 |
gmann_ | yea | 09:59 |
dmellado | andreaf: then how do you propose to handle such plugins? | 09:59 |
jordanP_ | broken plugins should be fixed by plugin owners, and not break Tempest | 09:59 |
jordanP_ | time's up :) | 10:00 |
dmellado | just let tempest be broken (or use venv) so that'd force the devs to fix it? | 10:00 |
gmann_ | jordanP_: but they would get to know till tempest fail | 10:00 |
gmann_ | anyways time is running i think | 10:00 |
dmellado | yeah, we're out of time | 10:00 |
dmellado | we can continue on #openstack-qa | 10:00 |
*** jordanP has quit IRC | 10:00 | |
gmann_ | let;s discuss this on QA channel or on review | 10:00 |
gmann_ | Thanks everyone | 10:01 |
gmann_ | #endmeeting | 10:01 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 10:01 | |
openstack | Meeting ended Thu Jul 28 10:01:11 2016 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 10:01 |
*** iyamahat has quit IRC | 10:01 | |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-28-09.00.html | 10:01 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-28-09.00.txt | 10:01 |
openstack | Log: http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-28-09.00.log.html | 10:01 |
*** ociuhandu has joined #openstack-meeting | 10:01 | |
*** sankarshan is now known as sankarshan_away | 10:01 | |
*** electrofelix has joined #openstack-meeting | 10:05 | |
*** zhurong has quit IRC | 10:07 | |
*** shaohe_feng has quit IRC | 10:08 | |
*** salv-orlando has joined #openstack-meeting | 10:08 | |
*** shaohe_feng has joined #openstack-meeting | 10:09 | |
*** Liuqing_ has quit IRC | 10:09 | |
*** jschwarz|afk is now known as jschwarz | 10:15 | |
*** salv-orlando has quit IRC | 10:15 | |
*** shaohe_feng has quit IRC | 10:18 | |
*** shaohe_feng has joined #openstack-meeting | 10:19 | |
*** gmann_ has quit IRC | 10:20 | |
*** Daisy has quit IRC | 10:27 | |
*** shaohe_feng has quit IRC | 10:28 | |
*** Daisy has joined #openstack-meeting | 10:28 | |
*** shaohe_feng has joined #openstack-meeting | 10:29 | |
*** bobh has joined #openstack-meeting | 10:30 | |
*** mbound has quit IRC | 10:32 | |
*** liyifeng has joined #openstack-meeting | 10:34 | |
*** bobh has quit IRC | 10:35 | |
*** emagana has joined #openstack-meeting | 10:36 | |
*** shaohe_feng has quit IRC | 10:38 | |
*** sdague has joined #openstack-meeting | 10:39 | |
*** shaohe_feng has joined #openstack-meeting | 10:39 | |
*** emagana has quit IRC | 10:41 | |
*** yamamoto has joined #openstack-meeting | 10:46 | |
*** manikanta_tadi is now known as manikanta_afk | 10:46 | |
*** manikanta_afk is now known as manikanta_tadi | 10:46 | |
*** roxanaghe has joined #openstack-meeting | 10:48 | |
*** shaohe_feng has quit IRC | 10:49 | |
*** yamamoto has quit IRC | 10:49 | |
*** shaohe_feng has joined #openstack-meeting | 10:49 | |
*** roxanaghe has quit IRC | 10:53 | |
*** yamamoto has joined #openstack-meeting | 10:54 | |
*** thorst has joined #openstack-meeting | 10:56 | |
*** shaohe_feng has quit IRC | 10:59 | |
*** christx2 has joined #openstack-meeting | 10:59 | |
*** shaohe_feng has joined #openstack-meeting | 11:00 | |
*** gcb has quit IRC | 11:00 | |
*** obondarev has quit IRC | 11:02 | |
*** obondarev has joined #openstack-meeting | 11:04 | |
*** Daisy has quit IRC | 11:07 | |
*** Daisy has joined #openstack-meeting | 11:08 | |
*** jlanoux has quit IRC | 11:08 | |
*** weshay has joined #openstack-meeting | 11:09 | |
*** shaohe_feng has quit IRC | 11:09 | |
*** shaohe_feng has joined #openstack-meeting | 11:10 | |
*** Daisy has quit IRC | 11:12 | |
*** zzxwill has quit IRC | 11:13 | |
*** hashar has quit IRC | 11:14 | |
*** shz has quit IRC | 11:16 | |
*** shz has joined #openstack-meeting | 11:16 | |
*** obondarev has quit IRC | 11:17 | |
*** shaohe_feng has quit IRC | 11:19 | |
*** jordan__ has joined #openstack-meeting | 11:20 | |
*** shaohe_feng has joined #openstack-meeting | 11:20 | |
*** tinwood is now known as tinwood-lunch | 11:23 | |
*** jaypipes has joined #openstack-meeting | 11:23 | |
*** jordanP_ has quit IRC | 11:24 | |
*** acoles is now known as acoles_ | 11:25 | |
*** acoles_ is now known as acoles | 11:25 | |
*** asettle has quit IRC | 11:27 | |
*** zhhuabj has joined #openstack-meeting | 11:28 | |
*** shaohe_feng has quit IRC | 11:30 | |
*** Daisy has joined #openstack-meeting | 11:30 | |
*** shaohe_feng has joined #openstack-meeting | 11:30 | |
*** bobh has joined #openstack-meeting | 11:31 | |
*** jlanoux has joined #openstack-meeting | 11:32 | |
*** Daisy has quit IRC | 11:32 | |
*** Daisy has joined #openstack-meeting | 11:33 | |
*** salv-orlando has joined #openstack-meeting | 11:33 | |
*** rtheis has joined #openstack-meeting | 11:34 | |
*** bobh has quit IRC | 11:35 | |
*** hashar has joined #openstack-meeting | 11:36 | |
*** gongysh has quit IRC | 11:37 | |
*** Daisy has quit IRC | 11:37 | |
*** shaohe_feng has quit IRC | 11:40 | |
*** shaohe_feng has joined #openstack-meeting | 11:40 | |
*** asettle has joined #openstack-meeting | 11:41 | |
*** banix has joined #openstack-meeting | 11:45 | |
*** saggi has joined #openstack-meeting | 11:48 | |
*** gatekeep has joined #openstack-meeting | 11:48 | |
*** gatekeep has quit IRC | 11:49 | |
*** sarob has joined #openstack-meeting | 11:50 | |
*** gatekeep has joined #openstack-meeting | 11:50 | |
*** shaohe_feng has quit IRC | 11:50 | |
*** fredrik_ has joined #openstack-meeting | 11:50 | |
*** shaohe_feng has joined #openstack-meeting | 11:50 | |
*** synegy34 has quit IRC | 11:51 | |
*** fredrik has quit IRC | 11:52 | |
*** tonytan4ever has joined #openstack-meeting | 11:53 | |
*** sarob has quit IRC | 11:55 | |
*** rfolco has joined #openstack-meeting | 11:55 | |
*** banix has quit IRC | 11:55 | |
*** Liuqing has joined #openstack-meeting | 11:56 | |
*** fredrik has joined #openstack-meeting | 11:56 | |
*** tonytan4ever has quit IRC | 11:57 | |
*** fredrik_ has quit IRC | 12:00 | |
*** shaohe_feng has quit IRC | 12:00 | |
*** tochi has quit IRC | 12:01 | |
*** rbowen has quit IRC | 12:02 | |
*** shaohe_feng has joined #openstack-meeting | 12:03 | |
*** bogdando has quit IRC | 12:04 | |
*** ityaptin has joined #openstack-meeting | 12:05 | |
*** radek_ has quit IRC | 12:05 | |
*** synegy34 has joined #openstack-meeting | 12:06 | |
*** amotoki_ has quit IRC | 12:06 | |
*** synegy34 has quit IRC | 12:07 | |
*** synegy34 has joined #openstack-meeting | 12:07 | |
*** aysyd has joined #openstack-meeting | 12:07 | |
*** gatekeep has quit IRC | 12:08 | |
*** shaohe_feng has quit IRC | 12:11 | |
*** saggi has quit IRC | 12:11 | |
*** shaohe_feng has joined #openstack-meeting | 12:11 | |
*** mtanino has joined #openstack-meeting | 12:12 | |
*** amotoki has joined #openstack-meeting | 12:13 | |
*** cbits has joined #openstack-meeting | 12:15 | |
*** bogdando has joined #openstack-meeting | 12:15 | |
*** tinwood-lunch is now known as tinwood | 12:16 | |
*** maishsk has joined #openstack-meeting | 12:17 | |
*** lixiaoy1 has quit IRC | 12:18 | |
*** maishsk has quit IRC | 12:18 | |
*** maishsk has joined #openstack-meeting | 12:18 | |
*** lixiaoy1 has joined #openstack-meeting | 12:19 | |
*** shaohe_feng has quit IRC | 12:21 | |
*** jckasper has joined #openstack-meeting | 12:21 | |
*** shaohe_feng has joined #openstack-meeting | 12:21 | |
*** bogdando has quit IRC | 12:22 | |
*** adiantum has joined #openstack-meeting | 12:22 | |
*** bogdando has joined #openstack-meeting | 12:25 | |
*** jckasper has quit IRC | 12:26 | |
*** sarob has joined #openstack-meeting | 12:27 | |
*** nmagnezi_ has joined #openstack-meeting | 12:31 | |
*** nmagnezi has quit IRC | 12:31 | |
*** shaohe_feng has quit IRC | 12:31 | |
*** sindhu has quit IRC | 12:31 | |
*** bobh has joined #openstack-meeting | 12:31 | |
*** shaohe_feng has joined #openstack-meeting | 12:32 | |
*** obondarev has joined #openstack-meeting | 12:32 | |
*** sarob has quit IRC | 12:32 | |
*** jordan__ has left #openstack-meeting | 12:34 | |
*** tpsilva has joined #openstack-meeting | 12:34 | |
*** amotoki has quit IRC | 12:34 | |
*** manikanta_tadi has quit IRC | 12:35 | |
*** bobh has quit IRC | 12:36 | |
*** salv-orlando has quit IRC | 12:36 | |
*** roxanaghe has joined #openstack-meeting | 12:36 | |
*** radek_ has joined #openstack-meeting | 12:37 | |
*** amotoki has joined #openstack-meeting | 12:39 | |
*** toddjohn has joined #openstack-meeting | 12:40 | |
*** links has quit IRC | 12:40 | |
*** yamamoto has quit IRC | 12:40 | |
*** roxanaghe has quit IRC | 12:41 | |
*** shaohe_feng has quit IRC | 12:41 | |
*** shaohe_feng has joined #openstack-meeting | 12:42 | |
*** adiantum has quit IRC | 12:42 | |
*** julim has joined #openstack-meeting | 12:43 | |
*** saggi has joined #openstack-meeting | 12:46 | |
*** amotoki has quit IRC | 12:47 | |
*** egallen has left #openstack-meeting | 12:48 | |
*** mbound has joined #openstack-meeting | 12:49 | |
*** toddjohn has quit IRC | 12:49 | |
*** nishaYadav has quit IRC | 12:51 | |
*** shaohe_feng has quit IRC | 12:52 | |
*** nishaYadav has joined #openstack-meeting | 12:52 | |
*** nishaYadav is now known as Guest18526 | 12:52 | |
*** shaohe_feng has joined #openstack-meeting | 12:52 | |
*** rbrady has quit IRC | 12:53 | |
*** baoli has joined #openstack-meeting | 12:53 | |
*** baoli_ has joined #openstack-meeting | 12:54 | |
*** cleong has joined #openstack-meeting | 12:54 | |
*** woodster_ has joined #openstack-meeting | 12:55 | |
*** cknight has joined #openstack-meeting | 12:55 | |
*** saggi has quit IRC | 12:57 | |
*** pradk has quit IRC | 12:58 | |
*** baoli has quit IRC | 12:58 | |
*** dmorita has joined #openstack-meeting | 12:58 | |
*** amitgandhinz has quit IRC | 12:59 | |
*** amitgandhinz has joined #openstack-meeting | 13:00 | |
*** ronghui has quit IRC | 13:01 | |
*** shaohe_feng has quit IRC | 13:02 | |
*** hoangcx has joined #openstack-meeting | 13:02 | |
*** dmorita has quit IRC | 13:02 | |
*** shaohe_feng has joined #openstack-meeting | 13:03 | |
*** adiantum has joined #openstack-meeting | 13:04 | |
*** saggi has joined #openstack-meeting | 13:05 | |
*** numans has quit IRC | 13:06 | |
*** jckasper has joined #openstack-meeting | 13:07 | |
*** nmagnezi_ is now known as nmagnezi | 13:09 | |
*** adiantum has quit IRC | 13:12 | |
*** Guest18526 is now known as nishaYadav | 13:12 | |
*** shaohe_feng has quit IRC | 13:12 | |
*** amotoki has joined #openstack-meeting | 13:12 | |
*** shaohe_feng has joined #openstack-meeting | 13:13 | |
*** ronghui has joined #openstack-meeting | 13:14 | |
*** sindhu has joined #openstack-meeting | 13:15 | |
*** gongysh has joined #openstack-meeting | 13:16 | |
*** numans has joined #openstack-meeting | 13:17 | |
*** emagana has joined #openstack-meeting | 13:19 | |
*** zz_dimtruck is now known as dimtruck | 13:19 | |
*** bill_az has joined #openstack-meeting | 13:21 | |
*** vponomaryov has left #openstack-meeting | 13:22 | |
*** myoung has joined #openstack-meeting | 13:22 | |
*** shaohe_feng has quit IRC | 13:22 | |
*** emagana has quit IRC | 13:24 | |
*** maishsk has quit IRC | 13:25 | |
*** shaohe_feng has joined #openstack-meeting | 13:25 | |
*** banix has joined #openstack-meeting | 13:26 | |
*** fredrik_ has joined #openstack-meeting | 13:27 | |
*** ygbo has quit IRC | 13:28 | |
*** jckasper has quit IRC | 13:28 | |
*** raj_singh has joined #openstack-meeting | 13:29 | |
*** toddjohn has joined #openstack-meeting | 13:29 | |
*** jckasper has joined #openstack-meeting | 13:29 | |
*** ygbo has joined #openstack-meeting | 13:30 | |
*** markvoelker has joined #openstack-meeting | 13:30 | |
*** fredrik has quit IRC | 13:30 | |
*** trozet has quit IRC | 13:32 | |
*** shaohe_feng has quit IRC | 13:33 | |
*** yuval has quit IRC | 13:33 | |
*** jckasper has quit IRC | 13:34 | |
*** markvoelker has quit IRC | 13:34 | |
*** jungleboyj has quit IRC | 13:34 | |
*** esberglu has joined #openstack-meeting | 13:35 | |
*** trozet has joined #openstack-meeting | 13:35 | |
*** shaohe_feng has joined #openstack-meeting | 13:36 | |
*** jamesdenton has joined #openstack-meeting | 13:36 | |
*** sdake has joined #openstack-meeting | 13:36 | |
*** maishsk has joined #openstack-meeting | 13:37 | |
*** merooney has joined #openstack-meeting | 13:39 | |
*** markus_z has joined #openstack-meeting | 13:40 | |
*** yamamoto has joined #openstack-meeting | 13:41 | |
*** mriedem has joined #openstack-meeting | 13:42 | |
*** toscalix has quit IRC | 13:42 | |
*** ayoung has joined #openstack-meeting | 13:43 | |
*** shaohe_feng has quit IRC | 13:43 | |
*** shaohe_feng has joined #openstack-meeting | 13:44 | |
*** yamamoto has quit IRC | 13:46 | |
*** takashin has joined #openstack-meeting | 13:47 | |
*** rlrossit has joined #openstack-meeting | 13:49 | |
*** Liuqing has quit IRC | 13:51 | |
*** enriquetaso has joined #openstack-meeting | 13:51 | |
*** Liuqing has joined #openstack-meeting | 13:52 | |
*** tonytan4ever has joined #openstack-meeting | 13:52 | |
*** shaohe_feng has quit IRC | 13:53 | |
*** toscalix has joined #openstack-meeting | 13:53 | |
*** saggi has quit IRC | 13:54 | |
*** shaohe_feng has joined #openstack-meeting | 13:54 | |
*** zzxwill has joined #openstack-meeting | 13:54 | |
*** zzxwill_ has joined #openstack-meeting | 13:54 | |
*** gcb has joined #openstack-meeting | 13:56 | |
*** cdent has joined #openstack-meeting | 13:57 | |
*** pnavarro has quit IRC | 13:57 | |
*** dimtruck is now known as zz_dimtruck | 13:57 | |
*** preisner has quit IRC | 13:58 | |
*** rbak has joined #openstack-meeting | 13:58 | |
*** AmitGalitz has quit IRC | 13:58 | |
*** JJ has joined #openstack-meeting | 13:59 | |
*** oferby has quit IRC | 13:59 | |
*** andrearosa has joined #openstack-meeting | 13:59 | |
*** auggy has joined #openstack-meeting | 13:59 | |
*** lyarwood has joined #openstack-meeting | 14:00 | |
mriedem | #startmeeting nova | 14:00 |
openstack | Meeting started Thu Jul 28 14:00:28 2016 UTC and is due to finish in 60 minutes. The chair is mriedem. Information about MeetBot at http://wiki.debian.org/MeetBot. | 14:00 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 14:00 |
*** dmacpher has joined #openstack-meeting | 14:00 | |
*** openstack changes topic to " (Meeting topic: nova)" | 14:00 | |
openstack | The meeting name has been set to 'nova' | 14:00 |
rlrossit | o/ | 14:00 |
markus_z | o/ | 14:00 |
gcb | o/ | 14:00 |
dansmith | o/ | 14:00 |
lyarwood | o/ | 14:00 |
andrearosa | hi | 14:00 |
raj_singh | o/ | 14:00 |
takashin | o/ | 14:00 |
*** anilvenkata has quit IRC | 14:00 | |
auggy | o/ | 14:01 |
*** egallen has joined #openstack-meeting | 14:01 | |
*** gabor_antal has joined #openstack-meeting | 14:01 | |
mriedem | let's do this | 14:01 |
*** moshele has joined #openstack-meeting | 14:01 | |
mriedem | #topic release news | 14:01 |
*** openstack changes topic to "release news (Meeting topic: nova)" | 14:01 | |
mriedem | #link https://wiki.openstack.org/wiki/Nova/Newton_Release_Schedule | 14:01 |
mriedem | #info Today is the freeze for python 3 and mox removal work. If there is anything close let's get it merged, everything else should be stopped for Newton. | 14:01 |
bauzas | \o | 14:02 |
*** pradk has joined #openstack-meeting | 14:02 | |
mriedem | #link python 3 conversion changes: https://review.openstack.org/#/q/topic:bp/nova-python3-newton+status:open | 14:02 |
macsz | \o | 14:02 |
cdent | o/ | 14:02 |
mriedem | #link mox removal changes https://review.openstack.org/#/q/topic:bp/remove-mox-newton+status:open | 14:02 |
dansmith | so lyarwood has a py3 fix but it's needed for a real bug fix | 14:02 |
dansmith | and it's also a disgusting hack, which is why it failed on py3 | 14:02 |
mriedem | real fixes are fine i think | 14:02 |
dansmith | yeah, just FYI | 14:02 |
dansmith | don't go -2 it :D | 14:03 |
dansmith | https://review.openstack.org/#/c/342111 | 14:03 |
mriedem | there are 5 pages of mox removal stuff, so we need to land whatever is already +2'ed or ready today | 14:03 |
mriedem | i'm not going to -2 all of the mox removal changes, there are too many | 14:03 |
*** shaohe_feng has quit IRC | 14:03 | |
mriedem | i will mark the bps complete by the end of the day though | 14:03 |
mriedem | and probably also put out a reminder in the mailing list | 14:04 |
*** shaohe_feng has joined #openstack-meeting | 14:04 | |
mriedem | #info Aug 4: priority spec approval freeze | 14:04 |
mriedem | that's 1 week from today | 14:05 |
mriedem | the only priority specs i think we have are probably resource provider stuff and libvirt storage pools | 14:05 |
mriedem | #info move non-priority newton specs for review to the ocata directory if you still plan on working those in ocata | 14:06 |
*** liamji has joined #openstack-meeting | 14:06 | |
mriedem | anything up for review that's not moved to ocata by 8/4 will get abandoned | 14:06 |
mriedem | any release questions? | 14:06 |
mriedem | #topic bugs | 14:07 |
*** openstack changes topic to "bugs (Meeting topic: nova)" | 14:07 | |
mriedem | gate status has been ok i think | 14:07 |
mriedem | #link check queue gate status http://status.openstack.org/elastic-recheck/index.html | 14:07 |
mriedem | i'm not aware of any major new fallout | 14:07 |
*** diana_clarke has joined #openstack-meeting | 14:07 | |
bauzas | so, the resize is quite in a hard shape | 14:08 |
*** BobBall has joined #openstack-meeting | 14:08 | |
diana_clarke | o/ | 14:08 |
bauzas | because of the man just writing this line | 14:08 |
mriedem | bauzas: is there a gate bug? | 14:08 |
bauzas | we basically just send the original flavor to the scheduler | 14:08 |
bauzas | mriedem: nope, just that we verify the old flavor instead of the new one | 14:08 |
mriedem | so jobs are failing or...? | 14:09 |
bauzas | nope | 14:09 |
bauzas | is this a "bugs" topic :) | 14:09 |
bauzas | ? :p | 14:09 |
mriedem | yeah, sorry, was talking about gate status though so i thought you were talking about jobs failing on something new | 14:09 |
bauzas | my bad then :) | 14:10 |
bauzas | I saw a couple of grenade rechecks tho | 14:10 |
mriedem | does the test fail? | 14:10 |
mriedem | b/c it tries to do a migrate instead of a resize on a single node? | 14:10 |
*** dane_leblanc has joined #openstack-meeting | 14:10 | |
*** ajmiller has joined #openstack-meeting | 14:11 | |
*** amitgandhinz has quit IRC | 14:11 | |
mriedem | how about we just talk about this in -nova after the meeting... | 14:11 |
*** sindhu has quit IRC | 14:11 | |
bauzas | sorry, seems I made a lot of confusion : no, the resize bug is not impacting the bug AFAICS | 14:11 |
bauzas | graah | 14:11 |
bauzas | not impacting the gate* | 14:11 |
bauzas | and okay, let's move that offline | 14:11 |
* gibi is late | 14:11 | |
mriedem | ok, well, if we have false positives in resize tests that's also bad | 14:11 |
* edleafe wanders in | 14:12 | |
mriedem | but let's talk about it in nova | 14:12 |
bauzas | agreed | 14:12 |
mriedem | third party ci status - has seemed....ok? | 14:12 |
*** amitgandhinz has joined #openstack-meeting | 14:12 | |
mriedem | honestly third party ci status is a crapshoot from week to week | 14:12 |
mriedem | quobyte ci should be back on track though, we reverted something that was breaking their ci | 14:12 |
mriedem | i think i noticed that xen is working on a neutron-backed job | 14:13 |
*** sridharg has quit IRC | 14:13 | |
mriedem | which is good to see | 14:13 |
*** zz_dimtruck is now known as dimtruck | 14:13 | |
mriedem | are there any critical bugs anyone wants to bring up? | 14:13 |
mriedem | markus_z: auggy: ? | 14:13 |
markus_z | nothing noteworthy from my pov | 14:13 |
auggy | i'm not aware of anything | 14:13 |
mriedem | ok | 14:13 |
*** egallen has quit IRC | 14:13 | |
mriedem | moving on then | 14:13 |
mriedem | #reminders | 14:13 |
mriedem | oops | 14:13 |
*** shaohe_feng has quit IRC | 14:14 | |
mriedem | #topic reminders | 14:14 |
*** openstack changes topic to "reminders (Meeting topic: nova)" | 14:14 | |
mriedem | #link Newton review focus list: https://etherpad.openstack.org/p/newton-nova-priorities-tracking | 14:14 |
*** Liuqing has quit IRC | 14:14 | |
mriedem | #help https://wiki.openstack.org/wiki/Nova/BugTriage#Weekly_bug_skimming_duty Volunteers for 1 week of bug skimming duty? | 14:14 |
*** egallen has joined #openstack-meeting | 14:14 | |
*** shaohe_feng has joined #openstack-meeting | 14:14 | |
*** efried has joined #openstack-meeting | 14:14 | |
*** egallen has left #openstack-meeting | 14:14 | |
mriedem | looks like we have 36 untriaged bugs | 14:14 |
*** Liuqing has joined #openstack-meeting | 14:14 | |
macsz | i can do it | 14:14 |
*** ljxiash has joined #openstack-meeting | 14:14 | |
mriedem | macsz: cool, just update that wiki, thanks | 14:15 |
*** gongysh has quit IRC | 14:15 | |
macsz | sure, will do | 14:15 |
mriedem | auggy: before i forget, if we have wiki pages on the py3 and/or mox conversion efforts for new people, we should put a big fat "this is frozen now for newton and will resume in ocata" at the top of the pages | 14:15 |
auggy | mriedem: kk noted | 14:15 |
mriedem | #action auggy to note that py3 and mox efforts are frozen for newton in their respective wiki pages | 14:16 |
mriedem | thanks | 14:16 |
auggy | i'll update the new contributor page | 14:16 |
*** rrecio has joined #openstack-meeting | 14:16 | |
mriedem | #topic Stable branch status: https://etherpad.openstack.org/p/stable-tracker | 14:17 |
*** openstack changes topic to "Stable branch status: https://etherpad.openstack.org/p/stable-tracker (Meeting topic: nova)" | 14:17 | |
mriedem | the periodic jobs for nova on stable have been fine | 14:17 |
mriedem | #link stable/mitaka: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/mitaka,n,z | 14:17 |
mriedem | #link stable/liberty: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/liberty,n,z | 14:17 |
mriedem | we have a bunch of mitaka backports ready to go i think, just need some review focus | 14:17 |
*** rrecio_ has joined #openstack-meeting | 14:18 | |
mriedem | i need to hunker down on those so we can get a stable/mitaka point release out early next week | 14:18 |
*** sindhu has joined #openstack-meeting | 14:18 | |
mriedem | #help review stable/mitaka backports so we can do a release the week of 8/1 | 14:18 |
mriedem | #topic subteam highlights | 14:18 |
*** openstack changes topic to "subteam highlights (Meeting topic: nova)" | 14:18 | |
mriedem | there wasn't a cells meeting this week | 14:19 |
mriedem | there are reviews ongoing though | 14:19 |
mriedem | dansmith: jaypipes: how is doffm's aggregates to api db series coming? | 14:19 |
dansmith | I asked him something the other day and never got a response | 14:19 |
dansmith | he squashed the patch to block creations and do creates in the api db | 14:20 |
jaypipes | mriedem: slowly... | 14:20 |
dansmith | mriedem: meaning, I asked jaypipes something.. rather, pointed him at the later patch as the answer to his question | 14:20 |
*** piet has joined #openstack-meeting | 14:20 | |
dansmith | about the autoincrement thing | 14:20 |
*** rrecio has quit IRC | 14:20 | |
jaypipes | mriedem: lemme look again. last I checked yesterday I posted a review of -1 because there were tempest tests around aggs that were failing with a valid problem. | 14:20 |
mriedem | dansmith: jaypipes: if there isn't much left, and it's just a matter of pushing the changes, i say someone takes it over | 14:21 |
dansmith | if that is resolved, then I think they're probably ready I just didn't +2 anything | 14:21 |
mriedem | ok | 14:21 |
dansmith | mriedem: I'm happy to do that | 14:21 |
dansmith | if need be | 14:21 |
jaypipes | mriedem: there are valid failures. is doffster on PTO? | 14:21 |
*** galstrom_zzz is now known as galstrom | 14:21 | |
mriedem | the doffster is getting pulled into lots of internal stuff | 14:21 |
jaypipes | boo. | 14:21 |
dansmith | jaypipes: I didn't see those failures, but I'll pick it up and figure those out when we're done here and will ping you if I can't find them | 14:22 |
mriedem | there is also a series starting at https://review.openstack.org/#/c/325985/ which the bottom patch is holding up some stuff - unfortunately i didn't get the review on it until right before laski left on vacation | 14:22 |
jaypipes | dansmith: ok, well, my schedule today is pretty open. have a meeting I must attend from 8am-9am your time but otherwise pretty open. | 14:22 |
*** roxanaghe has joined #openstack-meeting | 14:22 | |
*** fredrik_ has quit IRC | 14:22 | |
mriedem | if we think someone else can tackle what's left, which i don't think is much on that one, we can move forward with the series | 14:22 |
mriedem | bauzas: melwitt: ^ fyi | 14:22 |
jaypipes | dansmith: happy to quick-review-iterate with you on that series. | 14:22 |
dansmith | alright | 14:22 |
edleafe | mriedem: I may have some cycles, too | 14:22 |
mriedem | ok | 14:23 |
bauzas | mriedem: I'll be on PTO for two weeks starting tomorrow EOB, passing the ball, sorry | 14:23 |
mriedem | mandatory PTO i hope | 14:23 |
dansmith | jeez | 14:23 |
bauzas | ahah | 14:23 |
mriedem | then let's all let it rest on melwitt's shoulders | 14:23 |
bauzas | I really *tried* to not take more, hard call :p | 14:23 |
mriedem | we're all counting on you, good luck | 14:23 |
mriedem | moving on to scheduler subteam meeting highlights | 14:24 |
mriedem | edleafe: was there a scheduler meeting this week? i didn't think so | 14:24 |
edleafe | I was out on Monday | 14:24 |
*** shaohe_feng has quit IRC | 14:24 | |
edleafe | So unless someone else ran it... | 14:24 |
mriedem | ok | 14:24 |
bauzas | and noone took the ball AFAIK | 14:24 |
mriedem | jaypipes and cdent have a thread in the ML | 14:24 |
mriedem | which i haven't read yet | 14:24 |
cdent | nbd | 14:24 |
mriedem | jaypipes: anything you want to say? | 14:25 |
*** shaohe_feng has joined #openstack-meeting | 14:25 | |
jaypipes | mriedem: on the laski patch (that has a -WIP on it) do you need me to do anything there? | 14:25 |
mriedem | jaypipes: no i don't think so | 14:25 |
mriedem | jaypipes: ideally you and i would stay as reviewers on that one | 14:25 |
jaypipes | mriedem: on scheduler stuff, I agree with bauzas that I'd handle the object model work for dynamic resource classes and he could crank out the REST API for resource classes on the placement service. | 14:25 |
jaypipes | mriedem: yes on laski thing | 14:26 |
mriedem | even though he'll be gone for 2 weeks | 14:26 |
*** amitgandhinz has quit IRC | 14:26 | |
bauzas | mriedem: because jaypipes has good cheese | 14:26 |
jaypipes | mriedem: I'm gonna push yet another revision on the resource-providers-allocations and dynamic-resource-classes specs today after feedback from cdent and bauzas. | 14:26 |
*** roxanaghe has quit IRC | 14:27 | |
mriedem | dynamic-resource-classes was agreed to be a stretch goal for newton yes? | 14:27 |
jaypipes | bauzas: well, yeah, but there's lots that needs done before his CRUD API patches would be landable anyway. | 14:27 |
jaypipes | mriedem: correct. | 14:27 |
mriedem | ok, just making sure | 14:27 |
*** xyang1 has joined #openstack-meeting | 14:27 | |
bauzas | mriedem: exactly, hence me thinking I can async work on it | 14:27 |
*** saggi has joined #openstack-meeting | 14:27 | |
mriedem | ok | 14:28 |
mriedem | let's move on | 14:28 |
jaypipes | bauzas: yup. just dont' make the API calls async ;P | 14:28 |
mriedem | PaulMurray isn't here | 14:28 |
mriedem | there was a live migration meeting this week, we mostly talked about CI | 14:28 |
mriedem | tdurakov is working on tempest patches for the latest live migration related microversions | 14:28 |
*** efried has quit IRC | 14:29 | |
mriedem | and was going to see how re-enabling NFV in the live migration job works out | 14:29 |
mriedem | we also compared the nova-net vs neutron multinode jobs that both run live migration, the neutron job has somewhat better pass rates over 7 days, but it's only check queue and the types of failures from the jobs probably wouldn't matter (for live migration) between networking backends | 14:29 |
mriedem | anyway, putting thought into moving away from nova-net jobs when we have duplicates | 14:30 |
mriedem | and paul-carlton's libvirt storage pools spec is up for review yet i think, and mnestratov was +1 on it for vz | 14:30 |
*** amitgandhinz has joined #openstack-meeting | 14:30 | |
*** efried has joined #openstack-meeting | 14:30 | |
mriedem | sdague: want to cover anything from the api meeting this week? | 14:30 |
mriedem | must be too early for sean :) | 14:31 |
mriedem | the proxy api deprecation series is done | 14:31 |
mriedem | dansmith is working the novaclient changes for that | 14:31 |
mriedem | there are some questions in the ML on how to handle the tempest changes for that | 14:31 |
mriedem | and gmann has a patch up to stop allowing a url for image_href | 14:32 |
dansmith | mriedem: I think the current patch is good, needs reviews | 14:32 |
*** jdurgin1 has joined #openstack-meeting | 14:32 | |
mriedem | that's about all i remember from the api meeting | 14:32 |
mriedem | dansmith: ok i'll try to get a pass on that again today | 14:32 |
*** aprice has joined #openstack-meeting | 14:32 | |
dansmith | thanks | 14:32 |
mriedem | https://review.openstack.org/#/c/347514/ | 14:32 |
mriedem | for those at home | 14:32 |
mriedem | i thought we were going to deprecate the python APIs too? | 14:33 |
mriedem | rather than let them just start failing | 14:33 |
*** egallen has joined #openstack-meeting | 14:33 | |
*** shaohe_feng has quit IRC | 14:34 | |
mriedem | moshele: if you're around, was there a pci/sriov meeting this week? | 14:34 |
moshele | yes | 14:34 |
*** shaohe_feng has joined #openstack-meeting | 14:35 | |
mriedem | updates? | 14:35 |
moshele | so regarding CI we have the following tempest patches https://review.openstack.org/#/c/343294/ https://review.openstack.org/#/c/335447/ we didn't get review for tempest cores :( | 14:35 |
dansmith | mriedem: they fail if you don't explicitly request the right microversion.. I thought we have to leave those in place for a cycle, but maybe you just want some deprecated decoration? | 14:35 |
*** spotz_zzz is now known as spotz | 14:35 | |
*** zhurong has joined #openstack-meeting | 14:36 | |
moshele | basically tempest is broken for some test when using vnic_type | 14:36 |
mriedem | dansmith: yeah deprecation warnings and docstring updates like we have for baremetal and image proxy apis | 14:36 |
*** matrohon has quit IRC | 14:36 | |
dansmith | okay | 14:36 |
moshele | this is WIP patch for testing migration and migration revert in tempest https://review.openstack.org/#/c/347374/ | 14:36 |
moshele | also we have several patch around migraion/migration-revert that needs reviews https://review.openstack.org/#/c/347444/ https://review.openstack.org/#/c/347558/ https://review.openstack.org/#/c/328983/ | 14:37 |
jaypipes | moshele: I'm reviewing that... | 14:37 |
mriedem | moshele: doesn't that have to depend on those other changes? | 14:37 |
mriedem | the tempest WIP i mean | 14:37 |
moshele | no | 14:37 |
moshele | sorry it depend on one of them | 14:38 |
moshele | on this one https://review.openstack.org/#/c/335447/ | 14:38 |
mriedem | moshele: ok should probably stack those in a series or use Depends-On | 14:38 |
moshele | mriedem: we ping the tempest core in infra and we didn't get mach review | 14:39 |
*** nmagnezi has quit IRC | 14:39 | |
moshele | mriedem: so we have a multinode cI with all the tempest patches for testing the nova patches | 14:39 |
moshele | mriedem: I don't want to block stuff because of tempest | 14:40 |
mriedem | ok | 14:40 |
mriedem | let's move on | 14:40 |
mriedem | #topic stuck reviews | 14:41 |
*** openstack changes topic to "stuck reviews (Meeting topic: nova)" | 14:41 | |
mriedem | there was nothing in the agenda | 14:41 |
mriedem | anyone have something to bring up? | 14:41 |
gcb | mriedem ,please have a look at oslo related reviews which we talked before, https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bug/1517839 | 14:41 |
mriedem | gcb: is that all that's left of that series? | 14:41 |
gcb | yes | 14:42 |
mriedem | gcb: b/c we're winding down on stuff like this in nova for newton | 14:42 |
mriedem | ok | 14:42 |
mriedem | #topic open discussion | 14:42 |
*** openstack changes topic to "open discussion (Meeting topic: nova)" | 14:42 | |
*** clenimar has joined #openstack-meeting | 14:42 | |
mriedem | one thing i have to bring up | 14:42 |
mriedem | novaclient currently caps at 2.32 | 14:42 |
* gibi is wondering if he missed the notification subteam part of the meeting | 14:42 | |
*** saju_m has quit IRC | 14:43 | |
mriedem | gibi: sorry i didn't ask about notifications since those were halted for newton and are biweekly meetings | 14:43 |
mriedem | did you have something? | 14:43 |
*** jmckind has joined #openstack-meeting | 14:43 | |
gibi | mriedem: yeah we have biweekly meetings and a couple of follow up patches still for newton | 14:43 |
gibi | mostly refactoring, test improvemtn, doc improvement | 14:43 |
*** radek_ has quit IRC | 14:43 | |
*** singlethink has joined #openstack-meeting | 14:43 | |
*** asettle has quit IRC | 14:43 | |
gibi | the subteam part of the newton priority etherpad has the links | 14:44 |
gibi | these follow ups needs some core attention if bandwidth allows | 14:44 |
*** dslevin has joined #openstack-meeting | 14:44 | |
mriedem | sure, same as last meeting | 14:44 |
*** egallen has quit IRC | 14:44 | |
*** shaohe_feng has quit IRC | 14:44 | |
gibi | yeah somthing like that | 14:44 |
*** egallen has joined #openstack-meeting | 14:44 | |
gibi | that is all | 14:44 |
mriedem | ok, back to novaclient | 14:44 |
mriedem | so we have 2.32 today | 14:44 |
mriedem | dan is working on 2.36 | 14:45 |
mriedem | we need to fill the gap | 14:45 |
*** shaohe_feng has joined #openstack-meeting | 14:45 | |
*** piet has quit IRC | 14:45 | |
mriedem | https://review.openstack.org/#/q/project:openstack/python-novaclient+status:open | 14:45 |
*** dasanind has joined #openstack-meeting | 14:45 | |
*** egallen has left #openstack-meeting | 14:45 | |
mriedem | i see WIP reviews for 2.34 and 2.35 | 14:45 |
mriedem | don't see anything for 2.33 | 14:45 |
mriedem | anyway, heads up that we need work there | 14:45 |
mriedem | #help need to get 2.33-2.35 microversions implemented in novaclient | 14:46 |
mriedem | anyone have anything else for open discussion? | 14:46 |
wznoinsk | hi, I have one | 14:46 |
mriedem | intel nfv ci :) | 14:46 |
*** ijw has joined #openstack-meeting | 14:47 | |
wznoinsk | you said that ;-) | 14:47 |
wznoinsk | I would like to ask for your opinions (especially the bad ones) on our Intel NFV CI, where we could improve and is it possible to get voting rights now/then -> http://lists.openstack.org/pipermail/openstack-dev/2016-July/099735.html | 14:47 |
*** jungleboyj has joined #openstack-meeting | 14:47 | |
*** ijw has quit IRC | 14:47 | |
*** ijw has joined #openstack-meeting | 14:47 | |
mriedem | i feel like i don't know that's been going since we don't have metrics to compare it against the other jobs | 14:48 |
mriedem | looking at http://ci-watch.tintri.com/project?project=nova&time=7+days it looks quite green | 14:48 |
mriedem | except tempest-dsvm-ovsdpdk-nfv-networking | 14:48 |
mriedem | but those could be actual changes that just fail the job b/c they break it | 14:49 |
mriedem | i'm fine with making it voting to see how it goes, | 14:49 |
mriedem | we can always turn that off if it goes south | 14:49 |
wznoinsk | yeah, it was broken for less than a day because of upstream change... let me dig out the id | 14:50 |
mriedem | i feel like the intel team running that ci has been pretty responsive | 14:50 |
mriedem | unless anyone has major objections i'll ack that request in the ML thread | 14:51 |
mriedem | ok, anything else for open discussion? | 14:51 |
dansmith | I haven't been paying attention to it, | 14:51 |
*** asettle has joined #openstack-meeting | 14:51 | |
*** ijw has quit IRC | 14:52 | |
dansmith | but making it voting will help that, so if you think it's reasonable, I'm good with turning it on for visibility | 14:52 |
mriedem | same thought | 14:52 |
mriedem | plus this was a big ask at the summit for NFV so i'm glad to see people stepping up that runs these things | 14:52 |
mriedem | like wznoinsk and moshele | 14:52 |
dansmith | yeah | 14:52 |
*** nmagnezi has joined #openstack-meeting | 14:52 | |
*** maishsk has quit IRC | 14:52 | |
mriedem | btw, i was planning on writing up a recap of the highlights/todos/decisions from the ML for the meetup, it's just a lot of content to cover | 14:53 |
*** lhx_ has joined #openstack-meeting | 14:53 | |
mriedem | so if you didn't make it and are wondering about that, ^ | 14:53 |
wznoinsk | btw. devstack change that broke the above job - https://github.com/openstack-dev/devstack/commit/c714c7e96, workarounded on the spot | 14:53 |
mriedem | wznoinsk: does the intel nfv ci run against devstack changes? | 14:53 |
*** vhoward has joined #openstack-meeting | 14:54 | |
wznoinsk | mriedem: only for ODL+OVSDPDK testing, kind of a legacy decision | 14:54 |
mriedem | and what do you mean by workarounded on the spot? is devstack going to be changed or are you carrying something in your ci setup to workaround that? | 14:54 |
*** shaohe_feng has quit IRC | 14:55 | |
*** Swami has joined #openstack-meeting | 14:55 | |
*** Swami_ has joined #openstack-meeting | 14:55 | |
mriedem | anyway, we can take this to the dev list, i'll ask there | 14:55 |
mriedem | let's wrap up with 5 big minutes to spare | 14:55 |
*** andrearosa has left #openstack-meeting | 14:55 | |
*** shaohe_feng has joined #openstack-meeting | 14:55 | |
mriedem | thanks everyone | 14:55 |
mriedem | #endmeeting | 14:55 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 14:55 | |
openstack | Meeting ended Thu Jul 28 14:55:47 2016 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 14:55 |
wznoinsk | mriedem: we've set the workaround (set Q_USE_PROVIDERNET_FOR_PUBLIC to Flase as before the change) to troubleshoot the issue | 14:55 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-07-28-14.00.html | 14:55 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-07-28-14.00.txt | 14:55 |
openstack | Log: http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-07-28-14.00.log.html | 14:55 |
*** timcline has joined #openstack-meeting | 14:55 | |
*** cdent has left #openstack-meeting | 14:56 | |
*** takashin has left #openstack-meeting | 14:56 | |
*** maishsk has joined #openstack-meeting | 14:56 | |
*** auggy has left #openstack-meeting | 14:57 | |
*** timcline_ has joined #openstack-meeting | 14:57 | |
*** emagana has joined #openstack-meeting | 14:57 | |
*** aprice has quit IRC | 14:58 | |
*** saggi has quit IRC | 14:59 | |
*** gcb has quit IRC | 14:59 | |
*** numans has quit IRC | 14:59 | |
*** maishsk has quit IRC | 14:59 | |
*** timcline has quit IRC | 15:00 | |
*** Swami__ has joined #openstack-meeting | 15:01 | |
*** amitgandhinz has quit IRC | 15:02 | |
*** amitgandhinz has joined #openstack-meeting | 15:03 | |
*** aprice has joined #openstack-meeting | 15:03 | |
*** iyamahat has joined #openstack-meeting | 15:03 | |
*** raj_singh has left #openstack-meeting | 15:03 | |
*** Swami has quit IRC | 15:05 | |
*** shaohe_feng has quit IRC | 15:05 | |
*** rlrossit has left #openstack-meeting | 15:05 | |
*** yamamoto has joined #openstack-meeting | 15:06 | |
*** shaohe_feng has joined #openstack-meeting | 15:06 | |
*** tomhamb has joined #openstack-meeting | 15:07 | |
*** piet has joined #openstack-meeting | 15:07 | |
*** gatekeep has joined #openstack-meeting | 15:07 | |
*** Swami has joined #openstack-meeting | 15:08 | |
*** gatekeep has quit IRC | 15:08 | |
*** gatekeep has joined #openstack-meeting | 15:09 | |
*** armax has joined #openstack-meeting | 15:09 | |
*** synegy34 has quit IRC | 15:09 | |
*** yamamoto has quit IRC | 15:10 | |
*** emagana has quit IRC | 15:10 | |
*** Swami__ has quit IRC | 15:11 | |
*** shaohe_feng has quit IRC | 15:15 | |
*** BobBall has left #openstack-meeting | 15:15 | |
*** Liuqing has quit IRC | 15:16 | |
*** shaohe_feng has joined #openstack-meeting | 15:16 | |
*** Liuqing has joined #openstack-meeting | 15:16 | |
*** emagana has joined #openstack-meeting | 15:17 | |
*** ijw has joined #openstack-meeting | 15:18 | |
*** yuanying_ has joined #openstack-meeting | 15:20 | |
*** pcaruana has quit IRC | 15:22 | |
*** yuanying has quit IRC | 15:22 | |
*** fredrik has joined #openstack-meeting | 15:22 | |
*** jdurgin1 has quit IRC | 15:23 | |
*** enriquetaso has quit IRC | 15:23 | |
*** ijw has quit IRC | 15:23 | |
*** nkrinner is now known as nkrinner_afk | 15:23 | |
*** enriquetaso has joined #openstack-meeting | 15:25 | |
*** shaohe_feng has quit IRC | 15:25 | |
*** zzxwill has quit IRC | 15:25 | |
*** zzxwill_ has quit IRC | 15:25 | |
*** persia_ has quit IRC | 15:26 | |
*** shaohe_feng has joined #openstack-meeting | 15:26 | |
*** fredrik has quit IRC | 15:27 | |
*** zhurong has quit IRC | 15:27 | |
*** uxdanielle has joined #openstack-meeting | 15:28 | |
*** dtrainor has quit IRC | 15:28 | |
*** dtrainor has joined #openstack-meeting | 15:28 | |
*** amitgandhinz has quit IRC | 15:29 | |
*** amitgandhinz has joined #openstack-meeting | 15:29 | |
*** jckasper has joined #openstack-meeting | 15:30 | |
*** megm has quit IRC | 15:30 | |
*** elo has quit IRC | 15:30 | |
*** megm has joined #openstack-meeting | 15:31 | |
*** elo has joined #openstack-meeting | 15:32 | |
*** emagana has quit IRC | 15:34 | |
*** mikelk has quit IRC | 15:34 | |
*** ijw has joined #openstack-meeting | 15:34 | |
*** aprice_ has joined #openstack-meeting | 15:35 | |
*** aprice has quit IRC | 15:35 | |
*** aprice_ is now known as aprice | 15:35 | |
*** emagana has joined #openstack-meeting | 15:35 | |
*** shaohe_feng has quit IRC | 15:36 | |
*** Swami__ has joined #openstack-meeting | 15:37 | |
*** markus_z has quit IRC | 15:37 | |
*** roxanaghe has joined #openstack-meeting | 15:38 | |
*** Swami__ has quit IRC | 15:38 | |
*** shaohe_feng has joined #openstack-meeting | 15:38 | |
*** Swami__ has joined #openstack-meeting | 15:38 | |
*** ijw has quit IRC | 15:39 | |
*** gibi has quit IRC | 15:39 | |
*** mickeys has joined #openstack-meeting | 15:39 | |
*** Swami has quit IRC | 15:40 | |
*** Swami_ has quit IRC | 15:40 | |
*** jdurgin1 has joined #openstack-meeting | 15:41 | |
*** zhhuabj has quit IRC | 15:42 | |
*** roxanaghe has quit IRC | 15:42 | |
*** gibi has joined #openstack-meeting | 15:43 | |
*** persia_ has joined #openstack-meeting | 15:45 | |
*** fredrik has joined #openstack-meeting | 15:45 | |
*** e0ne has quit IRC | 15:45 | |
*** shaohe_feng has quit IRC | 15:46 | |
*** aprice has left #openstack-meeting | 15:46 | |
*** e0ne has joined #openstack-meeting | 15:46 | |
*** jckasper has quit IRC | 15:46 | |
*** fredrik has quit IRC | 15:46 | |
*** jckasper has joined #openstack-meeting | 15:47 | |
*** shaohe_feng has joined #openstack-meeting | 15:47 | |
*** unicell1 has joined #openstack-meeting | 15:47 | |
*** piet has quit IRC | 15:48 | |
*** jckasper has quit IRC | 15:48 | |
*** moshele has left #openstack-meeting | 15:49 | |
*** hashar has quit IRC | 15:49 | |
*** jckasper has joined #openstack-meeting | 15:49 | |
*** zhhuabj has joined #openstack-meeting | 15:49 | |
*** woodster_ has quit IRC | 15:49 | |
*** hashar has joined #openstack-meeting | 15:49 | |
*** unicell has quit IRC | 15:50 | |
*** ijw has joined #openstack-meeting | 15:50 | |
*** Liuqing has quit IRC | 15:50 | |
*** emagana has quit IRC | 15:51 | |
*** emagana has joined #openstack-meeting | 15:52 | |
*** alyson_ has quit IRC | 15:53 | |
*** JJ has left #openstack-meeting | 15:54 | |
*** mtanino has quit IRC | 15:54 | |
*** timcline_ has quit IRC | 15:54 | |
*** comstud has quit IRC | 15:55 | |
*** ijw has quit IRC | 15:55 | |
*** duvarenkov has quit IRC | 15:56 | |
*** shaohe_feng has quit IRC | 15:56 | |
*** tomhamb has quit IRC | 15:56 | |
*** shaohe_feng has joined #openstack-meeting | 15:56 | |
*** anilvenkata has joined #openstack-meeting | 15:57 | |
*** duvarenkov has joined #openstack-meeting | 15:58 | |
*** pece has quit IRC | 15:58 | |
*** uxdanielle has quit IRC | 15:59 | |
*** rossella_s has quit IRC | 16:00 | |
*** rossella_s has joined #openstack-meeting | 16:00 | |
*** Swami__ has quit IRC | 16:00 | |
*** Leom has joined #openstack-meeting | 16:00 | |
*** Leom has quit IRC | 16:01 | |
*** Patifa has joined #openstack-meeting | 16:05 | |
*** shaohe_feng has quit IRC | 16:06 | |
*** ljxiash has quit IRC | 16:07 | |
*** david-lyle has joined #openstack-meeting | 16:07 | |
*** shaohe_feng has joined #openstack-meeting | 16:07 | |
*** e0ne has quit IRC | 16:07 | |
*** toddjohn has quit IRC | 16:08 | |
*** toddjohn has joined #openstack-meeting | 16:08 | |
*** maishsk has joined #openstack-meeting | 16:09 | |
*** Leom has joined #openstack-meeting | 16:09 | |
*** Leom has quit IRC | 16:10 | |
*** emagana has quit IRC | 16:11 | |
*** toddjohn has quit IRC | 16:12 | |
*** Leom has joined #openstack-meeting | 16:12 | |
*** obondarev has quit IRC | 16:13 | |
*** emagana has joined #openstack-meeting | 16:14 | |
*** Leom has quit IRC | 16:14 | |
*** Patifa has quit IRC | 16:14 | |
*** Patifa has joined #openstack-meeting | 16:14 | |
*** zhangshuai has quit IRC | 16:14 | |
*** marekd2 has quit IRC | 16:16 | |
*** uxdanielle has joined #openstack-meeting | 16:16 | |
*** marekd2 has joined #openstack-meeting | 16:17 | |
*** shaohe_feng has quit IRC | 16:17 | |
*** Leom has joined #openstack-meeting | 16:17 | |
*** shaohe_feng has joined #openstack-meeting | 16:17 | |
*** zhhuabj has quit IRC | 16:19 | |
*** baoli_ has quit IRC | 16:19 | |
*** Leom_ has joined #openstack-meeting | 16:20 | |
*** woodster_ has joined #openstack-meeting | 16:20 | |
*** marekd2 has quit IRC | 16:21 | |
*** ijw has joined #openstack-meeting | 16:21 | |
*** obondarev has joined #openstack-meeting | 16:21 | |
*** mbound has quit IRC | 16:22 | |
*** dmorita has joined #openstack-meeting | 16:22 | |
*** mbound has joined #openstack-meeting | 16:23 | |
*** Leom has quit IRC | 16:23 | |
*** ygbo has quit IRC | 16:24 | |
*** jlanoux has quit IRC | 16:24 | |
*** ntpttr__ has joined #openstack-meeting | 16:25 | |
*** maishsk has quit IRC | 16:26 | |
*** ijw has quit IRC | 16:26 | |
*** toddjohn has joined #openstack-meeting | 16:26 | |
*** shaohe_feng has quit IRC | 16:27 | |
*** Apoorva has joined #openstack-meeting | 16:27 | |
*** shaohe_feng has joined #openstack-meeting | 16:27 | |
*** maishsk has joined #openstack-meeting | 16:29 | |
*** emagana has quit IRC | 16:29 | |
*** emagana has joined #openstack-meeting | 16:29 | |
*** leeantho has joined #openstack-meeting | 16:31 | |
*** tesseract- has quit IRC | 16:32 | |
*** maishsk has quit IRC | 16:33 | |
*** coolsvap is now known as coolsvap_ | 16:34 | |
*** dmorita has quit IRC | 16:36 | |
*** shaohe_feng has quit IRC | 16:37 | |
*** dmorita has joined #openstack-meeting | 16:38 | |
*** dmorita has quit IRC | 16:38 | |
*** dmorita has joined #openstack-meeting | 16:38 | |
*** shaohe_feng has joined #openstack-meeting | 16:38 | |
*** cbits has quit IRC | 16:38 | |
*** ninag has joined #openstack-meeting | 16:39 | |
*** unicell1 has quit IRC | 16:40 | |
*** iyamahat has quit IRC | 16:41 | |
*** vhoward has quit IRC | 16:42 | |
*** ntpttr__ has quit IRC | 16:43 | |
*** ninag has quit IRC | 16:43 | |
*** gyee has joined #openstack-meeting | 16:43 | |
*** ntpttr__ has joined #openstack-meeting | 16:44 | |
*** timcline has joined #openstack-meeting | 16:45 | |
*** mtanino has joined #openstack-meeting | 16:45 | |
*** hashar has quit IRC | 16:47 | |
*** shaohe_feng has quit IRC | 16:47 | |
*** gyee has quit IRC | 16:48 | |
*** shaohe_feng has joined #openstack-meeting | 16:48 | |
*** dasanind has quit IRC | 16:49 | |
*** dasanind has joined #openstack-meeting | 16:49 | |
*** emagana has quit IRC | 16:49 | |
*** emagana_ has joined #openstack-meeting | 16:49 | |
*** Swami has joined #openstack-meeting | 16:50 | |
*** nishaYadav has quit IRC | 16:50 | |
*** maishsk has joined #openstack-meeting | 16:51 | |
*** nishaYadav has joined #openstack-meeting | 16:51 | |
*** nishaYadav has quit IRC | 16:52 | |
*** asettle has quit IRC | 16:54 | |
*** lhx_ has quit IRC | 16:54 | |
*** numans has joined #openstack-meeting | 16:54 | |
*** banix has quit IRC | 16:54 | |
*** amotoki has quit IRC | 16:54 | |
*** Daisy has joined #openstack-meeting | 16:55 | |
*** sambetts is now known as sambetts|afk | 16:56 | |
*** pnavarro has joined #openstack-meeting | 16:58 | |
*** shaohe_feng has quit IRC | 16:58 | |
*** shaohe_feng has joined #openstack-meeting | 16:58 | |
*** iyamahat has joined #openstack-meeting | 16:59 | |
*** amotoki has joined #openstack-meeting | 17:00 | |
*** Daisy has quit IRC | 17:00 | |
*** yamahata has joined #openstack-meeting | 17:00 | |
*** ronghui has quit IRC | 17:01 | |
*** david-lyle has quit IRC | 17:03 | |
*** amotoki has quit IRC | 17:03 | |
*** e0ne has joined #openstack-meeting | 17:04 | |
*** nmagnezi has quit IRC | 17:06 | |
*** roxanaghe has joined #openstack-meeting | 17:06 | |
*** emagana_ has quit IRC | 17:06 | |
*** emagana has joined #openstack-meeting | 17:06 | |
*** elopez has joined #openstack-meeting | 17:07 | |
*** elopez is now known as Guest10226 | 17:08 | |
*** shaohe_feng has quit IRC | 17:08 | |
*** Guest10226 has quit IRC | 17:08 | |
*** elopez_ has joined #openstack-meeting | 17:08 | |
*** maishsk has quit IRC | 17:08 | |
*** shaohe_feng has joined #openstack-meeting | 17:08 | |
*** anilvenkata has quit IRC | 17:11 | |
*** uxdanielle has quit IRC | 17:11 | |
*** whenry has joined #openstack-meeting | 17:12 | |
*** pnavarro has quit IRC | 17:12 | |
*** unicell has joined #openstack-meeting | 17:14 | |
*** ronghui has joined #openstack-meeting | 17:14 | |
*** unicell has quit IRC | 17:14 | |
*** unicell has joined #openstack-meeting | 17:14 | |
*** maishsk has joined #openstack-meeting | 17:14 | |
*** banix has joined #openstack-meeting | 17:15 | |
*** cloudtrainme has joined #openstack-meeting | 17:16 | |
*** jckasper has quit IRC | 17:17 | |
*** jckasper has joined #openstack-meeting | 17:17 | |
*** pnavarro has joined #openstack-meeting | 17:17 | |
*** shaohe_feng has quit IRC | 17:18 | |
*** shaohe_feng has joined #openstack-meeting | 17:19 | |
*** s3wong has joined #openstack-meeting | 17:20 | |
*** baoli has joined #openstack-meeting | 17:22 | |
*** Leom_ has quit IRC | 17:22 | |
*** emagana has quit IRC | 17:22 | |
*** emagana has joined #openstack-meeting | 17:22 | |
*** rbartal has quit IRC | 17:25 | |
*** roxanagh_ has joined #openstack-meeting | 17:26 | |
*** rbartal has joined #openstack-meeting | 17:27 | |
*** rbartal has quit IRC | 17:27 | |
*** uxdanielle has joined #openstack-meeting | 17:28 | |
*** shaohe_feng has quit IRC | 17:28 | |
*** david-lyle has joined #openstack-meeting | 17:28 | |
*** shaohe_feng has joined #openstack-meeting | 17:29 | |
*** cloudtrainme has quit IRC | 17:29 | |
*** emagana has quit IRC | 17:30 | |
*** emagana has joined #openstack-meeting | 17:30 | |
*** roxanagh_ has quit IRC | 17:31 | |
*** nishaYadav has joined #openstack-meeting | 17:32 | |
*** nishaYadav is now known as Guest12676 | 17:32 | |
*** Guest12676 has quit IRC | 17:32 | |
*** nisha_ has joined #openstack-meeting | 17:33 | |
*** nisha_ has quit IRC | 17:33 | |
*** bryan_att has quit IRC | 17:33 | |
*** Swami has quit IRC | 17:36 | |
*** Swami has joined #openstack-meeting | 17:37 | |
*** alyson_ has joined #openstack-meeting | 17:38 | |
*** shaohe_feng has quit IRC | 17:39 | |
*** shaohe_feng has joined #openstack-meeting | 17:40 | |
*** Patifa has quit IRC | 17:40 | |
*** bobh has joined #openstack-meeting | 17:42 | |
*** JoseMello has joined #openstack-meeting | 17:42 | |
*** maishsk has quit IRC | 17:44 | |
*** andymaier has quit IRC | 17:45 | |
*** maishsk has joined #openstack-meeting | 17:45 | |
*** banix has quit IRC | 17:49 | |
*** shaohe_feng has quit IRC | 17:49 | |
*** shaohe_feng has joined #openstack-meeting | 17:50 | |
*** ihrachys has quit IRC | 17:50 | |
*** emagana has quit IRC | 17:50 | |
*** emagana has joined #openstack-meeting | 17:50 | |
*** nishaYadav has joined #openstack-meeting | 17:51 | |
*** asettle has joined #openstack-meeting | 17:51 | |
*** nishaYadav is now known as Guest68314 | 17:51 | |
*** Guest68314 has quit IRC | 17:52 | |
*** toscalix has quit IRC | 17:52 | |
*** nisha_ has joined #openstack-meeting | 17:52 | |
*** ekcs has left #openstack-meeting | 17:55 | |
*** emagana has quit IRC | 17:55 | |
*** maishsk has quit IRC | 17:57 | |
*** cloudtrainme has joined #openstack-meeting | 17:58 | |
*** maishsk has joined #openstack-meeting | 17:59 | |
*** shaohe_feng has quit IRC | 17:59 | |
*** shaohe_feng has joined #openstack-meeting | 18:00 | |
*** bobh has quit IRC | 18:00 | |
*** emagana has joined #openstack-meeting | 18:02 | |
*** Suyi_ has joined #openstack-meeting | 18:02 | |
*** emagana has quit IRC | 18:03 | |
*** jdurgin1 has quit IRC | 18:03 | |
*** saju_m has joined #openstack-meeting | 18:03 | |
*** cloudtra_ has joined #openstack-meeting | 18:05 | |
*** cloudtra_ has quit IRC | 18:05 | |
*** dasanind has quit IRC | 18:05 | |
*** Sukhdev has joined #openstack-meeting | 18:07 | |
*** cloudtrainme has quit IRC | 18:08 | |
*** asettle has quit IRC | 18:08 | |
*** sandanar has quit IRC | 18:09 | |
*** shaohe_feng has quit IRC | 18:09 | |
*** cloudtrainme has joined #openstack-meeting | 18:10 | |
*** Sukhdev has quit IRC | 18:10 | |
*** shaohe_feng has joined #openstack-meeting | 18:10 | |
*** liamji has quit IRC | 18:12 | |
*** toddjohn has quit IRC | 18:12 | |
*** obondarev has quit IRC | 18:13 | |
*** toddjohn_ has joined #openstack-meeting | 18:13 | |
*** ociuhandu has quit IRC | 18:14 | |
*** ajmiller has quit IRC | 18:14 | |
*** csomerville has quit IRC | 18:16 | |
*** Sukhdev has joined #openstack-meeting | 18:17 | |
*** piet has joined #openstack-meeting | 18:19 | |
*** shaohe_feng has quit IRC | 18:20 | |
*** shaohe_feng has joined #openstack-meeting | 18:21 | |
*** cody-somerville has joined #openstack-meeting | 18:22 | |
*** claudiub|2 has joined #openstack-meeting | 18:23 | |
*** ayoung has quit IRC | 18:24 | |
*** banix has joined #openstack-meeting | 18:25 | |
*** obondarev has joined #openstack-meeting | 18:26 | |
*** ntpttr__ has quit IRC | 18:26 | |
*** baoli has quit IRC | 18:29 | |
*** shaohe_feng has quit IRC | 18:30 | |
*** obondarev has quit IRC | 18:30 | |
*** dasanind has joined #openstack-meeting | 18:30 | |
*** shaohe_feng has joined #openstack-meeting | 18:31 | |
*** zhhuabj has joined #openstack-meeting | 18:32 | |
*** electrofelix has quit IRC | 18:33 | |
*** vishwanathj has joined #openstack-meeting | 18:34 | |
*** csomerville has joined #openstack-meeting | 18:36 | |
*** tonytan4ever has quit IRC | 18:38 | |
*** cody-somerville has quit IRC | 18:39 | |
*** shaohe_feng has quit IRC | 18:40 | |
*** Leom has joined #openstack-meeting | 18:40 | |
*** shaohe_feng has joined #openstack-meeting | 18:41 | |
*** roxanagh_ has joined #openstack-meeting | 18:42 | |
*** david-lyle has quit IRC | 18:42 | |
*** ociuhandu has joined #openstack-meeting | 18:44 | |
*** fzdarsky is now known as fzdarsky|afk | 18:45 | |
*** vishnoianil has quit IRC | 18:46 | |
*** roxanagh_ has quit IRC | 18:46 | |
*** shaohe_feng has quit IRC | 18:50 | |
*** shaohe_feng has joined #openstack-meeting | 18:51 | |
*** elopez_ has quit IRC | 18:53 | |
*** baoli has joined #openstack-meeting | 18:54 | |
*** mickeys has quit IRC | 18:59 | |
*** obondarev has joined #openstack-meeting | 18:59 | |
*** mickeys has joined #openstack-meeting | 19:00 | |
*** shaohe_feng has quit IRC | 19:01 | |
*** shaohe_feng has joined #openstack-meeting | 19:01 | |
*** dmorita has quit IRC | 19:02 | |
*** fifieldt has quit IRC | 19:02 | |
*** toddjohn_ has quit IRC | 19:03 | |
*** toddjohn has joined #openstack-meeting | 19:04 | |
*** mickeys has quit IRC | 19:04 | |
*** toddjohn has quit IRC | 19:04 | |
*** jungleboyj has quit IRC | 19:05 | |
*** zhangshuai has joined #openstack-meeting | 19:06 | |
*** acoles is now known as acoles_ | 19:08 | |
*** zhangshuai has quit IRC | 19:10 | |
*** shaohe_feng has quit IRC | 19:11 | |
*** jungleboyj has joined #openstack-meeting | 19:11 | |
*** fzdarsky|afk has quit IRC | 19:11 | |
*** numans has quit IRC | 19:12 | |
*** shaohe_feng has joined #openstack-meeting | 19:12 | |
*** toddjohn has joined #openstack-meeting | 19:15 | |
*** hashar has joined #openstack-meeting | 19:17 | |
*** Sukhdev has quit IRC | 19:17 | |
*** elo has quit IRC | 19:18 | |
*** eric_lopez has joined #openstack-meeting | 19:18 | |
*** fifieldt has joined #openstack-meeting | 19:18 | |
*** toddjohn has quit IRC | 19:20 | |
*** hashar has quit IRC | 19:20 | |
*** hashar_ has joined #openstack-meeting | 19:20 | |
*** shaohe_feng has quit IRC | 19:21 | |
*** shaohe_feng has joined #openstack-meeting | 19:24 | |
*** fzdarsky|afk has joined #openstack-meeting | 19:25 | |
*** fifieldt has quit IRC | 19:27 | |
*** dmorita has joined #openstack-meeting | 19:28 | |
*** matrohon has joined #openstack-meeting | 19:30 | |
*** tonytan4ever has joined #openstack-meeting | 19:30 | |
*** shaohe_feng has quit IRC | 19:31 | |
*** shaohe_feng has joined #openstack-meeting | 19:32 | |
*** dmorita has quit IRC | 19:32 | |
*** enriquetaso has quit IRC | 19:34 | |
*** cdelatte has joined #openstack-meeting | 19:34 | |
*** singhj has joined #openstack-meeting | 19:35 | |
*** vishnoianil has joined #openstack-meeting | 19:35 | |
*** fifieldt has joined #openstack-meeting | 19:38 | |
*** maishsk_ has joined #openstack-meeting | 19:38 | |
*** maishsk has quit IRC | 19:39 | |
*** maishsk_ is now known as maishsk | 19:39 | |
*** dane_leblanc has quit IRC | 19:40 | |
*** claudiub|2 has quit IRC | 19:41 | |
*** shaohe_feng has quit IRC | 19:42 | |
*** shaohe_feng has joined #openstack-meeting | 19:42 | |
*** obondarev has quit IRC | 19:43 | |
*** jckasper has quit IRC | 19:45 | |
*** jckasper has joined #openstack-meeting | 19:45 | |
*** woodster_ has quit IRC | 19:49 | |
*** eric_lopez has quit IRC | 19:49 | |
*** jckasper has quit IRC | 19:50 | |
*** elopez_ has joined #openstack-meeting | 19:50 | |
*** toddjohn has joined #openstack-meeting | 19:51 | |
*** dane_leblanc has joined #openstack-meeting | 19:51 | |
*** jckasper has joined #openstack-meeting | 19:51 | |
*** shaohe_feng has quit IRC | 19:52 | |
*** shaohe_feng has joined #openstack-meeting | 19:53 | |
*** HeOS has quit IRC | 19:54 | |
*** elopez_ has quit IRC | 19:54 | |
*** AmitGalitz has joined #openstack-meeting | 19:55 | |
*** elopez_ has joined #openstack-meeting | 19:55 | |
*** jckasper has quit IRC | 19:56 | |
*** radek_ has joined #openstack-meeting | 19:56 | |
*** toddjohn has quit IRC | 19:56 | |
*** cloudtrainme has quit IRC | 19:56 | |
*** obondarev has joined #openstack-meeting | 19:57 | |
*** asettle has joined #openstack-meeting | 19:58 | |
*** asettle has quit IRC | 19:58 | |
greghaynes | cinerama: ohai | 19:59 |
greghaynes | I wonder if ianw will be around... | 19:59 |
*** rossella_s has quit IRC | 19:59 | |
cinerama | hmm | 19:59 |
*** rossella_s has joined #openstack-meeting | 20:00 | |
greghaynes | If its just me and you we can say theres not enough folk this time around | 20:00 |
greghaynes | Also, I really wish we had andre on irc | 20:01 |
*** toddjohn has joined #openstack-meeting | 20:01 | |
*** jprovazn has quit IRC | 20:01 | |
*** Apoorva has quit IRC | 20:02 | |
cinerama | yes | 20:02 |
*** shaohe_feng has quit IRC | 20:02 | |
*** jamesdenton has quit IRC | 20:02 | |
cinerama | anyway, so things i was going to talk about were basically, what all do we officially want for 2.0, status, and who is going to do what | 20:03 |
*** shaohe_feng has joined #openstack-meeting | 20:03 | |
cinerama | also: i need to modify the meeting calendar entry & propose our IRC channel stll, have had ironic work | 20:03 |
greghaynes | ianw: said he would get an etherpad up so we can hash out a list of what all we want | 20:03 |
greghaynes | it might be good to send out an ML about it early on, too | 20:03 |
greghaynes | since some users might have input on things they would like | 20:03 |
cinerama | about release goals? good idea. bnemec will likely have input there | 20:04 |
greghaynes | yep | 20:04 |
*** cloudtrainme has joined #openstack-meeting | 20:04 | |
*** baoli has quit IRC | 20:04 | |
greghaynes | I'm a bit sad I havent gotten any responses on the dib / tripleo split | 20:04 |
greghaynes | even no responses | 20:04 |
*** obondarev has quit IRC | 20:05 | |
cinerama | greghaynes: yes i haven't seen anything either. did you send that out on friday? northern hemisphere summer seems to mean more folks gone | 20:05 |
greghaynes | anyhow, want me to take on any of those? | 20:05 |
greghaynes | Yea, I sent it late on thurs | 20:05 |
bnemec | I suspect the apathy toward dib from tripleo is answer enough. | 20:05 |
greghaynes | bnemec: that'd be awesome | 20:05 |
bnemec | Although since tripleo would have to sign off on it that's a bit of a catch 22. :-) | 20:05 |
greghaynes | as long as its not 'man thats a horrible idea' | 20:05 |
cinerama | greghaynes: if you take the release mail i'll handle the other couple of things | 20:06 |
greghaynes | bnemec: hah, yea, I pinged stevenh about it and got a 'send out the ML' | 20:06 |
greghaynes | cinerama: ok | 20:06 |
*** toddjohn has quit IRC | 20:06 | |
bnemec | TBH we don't have the same kind of dib dependency we used to. It's mostly being used to install some packages on the overcloud images these days. | 20:06 |
cinerama | greghaynes: we wanted to meet biweekly right? the meeting entry got landed so i need to fix that. that should give us some time to throw up an agenda on the wiki | 20:06 |
bnemec | I'll try to remember to respond on the list this afternoon. | 20:07 |
greghaynes | bnemec: Yep, thats what I've noticed, which is why it makes a lot of sense to me | 20:07 |
greghaynes | :D | 20:07 |
greghaynes | cinerama: yes, biweekly | 20:07 |
*** jckasper has joined #openstack-meeting | 20:07 | |
greghaynes | cinerama: just noticed that was in there as weekly today | 20:07 |
cinerama | yeah it got landed before i could fix it. have been in the ironic side of the house much lately | 20:08 |
greghaynes | np, I've had similar work stuff | 20:08 |
*** mbound has quit IRC | 20:08 | |
greghaynes | the other big thing is - we should get the initial specs patch landed (its kind of my fault it stalled out for a bit) since theres a lot of stuff depending on it now | 20:08 |
greghaynes | I just updated it | 20:08 |
cinerama | yes | 20:08 |
cinerama | i also need to rereview all of andreas' changes in context, hoping to have a quiet day soon for that | 20:09 |
greghaynes | Yep, I just got a few of them done today | 20:09 |
greghaynes | ok, welp, until two weeks | 20:09 |
* greghaynes will try and send that email | 20:10 | |
cinerama | thanks for the short catch-up | 20:10 |
*** JoseMello has quit IRC | 20:10 | |
*** shaohe_feng has quit IRC | 20:12 | |
*** roxanagh_ has joined #openstack-meeting | 20:12 | |
*** shaohe_feng has joined #openstack-meeting | 20:13 | |
*** toddjohn has joined #openstack-meeting | 20:14 | |
*** merooney has quit IRC | 20:14 | |
*** maishsk has quit IRC | 20:17 | |
*** e0ne has quit IRC | 20:18 | |
*** flwang1 has quit IRC | 20:18 | |
*** roxanagh_ has quit IRC | 20:18 | |
*** tomhamb has joined #openstack-meeting | 20:18 | |
*** toddjohn has quit IRC | 20:18 | |
*** Apoorva has joined #openstack-meeting | 20:19 | |
*** gyee has joined #openstack-meeting | 20:21 | |
*** matrohon has quit IRC | 20:22 | |
*** shaohe_feng has quit IRC | 20:23 | |
*** shaohe_feng has joined #openstack-meeting | 20:23 | |
*** timcline has quit IRC | 20:23 | |
*** sindhu has quit IRC | 20:23 | |
*** dasanind has quit IRC | 20:24 | |
*** greghaynes has quit IRC | 20:25 | |
*** maishsk has joined #openstack-meeting | 20:26 | |
*** cdelatte has quit IRC | 20:26 | |
*** pnavarro has quit IRC | 20:26 | |
*** HeOS has joined #openstack-meeting | 20:26 | |
*** toddjohn has joined #openstack-meeting | 20:28 | |
*** pnavarro has joined #openstack-meeting | 20:29 | |
*** sindhu has joined #openstack-meeting | 20:30 | |
*** dasanind has joined #openstack-meeting | 20:30 | |
*** coolsvap_ has quit IRC | 20:31 | |
*** shaohe_feng has quit IRC | 20:33 | |
*** toddjohn has quit IRC | 20:33 | |
*** shaohe_feng has joined #openstack-meeting | 20:34 | |
*** Swami has quit IRC | 20:34 | |
*** leeantho_ has joined #openstack-meeting | 20:36 | |
*** andymaier has joined #openstack-meeting | 20:36 | |
*** Swami has joined #openstack-meeting | 20:37 | |
*** leeantho__ has joined #openstack-meeting | 20:37 | |
*** greghaynes has joined #openstack-meeting | 20:37 | |
*** leeantho has quit IRC | 20:38 | |
*** toddjohn has joined #openstack-meeting | 20:38 | |
*** leeantho_ has quit IRC | 20:41 | |
*** toddjohn has quit IRC | 20:43 | |
*** shaohe_feng has quit IRC | 20:43 | |
*** synegy34 has joined #openstack-meeting | 20:44 | |
*** shaohe_feng has joined #openstack-meeting | 20:44 | |
*** mickeys has joined #openstack-meeting | 20:44 | |
*** emagana has joined #openstack-meeting | 20:45 | |
*** mfranc213_ has quit IRC | 20:47 | |
*** radek_ has quit IRC | 20:47 | |
*** gatekeep has quit IRC | 20:47 | |
*** singhj has quit IRC | 20:48 | |
*** ntpttr__ has joined #openstack-meeting | 20:48 | |
*** woodster_ has joined #openstack-meeting | 20:49 | |
*** mfranc213 has joined #openstack-meeting | 20:49 | |
*** emagana has quit IRC | 20:49 | |
*** singhj has joined #openstack-meeting | 20:50 | |
*** matrohon has joined #openstack-meeting | 20:53 | |
*** shaohe_feng has quit IRC | 20:53 | |
*** fzdarsky|afk has quit IRC | 20:54 | |
*** shaohe_feng has joined #openstack-meeting | 20:54 | |
*** cleong has quit IRC | 20:54 | |
*** aeng has joined #openstack-meeting | 20:56 | |
*** maishsk has quit IRC | 21:01 | |
*** ronghui has quit IRC | 21:02 | |
*** rtheis has quit IRC | 21:02 | |
*** shaohe_feng has quit IRC | 21:04 | |
*** elo has joined #openstack-meeting | 21:04 | |
*** shaohe_feng has joined #openstack-meeting | 21:04 | |
*** maishsk has joined #openstack-meeting | 21:05 | |
*** rrecio_ has quit IRC | 21:05 | |
*** christx2 has quit IRC | 21:07 | |
*** mtanino has quit IRC | 21:08 | |
*** yamamoto has joined #openstack-meeting | 21:09 | |
*** mbound has joined #openstack-meeting | 21:09 | |
*** ntpttr__ has quit IRC | 21:09 | |
*** ntpttr__ has joined #openstack-meeting | 21:09 | |
*** matrohon has quit IRC | 21:13 | |
*** mbound has quit IRC | 21:14 | |
*** shaohe_feng has quit IRC | 21:14 | |
*** ronghui has joined #openstack-meeting | 21:14 | |
*** shaohe_feng has joined #openstack-meeting | 21:14 | |
*** egallen has joined #openstack-meeting | 21:15 | |
*** nisha__ has joined #openstack-meeting | 21:16 | |
*** singhj has quit IRC | 21:16 | |
*** nisha__ has quit IRC | 21:17 | |
*** singhj has joined #openstack-meeting | 21:18 | |
*** nisha_ has quit IRC | 21:19 | |
*** saju_m has quit IRC | 21:19 | |
*** kaminohana has joined #openstack-meeting | 21:20 | |
*** jmckind has quit IRC | 21:21 | |
*** yamamoto has quit IRC | 21:21 | |
*** shaohe_feng has quit IRC | 21:24 | |
*** shaohe_feng has joined #openstack-meeting | 21:25 | |
*** andymaier has quit IRC | 21:26 | |
*** spotz is now known as spotz_zzz | 21:27 | |
*** maishsk has quit IRC | 21:28 | |
*** aysyd has quit IRC | 21:29 | |
*** dane_leblanc has quit IRC | 21:29 | |
*** thorst has quit IRC | 21:33 | |
*** xyang1 has quit IRC | 21:33 | |
*** thorst has joined #openstack-meeting | 21:34 | |
*** baoli has joined #openstack-meeting | 21:34 | |
*** shaohe_feng has quit IRC | 21:34 | |
*** shaohe_feng has joined #openstack-meeting | 21:35 | |
*** dasanind has quit IRC | 21:36 | |
*** sindhu has quit IRC | 21:37 | |
*** piet has quit IRC | 21:37 | |
*** thorst has quit IRC | 21:38 | |
*** amuller has joined #openstack-meeting | 21:42 | |
*** baumann has joined #openstack-meeting | 21:42 | |
*** shaohe_feng has quit IRC | 21:45 | |
*** shaohe_feng has joined #openstack-meeting | 21:45 | |
*** baumann has quit IRC | 21:46 | |
*** toscalix has joined #openstack-meeting | 21:46 | |
*** Daisy has joined #openstack-meeting | 21:51 | |
*** flwang1 has joined #openstack-meeting | 21:51 | |
*** shaohe_feng has quit IRC | 21:55 | |
*** Daisy has quit IRC | 21:55 | |
*** shaohe_feng has joined #openstack-meeting | 21:55 | |
dougwig | Just boarded a plane, heading back from Alaska. | 21:56 |
*** boden has joined #openstack-meeting | 21:57 | |
*** dmorita has joined #openstack-meeting | 21:57 | |
*** esberglu has quit IRC | 21:57 | |
armax | dougwig: lucky you? | 21:58 |
*** galstrom is now known as galstrom_zzz | 21:58 | |
dougwig | I.e. I'm going to miss the meeting. | 22:00 |
armax | dougwig: booo | 22:00 |
armax | dougwig: looks like there’s no-one here anyway | 22:00 |
armax | HenryG is not joining either | 22:00 |
* armax hopes the other bail too? | 22:01 | |
armax | others* | 22:01 |
dougwig | You could talk to yourself. I'll read the transcript later. | 22:01 |
kevinbenton | i'm here | 22:01 |
*** Apoorva_ has joined #openstack-meeting | 22:01 | |
armax | kevinbenton: damn | 22:02 |
*** whenry has quit IRC | 22:02 | |
armax | if we have no quorum, there cannot be fist fight | 22:02 |
armax | well | 22:03 |
kevinbenton | cancel for today i guess? | 22:04 |
armax | let’s wait another minute or two, otherwise we’ll cancel | 22:04 |
dasm | armax: are you planning some kind of punishment on mid-cycle for everyone who didn't show on this meeting? | 22:04 |
*** Apoorva has quit IRC | 22:04 | |
dasm | armax: maybe it would help with being on time? ;) | 22:04 |
armax | dasm: you gave me a great idea! | 22:04 |
*** shaohe_feng has quit IRC | 22:05 | |
dasm | armax: but please, don't tell anyone that i suggested this :) | 22:05 |
*** jungleboyj has quit IRC | 22:05 | |
armax | dasm: of course I will | 22:06 |
armax | :) | 22:06 |
armax | #startmeeting neutron_drivers | 22:06 |
openstack | Meeting started Thu Jul 28 22:06:08 2016 UTC and is due to finish in 60 minutes. The chair is armax. Information about MeetBot at http://wiki.debian.org/MeetBot. | 22:06 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 22:06 |
*** openstack changes topic to " (Meeting topic: neutron_drivers)" | 22:06 | |
armax | no quorum | 22:06 |
openstack | The meeting name has been set to 'neutron_drivers' | 22:06 |
armax | #endmeeting | 22:06 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 22:06 | |
openstack | Meeting ended Thu Jul 28 22:06:12 2016 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 22:06 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-28-22.06.html | 22:06 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-28-22.06.txt | 22:06 |
openstack | Log: http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-28-22.06.log.html | 22:06 |
armax | shortest meeting ever | 22:06 |
dasm | LOL | 22:06 |
*** shaohe_feng has joined #openstack-meeting | 22:06 | |
*** uxdanielle has quit IRC | 22:06 | |
amuller | eh | 22:07 |
*** leeantho__ has quit IRC | 22:09 | |
*** diana_clarke has left #openstack-meeting | 22:10 | |
*** asettle has joined #openstack-meeting | 22:10 | |
*** tonytan4ever has quit IRC | 22:10 | |
*** leeantho has joined #openstack-meeting | 22:11 | |
*** dmorita has quit IRC | 22:12 | |
*** hashar_ has quit IRC | 22:13 | |
*** dmorita has joined #openstack-meeting | 22:13 | |
*** dmorita has quit IRC | 22:14 | |
*** dmorita_ has joined #openstack-meeting | 22:14 | |
*** shaohe_feng has quit IRC | 22:15 | |
*** shaohe_feng has joined #openstack-meeting | 22:16 | |
*** asettle has quit IRC | 22:17 | |
*** spotz_zzz is now known as spotz | 22:17 | |
*** yamamoto has joined #openstack-meeting | 22:22 | |
*** boden has left #openstack-meeting | 22:22 | |
*** dbecker has joined #openstack-meeting | 22:25 | |
*** shaohe_feng has quit IRC | 22:26 | |
*** shaohe_feng has joined #openstack-meeting | 22:27 | |
*** yamamoto has quit IRC | 22:27 | |
*** krtaylor has quit IRC | 22:31 | |
*** ntpttr- has quit IRC | 22:31 | |
*** dtrainor has quit IRC | 22:31 | |
*** amuller has quit IRC | 22:34 | |
*** shaohe_feng has quit IRC | 22:36 | |
*** ntpttr- has joined #openstack-meeting | 22:36 | |
*** rbak has quit IRC | 22:37 | |
*** dtrainor has joined #openstack-meeting | 22:39 | |
*** egallen has quit IRC | 22:40 | |
*** shaohe_feng has joined #openstack-meeting | 22:41 | |
*** singlethink has quit IRC | 22:41 | |
*** sarob has joined #openstack-meeting | 22:41 | |
*** mickeys has quit IRC | 22:42 | |
*** dtrainor has quit IRC | 22:42 | |
*** dtrainor has joined #openstack-meeting | 22:43 | |
*** sarob has quit IRC | 22:46 | |
*** shaohe_feng has quit IRC | 22:46 | |
*** sarob has joined #openstack-meeting | 22:46 | |
*** yamahata has quit IRC | 22:47 | |
*** shaohe_feng has joined #openstack-meeting | 22:47 | |
*** toddjohn has joined #openstack-meeting | 22:54 | |
*** shaohe_feng has quit IRC | 22:56 | |
*** shaohe_feng has joined #openstack-meeting | 22:57 | |
*** dimtruck is now known as zz_dimtruck | 22:58 | |
*** sindhu has joined #openstack-meeting | 22:58 | |
*** claudiub|2 has joined #openstack-meeting | 22:59 | |
*** toddjohn has quit IRC | 22:59 | |
*** yamahata has joined #openstack-meeting | 23:00 | |
*** roxanagh_ has joined #openstack-meeting | 23:01 | |
*** fnaval has joined #openstack-meeting | 23:02 | |
*** zhonghua-lee has quit IRC | 23:02 | |
*** fnaval has quit IRC | 23:02 | |
*** mickeys has joined #openstack-meeting | 23:03 | |
*** fnaval has joined #openstack-meeting | 23:03 | |
*** alyson_ has quit IRC | 23:03 | |
*** zhonghua-lee has joined #openstack-meeting | 23:03 | |
*** JRobinson__ has joined #openstack-meeting | 23:04 | |
*** pradk has quit IRC | 23:04 | |
*** jamesdenton has joined #openstack-meeting | 23:06 | |
*** roxanagh_ has quit IRC | 23:06 | |
*** jamesdenton has quit IRC | 23:06 | |
*** shaohe_feng has quit IRC | 23:07 | |
*** mickeys has quit IRC | 23:07 | |
*** shaohe_feng has joined #openstack-meeting | 23:08 | |
*** tpsilva has quit IRC | 23:08 | |
*** dmorita_ has quit IRC | 23:10 | |
*** dmorita has joined #openstack-meeting | 23:11 | |
*** tonytan4ever has joined #openstack-meeting | 23:11 | |
*** sdague has quit IRC | 23:11 | |
*** tonytan4ever has quit IRC | 23:16 | |
*** emagana has joined #openstack-meeting | 23:16 | |
*** shaohe_feng has quit IRC | 23:17 | |
*** shaohe_feng has joined #openstack-meeting | 23:18 | |
*** andymaier has joined #openstack-meeting | 23:18 | |
*** Apoorva_ has quit IRC | 23:18 | |
*** Apoorva has joined #openstack-meeting | 23:19 | |
*** dbecker has quit IRC | 23:19 | |
*** emagana has quit IRC | 23:20 | |
*** bobh has joined #openstack-meeting | 23:21 | |
*** jamesdenton has joined #openstack-meeting | 23:22 | |
*** tonytan4ever has joined #openstack-meeting | 23:23 | |
*** Leom has quit IRC | 23:23 | |
*** yamamoto has joined #openstack-meeting | 23:24 | |
*** jamesden_ has joined #openstack-meeting | 23:24 | |
*** tonytan_brb has joined #openstack-meeting | 23:24 | |
*** toscalix has quit IRC | 23:24 | |
*** ntpttr__ has quit IRC | 23:26 | |
*** mickeys has joined #openstack-meeting | 23:26 | |
*** shaohe_feng has quit IRC | 23:27 | |
*** shaohe_feng has joined #openstack-meeting | 23:28 | |
*** jamesdenton has quit IRC | 23:28 | |
*** tonytan4ever has quit IRC | 23:28 | |
*** yamamoto has quit IRC | 23:29 | |
*** Patifa has joined #openstack-meeting | 23:29 | |
*** bobh has quit IRC | 23:30 | |
*** cknight has quit IRC | 23:30 | |
*** whenry has joined #openstack-meeting | 23:31 | |
*** Guest39997 has quit IRC | 23:31 | |
*** enriquetaso has joined #openstack-meeting | 23:31 | |
*** elopez_ has quit IRC | 23:34 | |
*** jaypipes has quit IRC | 23:35 | |
*** singhj has quit IRC | 23:36 | |
*** shaohe_feng has quit IRC | 23:37 | |
*** sdague has joined #openstack-meeting | 23:38 | |
*** shaohe_feng has joined #openstack-meeting | 23:38 | |
*** singhj has joined #openstack-meeting | 23:39 | |
*** sdague has quit IRC | 23:43 | |
*** toddjohn has joined #openstack-meeting | 23:45 | |
*** hoangcx2 has joined #openstack-meeting | 23:46 | |
*** tochi has joined #openstack-meeting | 23:47 | |
*** hoangcx has quit IRC | 23:47 | |
*** shaohe_feng has quit IRC | 23:48 | |
*** timcline has joined #openstack-meeting | 23:48 | |
*** shaohe_feng has joined #openstack-meeting | 23:48 | |
*** tonytan_brb has quit IRC | 23:52 | |
*** itlinux has joined #openstack-meeting | 23:55 | |
*** shaohe_feng has quit IRC | 23:58 | |
*** whenry has quit IRC | 23:58 | |
*** shaohe_feng has joined #openstack-meeting | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!