Thursday, 2016-07-28

*** thinrichs has joined #openstack-meeting00:00
*** rossella_s has joined #openstack-meeting00:00
thinrichsHi all00:01
thinrichsekcs, ramineni, masahito, aimeeu: courtesy ping00:01
*** hoangcx has quit IRC00:01
ramineni_hi00:01
aimeeuhello!00:01
thinrichs#startmeeting CongressTeamMeeting00:01
openstackMeeting 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
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:01
*** salv-orlando has joined #openstack-meeting00:01
*** openstack changes topic to " (Meeting topic: CongressTeamMeeting)"00:01
openstackThe meeting name has been set to 'congressteammeeting'00:01
*** masahito has joined #openstack-meeting00:01
masahitohi00:01
thinrichsAgenda for today: (i) mascots, (ii) status00:01
thinrichsAnything else?00:02
*** Swami has quit IRC00:02
*** ihrachys has quit IRC00:02
*** thorst_ has joined #openstack-meeting00:02
thinrichsNo ekcs yet.  Maybe we should hold off on the mascot topic.00:02
thinrichsWe need to decide for sure today, so let's not forget.00:03
*** shaohe_feng has quit IRC00:03
thinrichsLet's do status updates.00:03
thinrichs#topic status00:03
*** openstack changes topic to "status (Meeting topic: CongressTeamMeeting)"00:03
thinrichsramineni: want to start?00:03
*** ekcs has joined #openstack-meeting00:03
ramineni_thinrichs: sure00:03
*** shaohe_feng has joined #openstack-meeting00:03
ekcssorry delayed by software weirdness.00:03
ramineni_thinrichs: completed synchronizer migration and horizon plugin model00:04
*** mbound has quit IRC00:04
ramineni_thinrichs: bth looks ready to merge00:04
ramineni_thinrichs: thats it from my side00:04
thinrichsSynchronizer code is merged00:05
*** asettle has quit IRC00:05
ramineni_oh great , havent checked it yet00:05
thinrichsLooks like 1 more typo in the horizon plugin.  Then we should merge it.00:05
*** salv-orlando has quit IRC00:06
ramineni_ok, will have a look00:06
aimeeuvery minor typo (sorry!)00:06
thinrichsramineni: Nice work getting those two big changes in00:06
thinrichsaimeeu: want to go next?00:07
aimeeusure00:07
aimeeuI 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 IRC00:08
aimeeuand I thought a tempest test would be good to test identity v3 in the python-congressclient00:08
aimeeuthat's all for me00:09
thinrichsWe all have trouble getting tempest working.00:09
aimeeuah, good to know - I've disabled the service for now00:09
aimeeuand plan to make code changes and test manually00:09
thinrichsA 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
thinrichsTempest test would also be good00:10
*** thorst_ has quit IRC00:10
aimeeuI'll look into that - thanks for the suggestion!00:10
*** elo has joined #openstack-meeting00:10
thinrichsmasahito: want to go next?00:11
masahitook00:11
masahitoPacemaker RA and its deploy guide for HAHT were merged.00:11
masahitoAnd I pushed first code for lazy datasource driver.00:11
masahitoThe patch got tempest failure, so I'm investigating it.00:12
masahitoThat's from my side.00:12
*** shaohe_feng has quit IRC00:13
thinrichsNeed feedback on the lazy driver?  Or is it too early?00:13
*** shaohe_feng has joined #openstack-meeting00:14
masahitoNeed review.00:14
thinrichsWill do.00:14
masahitoThe tempest failure is in ha tests that we all hit.00:14
*** banix has joined #openstack-meeting00:15
thinrichsOkay.  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 it00:17
thinrichsekcs: want to go next?00:17
thinrichsramineni: good to know.  Thought it was all pretty solid at this point.00:18
ekcssure.00:18
ekcsAPI 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
masahitothinrichs: for dse1 test it's reliable, for dse2 test the log don't show the details.00:18
ekcsI 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
thinrichsmasahito: got it.00:19
thinrichsekcs: what did you conclude about the push data persistence?00:19
ekcsUsing 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
thinrichsInteresting stats00:21
ekcsas we keep increasing table size, writing whole json string will eventually lose to adding/deleting rows. I think it happens around 1000kb.00:21
thinrichsSo if people are pushing 1MB+ of data, it makes more sense to compute the diff and update individual rows in the DB.00:22
thinrichsDid you think through the issues around upgrade?00:23
*** shaohe_feng has quit IRC00:23
ekcsyes. 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-meeting00:24
ekcsfor 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 IRC00:26
ekcsand 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 rows00:26
thinrichsNot sure I follow this exactly.00:26
thinrichsSo there's 1 DB table for all push datasources00:26
thinrichsThat table has a column for datasource-name, datasource-state-as-a-string00:27
ekcsyes.00:27
thinrichsWhere do the deltas come in?00:27
ekcsand 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-meeting00:28
ekcsin another table <dsname, update #, ds-state-delta-as-string>00:29
*** longxiongqiu has joined #openstack-meeting00:29
ekcsthe key is that this is usually a write only store, we very rarely expect to have to read.00:29
thinrichsThen when we write a new snapshot we delete all the rows in that table for that dsname00:30
ekcsyes.00:30
*** toddjohn has joined #openstack-meeting00:30
thinrichsAnother thought… we could add a col to the original table for 'diff-since-last-snapshot-string'00:30
thinrichsand then update that each time00:30
*** vdeolali has joined #openstack-meeting00:31
ekcsyea that’s a good option to consider too.00:31
thinrichsHmmm…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 IRC00:31
ekcsthe 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
thinrichsI'd imagine starting with just writing the snapshot as a string.  Then optimizing as needed.00:33
ekcsyup my thought too.00:33
*** toddjohn has quit IRC00:33
thinrichsekcs: 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-meeting00:33
*** shaohe_feng has quit IRC00:34
thinrichsekcs: Thanks for digging into that!00:34
ekcsone problem. to store long string in column,00:34
*** longxiongqiu has quit IRC00:34
ekcswe need to use special DB specific datatype (longtext, clob, etc.).00:34
*** shaohe_feng has joined #openstack-meeting00:34
ekcsso we may lose the ability to arbitrarily swap mysql for postgres etc.00:34
ekcsi’ll need to look at that deeper.00:34
thinrichsIs that supported by oslo-db?00:35
-masahito- I think it's supported by oslo-db.00:35
ekcsI think so (supported by sqlalchemy). but maybe I need to make sure.00:35
ekcsfor sure supported by sqlalchemy.00:35
ekcsjust not sure if the oslo-db version restricts.00:35
thinrichsoslo-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
ekcsok.00:36
ekcsi’ll make sure. that’s all from me.00:36
*** emagana has joined #openstack-meeting00:37
thinrichsThanks!00:37
thinrichsHere's my status update.00:37
*** shu-mutou-AFK is now known as shu-mutou00:37
thinrichsI've tweaked my patch that disables DSE1 a bit.  Had mistakenly removed some tests when moving tests2 to tests.00:38
thinrichsNow I'm working on rebasing the patch on top of the few that went in recently.00:39
thinrichsEnough changes that it's nontrivial.00:39
thinrichsThis patch is large by its nature.00:39
thinrichsFuture patches that finish off disabling dse1 will be easier to contain00:39
thinrichsSo I'm looking forward to getting this merged00:40
thinrichsThat's it from me.00:40
thinrichs2 more topics…00:41
thinrichss/topics/agenda items/00:41
thinrichs#topic mascots00:41
*** openstack changes topic to "mascots (Meeting topic: CongressTeamMeeting)"00:41
thinrichsWe need to finalize our mascot decision today.00:41
*** emagana has quit IRC00:41
thinrichsI gave our suggestions to get a little early feedback.  here's what they said...00:41
thinrichsWe're not allowed to choose a specific land item like Aeropagus00:42
thinrichsWe 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-meeting00:43
thinrichsThere were a few lizard-like proposals from other teams, so they might have trouble differentiating a salamander from those.00:43
thinrichsThe Raven seemed somewhat unique.00:43
thinrichsNo one chose a monkey/baboon00:43
*** thorst_ has quit IRC00:44
*** shaohe_feng has quit IRC00:44
thinrichsThey say all of those will work.00:44
*** thorst_ has joined #openstack-meeting00:44
thinrichsPersonally I'm leaning toward raven and then salamander00:44
thinrichsAny other thoughts?00:44
*** shaohe_feng has joined #openstack-meeting00:45
ekcsI think so too.00:45
aimeeuI agree with the raven00:45
*** zhangshuai has joined #openstack-meeting00:45
masahitoI agree the order.00:45
ekcsbut I really really don’t want a monkey or baboon.00:45
thinrichsekcs: agreed00:45
ekcswe have to submit three things right?00:46
thinrichsekcs: agreed on the no baboon00:46
thinrichsI think just 2 is fine00:46
thinrichsThey're going to pick 1, after all00:46
thinrichsAnd they've already told us both the raven and salamander are fine00:46
ekcsgot it.00:47
masahito+100:47
*** pvaneck has quit IRC00:47
thinrichsOkay, so I'll send them (1) raven and (2) salamander00:47
thinrichsfinal topic…00:48
thinrichs#topic Barcelona00:48
*** openstack changes topic to "Barcelona (Meeting topic: CongressTeamMeeting)"00:48
thinrichsVoting for talks is open.00:48
* thinrichs looking for link00:48
thinrichs#link https://www.openstack.org/summit/barcelona-2016/vote-for-speakers/00:48
thinrichsIf you search for Congress on the left-hand side, you can see the talks people have submitted00:49
thinrichs#topic open discussion00:49
*** openstack changes topic to "open discussion (Meeting topic: CongressTeamMeeting)"00:49
thinrichsAnything we should discuss?00:49
thinrichsaimeeu: one thing before I forget.  ramineni and I ran across some low-hanging fruit you might be interested in.00:50
aimeeuexcellent00:50
*** hoangcx2 has quit IRC00:50
thinrichswe 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
aimeeuI could use a morale-boosting easy fix! (and one that lets me read lots of code)00:51
thinrichsaimeeu: :)00:51
aimeeuhas a bug been created?00:51
thinrichsNot yet.00:52
*** thorst_ has quit IRC00:52
ekcsany 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
aimeeuthinrichs: I can create the bug and assign it to myself.00:52
thinrichsekcs: does that Py2 vs Py3 behavior sound right to you?  I don't understand why we didn't hit the e.message problem before this00:52
thinrichsaimeeu: that would be great!00:53
ekcsyes that’s a py2vs3 thing.00:53
ekcsprobbaly because we just haven’t hit those errors in testing.00:53
thinrichsThat's a bit scary.  We use that in like 50 places00:53
*** shaohe_feng has quit IRC00:54
ekcsyea. I think most people still do manual testing in py200:54
*** shaohe_feng has joined #openstack-meeting00:55
thinrichsekcs: that's the synchronizer test.  All kinds of potential race conditions I'd imagine.00:55
*** mtanino has joined #openstack-meeting00:55
*** cdelatte has quit IRC00:55
ekcsI 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
thinrichsramineni's the expert here00:56
ramineni_:) , not sure , ill have a look at it today , is it because of new synchronizer code mergd?00:57
ekcsoh 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 anything00:58
ekcsgreat thanks!00:58
thinrichsOut of time for today.  Thanks all!00:59
masahitothanks all00:59
aimeeubye!00:59
thinrichs#endmeeting01:01
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"01:01
openstackMeeting ended Thu Jul 28 01:01:08 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)01:01
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-28-00.01.html01:01
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-28-00.01.txt01:01
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-28-00.01.log.html01:01
*** toddjohn has quit IRC01:01
*** ronghui has quit IRC01:01
*** gyee has quit IRC01:03
*** zhhuabj has quit IRC01:03
*** mbound has joined #openstack-meeting01:03
*** shaohe_feng has quit IRC01:04
*** shaohe_feng has joined #openstack-meeting01:05
*** mbound has quit IRC01:08
*** zzxwill has joined #openstack-meeting01:10
*** yamamoto_ has joined #openstack-meeting01:12
*** sindhu has joined #openstack-meeting01:13
*** david-lyle_ has quit IRC01:14
*** dmacpher has joined #openstack-meeting01:14
*** shaohe_feng has quit IRC01:15
*** shaohe_feng has joined #openstack-meeting01:15
*** fnaval has quit IRC01:16
*** thinrichs has quit IRC01:16
*** zhhuabj has joined #openstack-meeting01:16
*** ramineni_ has quit IRC01:18
*** Sukhdev has quit IRC01:18
*** bobh has joined #openstack-meeting01:19
*** vdeolali has quit IRC01:20
*** ronghui has joined #openstack-meeting01:22
*** bobh has quit IRC01:23
*** gcb has quit IRC01:24
*** Apoorva has joined #openstack-meeting01:24
*** banix has quit IRC01:24
*** JRobinson__ has joined #openstack-meeting01:24
*** esberglu has joined #openstack-meeting01:24
*** gcb has joined #openstack-meeting01:25
*** shaohe_feng has quit IRC01:25
*** zhurong has joined #openstack-meeting01:25
*** thorst_ has joined #openstack-meeting01:25
*** shaohe_feng has joined #openstack-meeting01:26
*** toddjohn has joined #openstack-meeting01:26
*** sdague has quit IRC01:29
*** shashank_hegde has quit IRC01:30
*** banix has joined #openstack-meeting01:30
*** roxanaghe has joined #openstack-meeting01:32
*** longxiongqiu has joined #openstack-meeting01:32
*** thorst_ has quit IRC01:34
*** shaohe_feng has quit IRC01:35
*** shaohe_feng has joined #openstack-meeting01:35
*** Apoorva has quit IRC01:36
*** roxanaghe has quit IRC01:36
*** masahito has quit IRC01:39
*** esberglu has quit IRC01:45
*** shaohe_feng has quit IRC01:45
*** shaohe_feng has joined #openstack-meeting01:46
*** s3wong has quit IRC01:47
*** mriedem has quit IRC01:49
*** egallen has joined #openstack-meeting01:49
*** zhhuabj has quit IRC01:50
*** zz_dimtruck is now known as dimtruck01:52
*** karthikp_ has quit IRC01:54
*** esberglu has joined #openstack-meeting01:55
*** shaohe_feng has quit IRC01:56
*** liamji has joined #openstack-meeting01:56
*** dmorita_ has quit IRC01:56
*** shaohe_feng has joined #openstack-meeting01:56
*** woodster_ has quit IRC01:59
*** longxiongqiu has quit IRC01:59
*** coolsvap has joined #openstack-meeting01:59
*** banix has quit IRC02:00
*** RuiChen has quit IRC02:02
*** esberglu has quit IRC02:02
*** zhhuabj has joined #openstack-meeting02:03
*** thorst_ has joined #openstack-meeting02:04
*** shaohe_feng has quit IRC02:06
*** baoli has quit IRC02:06
*** shaohe_feng has joined #openstack-meeting02:06
*** amotoki has quit IRC02:10
*** thorst_ has quit IRC02:10
*** unicell has quit IRC02:10
*** jungleboyj has joined #openstack-meeting02:11
*** iyamahat_ has quit IRC02:12
*** yamahata has quit IRC02:13
*** banix has joined #openstack-meeting02:13
*** esberglu has joined #openstack-meeting02:13
*** ajmiller has joined #openstack-meeting02:13
*** egallen has quit IRC02:14
*** dimtruck is now known as zz_dimtruck02:15
*** shaohe_feng has quit IRC02:16
*** shaohe_feng has joined #openstack-meeting02:17
*** ajmiller has quit IRC02:22
*** esberglu has quit IRC02:24
*** toddjohn has quit IRC02:24
*** ayoung has quit IRC02:25
*** shaohe_feng has quit IRC02:26
*** ayoung has joined #openstack-meeting02:27
*** shaohe_feng has joined #openstack-meeting02:27
*** AmitGalitz has joined #openstack-meeting02:28
*** rwsu has quit IRC02:28
*** zzxwill has quit IRC02:30
*** zzxwill has joined #openstack-meeting02:30
*** toddjohn has joined #openstack-meeting02:31
*** yamamoto_ has quit IRC02:31
*** amotoki has joined #openstack-meeting02:32
*** ayoung has quit IRC02:32
*** roxanaghe has joined #openstack-meeting02:33
*** amotoki has quit IRC02:36
*** sarob has joined #openstack-meeting02:36
*** ayoung has joined #openstack-meeting02:36
*** shaohe_feng has quit IRC02:37
*** roxanaghe has quit IRC02:37
*** shaohe_feng has joined #openstack-meeting02:37
*** xenogear has quit IRC02:38
*** wcriswelc has quit IRC02:38
*** nk2527_ has quit IRC02:38
*** rwsu has joined #openstack-meeting02:40
*** thorst_ has joined #openstack-meeting02:40
*** amotoki has joined #openstack-meeting02:40
*** sarob has quit IRC02:41
*** thorst_ has quit IRC02:41
*** shaohe_feng has quit IRC02:47
*** shaohe_feng has joined #openstack-meeting02:47
*** yuanying has quit IRC02:47
*** gcb has quit IRC02:51
*** xenogear has joined #openstack-meeting02:53
*** jrist has quit IRC02:55
*** agireud has quit IRC02:55
*** myoung has quit IRC02:55
*** zhurong has quit IRC02:56
*** shaohe_feng has quit IRC02:57
*** shaohe_feng has joined #openstack-meeting02:57
*** agireud has joined #openstack-meeting02:58
*** amotoki has quit IRC03:01
*** zhurong has joined #openstack-meeting03:03
*** nk2527 has joined #openstack-meeting03:06
*** shaohe_feng has quit IRC03:07
*** shaohe_feng has joined #openstack-meeting03:08
*** amotoki has joined #openstack-meeting03:10
*** esberglu has joined #openstack-meeting03:11
*** vishwanathj has joined #openstack-meeting03:11
*** fnaval has joined #openstack-meeting03:13
*** fnaval has quit IRC03:14
*** ayoung has quit IRC03:14
*** fnaval has joined #openstack-meeting03:14
*** sdake has joined #openstack-meeting03:15
*** tonytan4ever has joined #openstack-meeting03:17
*** shaohe_feng has quit IRC03:18
*** shaohe_feng has joined #openstack-meeting03:18
*** emagana has joined #openstack-meeting03:19
*** salv-orlando has joined #openstack-meeting03:20
*** bobh has joined #openstack-meeting03:21
*** emagana has quit IRC03:24
*** sdake_ has joined #openstack-meeting03:25
*** Liuqing has joined #openstack-meeting03:26
*** shz has joined #openstack-meeting03:26
*** sdake has quit IRC03:27
*** shaohe_feng has quit IRC03:28
*** tochi has quit IRC03:28
*** Kevin_Zheng has joined #openstack-meeting03:28
*** shaohe_feng has joined #openstack-meeting03:28
*** shihanzhang has quit IRC03:29
*** salv-orlando has quit IRC03:30
*** sankarshan_away is now known as sankarshan03:31
*** thinrichs has joined #openstack-meeting03:33
*** mickeys has quit IRC03:33
*** thinrichs has left #openstack-meeting03:34
*** esberglu has quit IRC03:34
*** mickeys has joined #openstack-meeting03:34
*** toddjohn has quit IRC03:35
*** shaohe_feng has quit IRC03:38
*** mickeys has quit IRC03:38
*** shaohe_feng has joined #openstack-meeting03:39
*** mtanino has quit IRC03:39
*** sandanar has joined #openstack-meeting03:40
*** anilvenkata has joined #openstack-meeting03:40
*** anilvenkata has quit IRC03:44
*** vishnoianil has quit IRC03:45
*** david-lyle_ has joined #openstack-meeting03:45
*** sdake_ has quit IRC03:46
*** sdake has joined #openstack-meeting03:46
*** zzxwill has quit IRC03:47
*** shaohe_feng has quit IRC03:48
*** shaohe_feng has joined #openstack-meeting03:49
*** bill_az has quit IRC03:49
*** yuanying has joined #openstack-meeting03:50
*** ljxiash has joined #openstack-meeting03:53
*** david-lyle_ is now known as david-lyle03:54
*** dmorita has joined #openstack-meeting03:57
*** liusheng has joined #openstack-meeting03:58
*** shaohe_feng has quit IRC03:59
*** julim has quit IRC03:59
*** shaohe_feng has joined #openstack-meeting03:59
*** ramineni_ has joined #openstack-meeting03:59
*** bill_az has joined #openstack-meeting04:01
*** tochi has joined #openstack-meeting04:01
*** dmorita has quit IRC04:02
*** julim has joined #openstack-meeting04:02
*** julim has quit IRC04:02
*** links has joined #openstack-meeting04:03
*** david-lyle has quit IRC04:07
*** shaohe_feng has quit IRC04:09
*** shaohe_feng has joined #openstack-meeting04:10
*** david-lyle has joined #openstack-meeting04:11
*** JRobinson__ is now known as JRobinson__afk04:15
*** Sukhdev has joined #openstack-meeting04:15
*** shaohe_feng has quit IRC04:19
*** IlyaG has joined #openstack-meeting04:20
*** shaohe_feng has joined #openstack-meeting04:20
*** bobh has quit IRC04:23
*** fnaval has quit IRC04:25
*** shaohe_feng has quit IRC04:29
*** harlowja_at_home has joined #openstack-meeting04:30
*** shaohe_feng has joined #openstack-meeting04:30
*** zhhuabj has quit IRC04:32
*** gcb has joined #openstack-meeting04:33
*** ramineni_ has left #openstack-meeting04:34
*** shaohe_feng has quit IRC04:40
*** shaohe_feng has joined #openstack-meeting04:40
*** bill_az has quit IRC04:44
*** zhhuabj has joined #openstack-meeting04:46
*** shaohe_feng has quit IRC04:50
*** shaohe_feng has joined #openstack-meeting04:51
*** shashank_hegde has joined #openstack-meeting04:51
*** banix has quit IRC04:55
*** muawiakhan has joined #openstack-meeting04:55
*** Sukhdev has quit IRC04:58
*** IlyaG has quit IRC04:58
*** csomerville has joined #openstack-meeting04:59
*** cody-somerville has quit IRC04:59
*** shaohe_feng has quit IRC05:00
*** shaohe_feng has joined #openstack-meeting05:00
*** ronghui has quit IRC05:01
*** jrist has joined #openstack-meeting05:03
*** Apoorva has joined #openstack-meeting05:03
*** Apoorva has quit IRC05:06
*** khushbu has joined #openstack-meeting05:07
*** fnaval has joined #openstack-meeting05:09
*** flwang1 has quit IRC05:09
*** zhhuabj has quit IRC05:09
*** asettle has joined #openstack-meeting05:10
*** fnaval has quit IRC05:10
*** shaohe_feng has quit IRC05:10
*** fnaval has joined #openstack-meeting05:11
*** shaohe_feng has joined #openstack-meeting05:11
*** ljxiash has quit IRC05:11
*** shashank_hegde has quit IRC05:11
*** ljxiash has joined #openstack-meeting05:11
*** asettle has quit IRC05:14
*** ronghui has joined #openstack-meeting05:15
*** ljxiash has quit IRC05:16
*** sandanar has quit IRC05:16
*** sridharg has joined #openstack-meeting05:20
*** shaohe_feng has quit IRC05:21
*** shaohe_feng has joined #openstack-meeting05:21
*** zzxwill has joined #openstack-meeting05:22
*** unicell has joined #openstack-meeting05:24
*** bobh has joined #openstack-meeting05:24
*** JRobinson__afk is now known as JRobinson__05:26
*** JRobinson__ has quit IRC05:28
*** bobh has quit IRC05:29
*** JRobinson__ has joined #openstack-meeting05:30
*** zhhuabj has joined #openstack-meeting05:31
*** shaohe_feng has quit IRC05:31
*** b1airo has quit IRC05:31
*** shaohe_feng has joined #openstack-meeting05:31
*** b1airo has joined #openstack-meeting05:31
*** rbrady has quit IRC05:34
*** ljxiash has joined #openstack-meeting05:36
*** khushbu has quit IRC05:36
*** iyamahat has joined #openstack-meeting05:37
*** anilvenkata has joined #openstack-meeting05:38
*** shaohe_feng has quit IRC05:41
*** gongysh has joined #openstack-meeting05:41
*** shaohe_feng has joined #openstack-meeting05:42
*** iyamahat has quit IRC05:43
*** fnaval has quit IRC05:47
*** egallen has joined #openstack-meeting05:47
*** jprovazn has joined #openstack-meeting05:47
*** amotoki_ has joined #openstack-meeting05:48
*** sarob has joined #openstack-meeting05:49
*** unicell has quit IRC05:49
*** unicell has joined #openstack-meeting05:50
*** khushbu has joined #openstack-meeting05:50
*** amotoki has quit IRC05:51
*** b1airo has quit IRC05:51
*** shaohe_feng has quit IRC05:51
*** shaohe_feng has joined #openstack-meeting05:52
*** sarob has quit IRC05:53
*** yamahata has joined #openstack-meeting05:55
*** gongysh has quit IRC05:58
*** manikanta_tadi has joined #openstack-meeting06:01
*** shaohe_feng has quit IRC06:02
*** david-lyle has quit IRC06:02
*** shaohe_feng has joined #openstack-meeting06:02
*** asettle has joined #openstack-meeting06:03
*** christx2 has quit IRC06:04
*** dmacpher has quit IRC06:06
*** aeng has quit IRC06:06
*** asettle has quit IRC06:08
*** roxanaghe has joined #openstack-meeting06:12
*** shaohe_feng has quit IRC06:12
*** shaohe_feng has joined #openstack-meeting06:13
*** saju_m has quit IRC06:13
*** harlowja_at_home has quit IRC06:16
*** roxanaghe has quit IRC06:16
*** pcaruana has joined #openstack-meeting06:17
*** adiantum has joined #openstack-meeting06:18
*** dmacpher has joined #openstack-meeting06:18
*** gongysh has joined #openstack-meeting06:19
*** nkrinner_afk is now known as nkrinner06:19
*** shaohe_feng has quit IRC06:22
*** shaohe_feng has joined #openstack-meeting06:23
*** bobh has joined #openstack-meeting06:25
*** yamamoto_ has joined #openstack-meeting06:27
*** yuval has joined #openstack-meeting06:28
*** egallen has quit IRC06:30
*** Daisy has joined #openstack-meeting06:30
*** bobh has quit IRC06:31
*** muawiakhan has quit IRC06:31
*** gongysh has quit IRC06:32
*** shaohe_feng has quit IRC06:32
*** sandanar has joined #openstack-meeting06:33
*** shaohe_feng has joined #openstack-meeting06:33
*** rbartal has joined #openstack-meeting06:36
*** mickeys has joined #openstack-meeting06:36
*** tonytan4ever has quit IRC06:38
*** sridharg has quit IRC06:40
*** mickeys has quit IRC06:40
*** Daisy has quit IRC06:42
*** tesseract- has joined #openstack-meeting06:42
*** sdake has quit IRC06:42
*** shaohe_feng has quit IRC06:43
*** shaohe_feng has joined #openstack-meeting06:43
*** ljxiash has quit IRC06:46
*** ljxiash has joined #openstack-meeting06:47
*** salv-orlando has joined #openstack-meeting06:48
*** vishwanathj has quit IRC06:49
*** Daisy has joined #openstack-meeting06:49
*** ljxiash has quit IRC06:51
*** shaohe_feng has quit IRC06:53
*** shaohe_feng has joined #openstack-meeting06:53
*** egallen has joined #openstack-meeting06:55
*** fredrik has joined #openstack-meeting06:56
*** jlanoux has joined #openstack-meeting06:56
*** asettle has joined #openstack-meeting06:57
*** JRobinson__ has quit IRC06:58
*** jlanoux has quit IRC06:58
*** jlanoux has joined #openstack-meeting06:59
*** asettle has quit IRC07:01
*** Daisy has quit IRC07:02
*** jtomasek has joined #openstack-meeting07:02
*** comay has quit IRC07:02
*** Daisy has joined #openstack-meeting07:02
*** irenab has joined #openstack-meeting07:03
*** shaohe_feng has quit IRC07:03
*** shaohe_feng has joined #openstack-meeting07:04
*** vishnoianil has joined #openstack-meeting07:04
*** Fdaisuke_ has joined #openstack-meeting07:05
*** ljxiash has joined #openstack-meeting07:05
*** Daisy has quit IRC07:07
*** Fdaisuke has quit IRC07:07
*** akuznetsov has joined #openstack-meeting07:11
*** adiantum has quit IRC07:12
*** Daisy has joined #openstack-meeting07:12
*** roxanaghe has joined #openstack-meeting07:13
*** permalac has joined #openstack-meeting07:13
*** shaohe_feng has quit IRC07:13
*** shaohe_feng has joined #openstack-meeting07:14
*** Na3iL has joined #openstack-meeting07:15
*** roxanaghe has quit IRC07:17
*** pnavarro has joined #openstack-meeting07:17
*** agireud has quit IRC07:17
*** sridharg has joined #openstack-meeting07:18
*** comay has joined #openstack-meeting07:18
*** egallen has quit IRC07:19
*** egallen has joined #openstack-meeting07:19
*** ihrachys has joined #openstack-meeting07:21
*** nmagnezi has joined #openstack-meeting07:22
*** dmacpher has quit IRC07:22
*** shaohe_feng has quit IRC07:24
*** ljxiash has quit IRC07:24
*** shaohe_feng has joined #openstack-meeting07:24
*** gongysh has joined #openstack-meeting07:25
*** agireud has joined #openstack-meeting07:26
*** bobh has joined #openstack-meeting07:27
*** tonytan4ever has joined #openstack-meeting07:29
*** flwang1 has joined #openstack-meeting07:29
*** pece has joined #openstack-meeting07:29
*** geguileo has left #openstack-meeting07:30
*** mikelk has joined #openstack-meeting07:30
*** fzdarsky has joined #openstack-meeting07:30
*** bobh has quit IRC07:32
*** asettle has joined #openstack-meeting07:33
*** RuiChen has joined #openstack-meeting07:34
*** Daisy has quit IRC07:34
*** shaohe_feng has quit IRC07:34
*** shaohe_feng has joined #openstack-meeting07:34
*** lezbar has joined #openstack-meeting07:34
*** muawiakhan has joined #openstack-meeting07:36
*** muawiakhan has quit IRC07:36
*** akuznets_ has joined #openstack-meeting07:38
*** akuznetsov has quit IRC07:38
*** asettle has quit IRC07:38
*** ihrachys has quit IRC07:40
*** khushbu has quit IRC07:41
*** mikelk has quit IRC07:42
*** Daisy has joined #openstack-meeting07:43
*** shaohe_feng has quit IRC07:44
*** shaohe_feng has joined #openstack-meeting07:44
*** sarob has joined #openstack-meeting07:49
*** armax has quit IRC07:50
*** rbrady has joined #openstack-meeting07:50
*** hashar has joined #openstack-meeting07:51
*** emagana has joined #openstack-meeting07:51
*** mikelk has joined #openstack-meeting07:51
*** andymaier has joined #openstack-meeting07:51
*** phil_ has joined #openstack-meeting07:53
*** phil_ is now known as Guest9072407:54
*** sarob has quit IRC07:54
*** shaohe_feng has quit IRC07:54
*** zzxwill has quit IRC07:54
*** shaohe_feng has joined #openstack-meeting07:55
*** emagana has quit IRC07:56
*** asettle has joined #openstack-meeting07:56
*** yuriy_n17 has left #openstack-meeting07:57
*** rossella_s has quit IRC07:59
*** saggi has joined #openstack-meeting08:00
*** rossella_s has joined #openstack-meeting08:00
*** asettle has quit IRC08:01
*** akuznets_ has quit IRC08:01
*** e0ne has joined #openstack-meeting08:01
*** matrohon has joined #openstack-meeting08:01
*** salv-orlando has quit IRC08:01
*** akuznetsov has joined #openstack-meeting08:03
*** shaohe_feng has quit IRC08:05
*** andymaier has quit IRC08:05
*** shaohe_feng has joined #openstack-meeting08:05
*** zzxwill has joined #openstack-meeting08:07
*** _Fdaisuke_ has joined #openstack-meeting08:09
*** Fdaisuke_ has quit IRC08:10
*** obondarev has joined #openstack-meeting08:11
*** hparekh has quit IRC08:11
*** reedip has quit IRC08:11
*** toscalix has joined #openstack-meeting08:12
*** shu-mutou has quit IRC08:13
*** akuznetsov has quit IRC08:13
*** Daisy has quit IRC08:14
*** shaohe_feng has quit IRC08:15
*** shaohe_feng has joined #openstack-meeting08:16
*** Daisy has joined #openstack-meeting08:16
*** yassine has joined #openstack-meeting08:17
*** vponomaryov has joined #openstack-meeting08:17
*** yassine is now known as Guest3999708:17
*** hparekh has joined #openstack-meeting08:24
*** shaohe_feng has quit IRC08:25
*** permalac has quit IRC08:26
*** permalac has joined #openstack-meeting08:26
*** ygbo has joined #openstack-meeting08:27
*** reedip has joined #openstack-meeting08:27
*** marekd2 has joined #openstack-meeting08:27
*** shaohe_feng has joined #openstack-meeting08:28
*** bobh has joined #openstack-meeting08:29
*** hashar has quit IRC08:29
*** hashar has joined #openstack-meeting08:29
*** khushbu_ has joined #openstack-meeting08:30
*** r-mibu has quit IRC08:31
*** bobh has quit IRC08:33
*** numans has joined #openstack-meeting08:34
*** otherwiseguy has quit IRC08:34
*** shaohe_feng has quit IRC08:35
*** tiantian has quit IRC08:35
*** shaohe_feng has joined #openstack-meeting08:36
*** RuiChen has quit IRC08:36
*** zhongjun_ has quit IRC08:36
*** tiantian has joined #openstack-meeting08:36
*** zhongjun_ has joined #openstack-meeting08:36
*** manikanta_tadi has quit IRC08:39
*** Liuqing_ has joined #openstack-meeting08:39
*** Liuqing has quit IRC08:40
*** r-mibu has joined #openstack-meeting08:41
*** otherwiseguy has joined #openstack-meeting08:43
*** zhhuabj has quit IRC08:43
*** asettle has joined #openstack-meeting08:44
*** asettle has quit IRC08:44
*** asettle has joined #openstack-meeting08:44
*** shaohe_feng has quit IRC08:46
*** saju_m has joined #openstack-meeting08:46
*** zhhuabj has joined #openstack-meeting08:46
*** mickeys has joined #openstack-meeting08:46
*** sambetts|afk is now known as sambetts08:46
*** shaohe_feng has joined #openstack-meeting08:47
*** saggi1 has joined #openstack-meeting08:47
*** saggi has quit IRC08:47
*** amitgandhinz has quit IRC08:51
*** tonytan4ever has quit IRC08:51
*** zhhuabj_ has joined #openstack-meeting08:51
*** amitgandhinz has joined #openstack-meeting08:52
*** acoles_ is now known as acoles08:52
*** khushbu_ has quit IRC08:53
*** andymaier has joined #openstack-meeting08:53
*** zhhuabj has quit IRC08:54
*** nishaYadav has joined #openstack-meeting08:54
*** mickeys has quit IRC08:55
*** mickeys has joined #openstack-meeting08:55
*** shaohe_feng has quit IRC08:56
*** shaohe_feng has joined #openstack-meeting08:57
*** dmorita has joined #openstack-meeting08:57
*** gmann_ has joined #openstack-meeting08:58
*** mickeys has quit IRC09:00
gmann_#startmeeting qa09:00
openstackMeeting 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
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.09:00
*** openstack changes topic to " (Meeting topic: qa)"09:00
openstackThe meeting name has been set to 'qa'09:00
*** roxanaghe has joined #openstack-meeting09:00
gmann_hi, - who's here today?09:00
andreafo/09:00
dmellado\o hi there09:00
vponomaryovhello09:00
gmann_hi everyone09:01
gmann_let's wait if more people join09:01
*** Daisy has quit IRC09:02
*** ronghui has quit IRC09:02
*** dmorita has quit IRC09:02
*** zhhuabj has joined #openstack-meeting09:02
andreafmasayukig, jordanP, afazekas, mkoderer: around?09:02
gmann_masayukig: is joining some openstack event today09:03
gmann_anyways let's start09:03
gmann_#link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Agenda_for_July_28th_2016_.280900_UTC.2909:03
gmann_^^ today agenda09:03
gmann_#topic Newton priorities09:04
*** openstack changes topic to "Newton priorities (Meeting topic: qa)"09:04
gmann_#link https://etherpad.openstack.org/p/newton-qa-newton-priorities09:04
*** roxanaghe has quit IRC09:04
gmann_so we have items there and some of  them in progress09:05
*** zhhuabj_ has quit IRC09:05
gmann_i would like to avoid talking about each item09:05
gmann_if anyone want to update on these09:05
*** asettle has quit IRC09:05
gmann_probably we are going in good shape on those.09:06
*** asettle has joined #openstack-meeting09:06
*** shaohe_feng has quit IRC09:06
dmelladoI think so, althought for the test class hierarchy squash I'll wait for mid cycle09:06
gmann_dmellado: ok09:07
*** lixiaoy1 has joined #openstack-meeting09:07
*** shaohe_feng has joined #openstack-meeting09:07
gmann_yea we can finish may of those there09:07
*** zhhuabj has quit IRC09:07
gmann_if nothing let's move09:07
gmann_#topic Specs Reviews09: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,z09:08
gmann_there no new spec09:08
andreafgmann_: indeed, probably nothing to discuss on this, unless someone as something to bring up09:08
gmann_andreaf: tempest resource is on hold?09:08
gmann_yea09:09
andreafgmann_: oomichi took that over, so I'm not looking at it right now09:09
gmann_andreaf: ohk,09:09
gmann_let's jump to tempest09:09
gmann_#topic Tempest09:10
*** openstack changes topic to "Tempest (Meeting topic: qa)"09:10
gmann_1 is about compute microversion tests09:10
* masayukig is read only mode this time because he's on a train and walking to the event09:10
*** jordanP has joined #openstack-meeting09:10
gmann_Matt have doc update for those as per ML and nova mid cycle discussion09:10
gmann_masayukig: +109:11
gmann_#link https://review.openstack.org/#/c/346092/09:11
gmann_and nova one09:11
gmann_#link https://review.openstack.org/#/c/346080/09:12
*** liamji has quit IRC09:12
*** Daisy has joined #openstack-meeting09:12
gmann_but seems like we need to get conslusion about those in doc first09:12
gmann_because there are some microvesion tests patches which may or may not be needed09:12
*** Guest90724 is now known as preisner09:12
*** claudiub|2 has joined #openstack-meeting09:13
gmann_so i brought this here to hold those microversion patches (touching Nova API/DB only ) till we have clear doc on thsoe09:13
gmann_please provide your opinion on doc patches09:13
andreafgmann_: will do09:13
gmann_andreaf: Thanks.09:14
vponomaryovmanila tempest plugin has support of microversions, if someone is interested may look at it09:14
*** ronghui has joined #openstack-meeting09:14
* afazekas hi09:15
gmann_afazekas: hi09:15
jordanPhi09:15
gmann_vponomaryov: great. actually here question is do we need to implement tests for all microversion?09:15
andreafgmann_: 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 unfortunately09:15
gmann_jordanP: hi09:15
dmelladohi afazekas jordanP09:15
vponomaryovgmann_: we add tests for diff of each new microversion if possible09:15
gmann_andreaf: definitely, we would not add schema which are not tested09:16
gmann_andreaf: but if higher version tests cover those schema then it should be fine09:16
*** shaohe_feng has quit IRC09:16
gmann_as Nova always honor the lower version changes in higher one09:16
*** shaohe_feng has joined #openstack-meeting09:17
*** e0ne has quit IRC09:17
gmann_vponomaryov: yea but sometime whose are duplicate with project functional tests09:17
gmann_if the just change the API/DB layer only09:17
andreafgmann_: yes - the only thing we don't really test is that the lower version where we add the schema is the right one09:17
andreafgmann_: but that's probably not so relevant from a tempest pov09:17
gmann_you mean to tests nothing more is returned in specific version09:18
gmann_andreaf: yea that is nice point09:18
andreafgmann_: 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.3109: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 schema09:19
gmann_andreaf:  yea but without 2.30/31 tests we would not make sure it does not return more attributes than expected09:20
andreafgmann_: correct09:22
andreafgmann_: 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->if09:23
andreafok09:23
gmann_actually that is current proposed in nova and tempest doc patches09:24
vponomaryovall microversions change chema09:24
*** RuiChen has joined #openstack-meeting09:24
vponomaryovthey are added because of change of schema09:24
gmann_vponomaryov: no, it depends on version to version09:25
gmann_vponomaryov: no, there can be any kind of changes09:25
*** permalac has quit IRC09:25
vponomaryovgmann_: change of response code I consider as change of schema too09:25
gmann_vponomaryov: for example, only request schema change or functional change or bug fix09:25
gmann_vponomaryov: yea but not every microversion change response09:26
*** electrofelix has joined #openstack-meeting09:26
vponomaryovit was example09:26
vponomaryovmicroversions are added, when API started behaving differently09:26
*** shaohe_feng has quit IRC09:27
gmann_example  - https://github.com/openstack/nova/blob/master/nova/api/openstack/rest_api_version_history.rst#2709:27
vponomaryovs/started/starts/09:27
gmann_vponomaryov: yea which does not mean change in response only.09:27
*** shaohe_feng has joined #openstack-meeting09:27
gmann_anyways let's review those and merged soon09:28
gmann_next item i want to bring is very simple one09:29
*** reedip has quit IRC09:29
gmann_Removal of Javelin09:29
gmann_#link https://review.openstack.org/#/c/347216/09:29
*** bobh has joined #openstack-meeting09:29
gmann_will be pretty easy.09:29
dmellado+1 from my side, we already marked it as deprecated a while ago09:29
jordanP+109:29
gmann_I still need to create new repo for stress tests and thn remove from tempest09:30
gmann_dmellado: yea its over 6 month09:30
gmann_that'all from my side on Tempest09:31
*** obondarev has quit IRC09:31
andreafgmann_: is javelin going into it's own repo or just dropped?09:31
gmann_andreaf:  just dropped09:31
gmann_andreaf: i did not feel like anybody need so did not added new repo09:31
andreafgmann_: ok09:31
gmann_andreaf: you want talk about client refactor one09:32
jordanPyeah, just drop it09:32
andreafgmann_: are you looking at negative test framework as well?09:32
andreafgmann_: sure09:32
gmann_andreaf:  no, may be in mid cycle we can discuss with mkoderer there :)09:32
*** e0ne has joined #openstack-meeting09:32
andreafgmann_: ok09:32
andreafgmann_: regarding the client manager refactor09:32
gmann_andreaf: i need to review as you updated those i think09:32
andreafgmann_: a few patches merged, but there are a few more https://review.openstack.org/#/q/status:open+branch:master+topic:bp/client-manager-refactor09:33
andreafgmann_: the series is ready from my perspective, I already got some +2 on some of the patches but it could use more attention09:33
*** bobh has quit IRC09: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 others09:34
andreafgmann_: yes, that's probably the key one. I hope I addressed all the comments from you, mtreinish and oomichi on that one09:35
andreafgmann_: I changed it now to a fail fast behaviour in case of bad plugins09:35
gmann_andreaf: Thanks, need to look on those. I will definitely do those 2 tomorrow.09:36
*** obondarev has joined #openstack-meeting09:36
gmann_and get back to you if anything09:36
andreafgmann_: since the service client interface is new, it's better not to be lenient on avoid broken implementations09:36
andreafgmann_: thanks09:36
*** shaohe_feng has quit IRC09:37
dmelladoandreaf: 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 updates09:37
dmelladohttps://review.openstack.org/#/c/334596/09:37
*** shaohe_feng has joined #openstack-meeting09:38
andreafI 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 plugins09:39
*** electrofelix has quit IRC09:39
gmann_andreaf: +1, nice way. we cannot do for all plugin09:39
andreafgmann_: using the new interface should be quite straight-forward09:40
dmelladoandreaf: exactly, that was also my point09:40
gmann_yea09:40
andreafgmann_: one limitation is that only stable clients are available09:40
dmelladoI'd be able to land a few too if needed, though09:40
andreafgmann_: which means that as long as volume, identity and object-storage are stable, they are not available to plugins via the stable interface09:40
gmann_andreaf: yea, that is little nit tricky09:41
gmann_andreaf:  user need to use both way if they want all clients09:41
andreafs/are stable/are not stable09:41
dmelladomaybe we'd need to get more help on getting them stable09:41
gmann_but let's hope we will get those clients as stable soon.09:41
dmelladoAFAIK there are some projects, like manila who were complaning about that09:42
dmelladovponomaryov: 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
vponomaryovdmellado: the reason is some other broken plugins were broken whole test run09:43
dmelladogmann_: :D09:43
vponomaryovs/were broken/were breaking/09:43
gmann_ok let's move09:43
gmann_anything else from anyone09:43
*** yamamoto_ has quit IRC09:43
gmann_vponomaryov: due to setup of plugins on gate as al plugin get setup there?09:43
vponomaryovgmann_: yes, just by fact of their presence09:44
vponomaryovthat is unavoidable09:44
gmann_vponomaryov: no, that is avoidable09:44
gmann_vponomaryov: you can install only your plugin i think in venv09:44
gmann_ironic did?09:44
gmann_I need to check if those are got merged or not09:44
vponomaryovgmann_: it is workaround09:45
gmann_vponomaryov: yea,09:45
*** claudiub|2 has quit IRC09:45
dmelladovponomaryov: gmann_ but as they're know09:45
dmelladoand specifically to manila09:45
dmelladoas you point to an specific commit09:45
dmelladoif you install all plugins09:45
dmelladothings might break, imho09:45
dmellado:\09:45
gmann_yea09:45
vponomaryovwe used to breakage of tempest, sorry09:46
gmann_humm09:46
gmann_let's jump to critical review09:46
dmelladoI really do hope that finishing the stable clients would help on that09:46
gmann_we can skip devstack and dashboard if nothing on those09:46
dmellado+109:46
andreafvponomaryov, dmellado, gmann_: the more stable interface we have the less breakages you may expect09:46
gmann_#topic Critical Reviews09:46
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)"09:46
gmann_right09:47
andreafgmann_: #link https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/client-manager-refactor09:47
dmelladoandreaf: yep, that's why I'm trying to land a few patch series on those too09:47
gmann_any reviews from anyone09:47
*** shaohe_feng has quit IRC09:47
gmann_andreaf:  noted :)09:47
*** shaohe_feng has joined #openstack-meeting09:48
gmann_ok, we have 10 min left , let's move09:48
gmann_#topic Possibility to enable/disable external plugins09:48
*** openstack changes topic to "Possibility to enable/disable external plugins (Meeting topic: qa)"09:48
gmann_vponomaryov: your one.09:48
vponomaryovI 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
vponomaryovIt has two pros:09:49
vponomaryov- We can ignore undesired plugins09:49
vponomaryov- We can avoid presence of tests from dozens of undesired projects in our generated test list.09:49
vponomaryovSo, I would like to get opinions on it.09:49
gmann_vponomaryov: and it will do this while loading plugin?09:50
andreafvponomaryov: ignore tests is something you can already do via regex, just pick the tests from your plugin09:50
vponomaryovgmann_: it allows us to influence loading of any plugin09:50
dmelladovponomaryov: I assume you mean a plugin breaking your one, isn't it?09:50
andreafvponomaryov: I'm not against skipping plugins in general, but I think it's a bit of a workaround09:50
vponomaryovandreaf: false, tests regex is far away of step when plugins are disabled09:51
*** manikanta_tadi has joined #openstack-meeting09:51
andreafvponomaryov: and I fear it will reduce the pressure on broken plugins to be fixed09:51
gmann_vponomaryov: then it is while loading the tests?09:51
vponomaryovgmann_: loading plugins09:51
vponomaryovgmann_: before it09:51
jordanPwhy don't use just start only the tests you are interested in running, like: tox -e all-plugin -- manila.tests ?09:51
gmann_vponomaryov: humm09:51
jordanPah ok, got it09:51
*** jschwarz is now known as jschwarz|afk09:51
dmelladoalso, what we were discussing before, wouldn't a solution -workaround too- have a venv containging only your desired plugins?09:52
dmelladovponomaryov: ^^09:52
gmann_jordanP: actually issue is loading of tests from other plugin if they import error09:52
vponomaryov jordanP: because lots of redundant stuff is performed, if not broken at all09:52
jordanPyeah09:52
vponomaryovdmellado: I consider venv-based part as workaround09:52
andreafgmann_, jordanP: plugins should not do things at import time, same as tempest - so those should be fixed09:53
vponomaryovdmellado: we should be able to use site-package-based plugins09:53
jordanPI am not sure it's a good idea, broken plugins should be fixed or not installed at all...09:53
dmelladojordanP: that might not be possible for in-tree packages09:53
andreafjordanP: yes that's my feeling too09:53
vponomaryov jordanP: people install packages with some lugins, not just plugins09:53
jordanPI think we wanted/want to move away from the proliferation of virtualenvs required to run tempest09:53
gmann_jordanP: andreaf exactly. me too same feeling. they should be correct one or do not install09:53
dmelladogmann_: but again09:54
vponomaryovjordanP: I would like to not install some plugins of some packages, but it requires hacking only09:54
*** ihrachys has joined #openstack-meeting09:54
dmelladohow would you avoid having a plugin installed09:54
dmelladoif it comes with the in-tree project09:54
dmelladosuch as the neutron one09:54
dmellado?09:54
vponomaryovin proposed commit I just allow to ignore it in tempest09:54
dmelladoyou might end up in a situation where if you don't use venv, you'll have quite a few plugins from start09:54
gmann_dmellado: then do not install neutron.09:54
*** saggi1 has quit IRC09:54
jordanPif neutron's plugin is broken, then they have a big issue09:54
andreafdmellado: one more reason to have the plugin in a dedicated reop09:54
dmelladoandreaf: I do agree on that09:55
gmann_venv things are very nice here.09:55
dmelladoand I'm trying to push it that way09:55
andreafs/reop/repo09:55
*** iyamahat has joined #openstack-meeting09:55
dmelladobut for instance I found some similar issue with the ironic plugin09:55
dmelladowhich was even breaking testr list-tests09:55
gmann_because tempest should load everything it detect09:55
dmelladodue to it trying to get credentials while it, which is quite weird09:55
vponomaryovgmann_: we should be able to disable "load everything" that is the point09:55
dmelladoso I think that this could come in handy09:55
vponomaryovgmann_: it is testing tool and shoudl be flexible enough09:56
vponomaryovto serve lots of possible needs09:56
andreafdmellado, vponomaryov: plugins should not do things at import time, because that may break discovery09:56
*** jordanP_ has joined #openstack-meeting09:56
dmelladoandreaf: I do agree on that, but I'm just thinking on a system when you'll end up not wanting to use venv09:56
*** mbound has joined #openstack-meeting09:56
gmann_vponomaryov: but its all like my distribution. and what i installed should be in working condition instead of skiping those during runtime09:56
andreafvponomaryov: as I said I'm not opposed to the idea, but I'd like to make sure issues in plugins are fixed09:57
dmelladowhile at the same time isolating/skipping plugins09:57
dmelladoandreaf: so you're fearing that with this, people would just don't care09:57
vponomaryovandreaf: default behaviour is to load all09:57
vponomaryovandreaf: "possibility" is added09:57
*** shaohe_feng has quit IRC09:57
vponomaryovandreaf: possibility to disable some09:57
vponomaryovplugins09:57
dmelladogmann_: I'll ask you about the way you handle plugins later, don't want to spam here09:58
gmann_dmellado: sure09:58
*** shaohe_feng has joined #openstack-meeting09: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 there09:58
*** yamahata has quit IRC09:58
gmann_but i also still feel its all installation of system09:58
dmelladojordanP_: that could be another option09:59
gmann_jordanP_: might be not good, i tried this before :)09:59
dmelladogmann_: and what happened?09:59
gmann_jordanP_: it might hide lot of issues in plugin09:59
andreafjordanP_: sure that's an option, but that would make us even more lenient on broken plugins09:59
andreafgmann_ +109:59
gmann_yea09:59
dmelladoandreaf: then how do you propose to handle such plugins?09:59
jordanP_broken plugins should be fixed by plugin owners, and not break Tempest09:59
jordanP_time's up :)10:00
dmelladojust 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 fail10:00
gmann_anyways time is running i think10:00
dmelladoyeah, we're out of time10:00
dmelladowe can continue on #openstack-qa10:00
*** jordanP has quit IRC10:00
gmann_let;s discuss this on QA channel or on review10:00
gmann_Thanks  everyone10:01
gmann_#endmeeting10:01
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"10:01
openstackMeeting 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 IRC10:01
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-28-09.00.html10:01
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-28-09.00.txt10:01
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-28-09.00.log.html10:01
*** ociuhandu has joined #openstack-meeting10:01
*** sankarshan is now known as sankarshan_away10:01
*** electrofelix has joined #openstack-meeting10:05
*** zhurong has quit IRC10:07
*** shaohe_feng has quit IRC10:08
*** salv-orlando has joined #openstack-meeting10:08
*** shaohe_feng has joined #openstack-meeting10:09
*** Liuqing_ has quit IRC10:09
*** jschwarz|afk is now known as jschwarz10:15
*** salv-orlando has quit IRC10:15
*** shaohe_feng has quit IRC10:18
*** shaohe_feng has joined #openstack-meeting10:19
*** gmann_ has quit IRC10:20
*** Daisy has quit IRC10:27
*** shaohe_feng has quit IRC10:28
*** Daisy has joined #openstack-meeting10:28
*** shaohe_feng has joined #openstack-meeting10:29
*** bobh has joined #openstack-meeting10:30
*** mbound has quit IRC10:32
*** liyifeng has joined #openstack-meeting10:34
*** bobh has quit IRC10:35
*** emagana has joined #openstack-meeting10:36
*** shaohe_feng has quit IRC10:38
*** sdague has joined #openstack-meeting10:39
*** shaohe_feng has joined #openstack-meeting10:39
*** emagana has quit IRC10:41
*** yamamoto has joined #openstack-meeting10:46
*** manikanta_tadi is now known as manikanta_afk10:46
*** manikanta_afk is now known as manikanta_tadi10:46
*** roxanaghe has joined #openstack-meeting10:48
*** shaohe_feng has quit IRC10:49
*** yamamoto has quit IRC10:49
*** shaohe_feng has joined #openstack-meeting10:49
*** roxanaghe has quit IRC10:53
*** yamamoto has joined #openstack-meeting10:54
*** thorst has joined #openstack-meeting10:56
*** shaohe_feng has quit IRC10:59
*** christx2 has joined #openstack-meeting10:59
*** shaohe_feng has joined #openstack-meeting11:00
*** gcb has quit IRC11:00
*** obondarev has quit IRC11:02
*** obondarev has joined #openstack-meeting11:04
*** Daisy has quit IRC11:07
*** Daisy has joined #openstack-meeting11:08
*** jlanoux has quit IRC11:08
*** weshay has joined #openstack-meeting11:09
*** shaohe_feng has quit IRC11:09
*** shaohe_feng has joined #openstack-meeting11:10
*** Daisy has quit IRC11:12
*** zzxwill has quit IRC11:13
*** hashar has quit IRC11:14
*** shz has quit IRC11:16
*** shz has joined #openstack-meeting11:16
*** obondarev has quit IRC11:17
*** shaohe_feng has quit IRC11:19
*** jordan__ has joined #openstack-meeting11:20
*** shaohe_feng has joined #openstack-meeting11:20
*** tinwood is now known as tinwood-lunch11:23
*** jaypipes has joined #openstack-meeting11:23
*** jordanP_ has quit IRC11:24
*** acoles is now known as acoles_11:25
*** acoles_ is now known as acoles11:25
*** asettle has quit IRC11:27
*** zhhuabj has joined #openstack-meeting11:28
*** shaohe_feng has quit IRC11:30
*** Daisy has joined #openstack-meeting11:30
*** shaohe_feng has joined #openstack-meeting11:30
*** bobh has joined #openstack-meeting11:31
*** jlanoux has joined #openstack-meeting11:32
*** Daisy has quit IRC11:32
*** Daisy has joined #openstack-meeting11:33
*** salv-orlando has joined #openstack-meeting11:33
*** rtheis has joined #openstack-meeting11:34
*** bobh has quit IRC11:35
*** hashar has joined #openstack-meeting11:36
*** gongysh has quit IRC11:37
*** Daisy has quit IRC11:37
*** shaohe_feng has quit IRC11:40
*** shaohe_feng has joined #openstack-meeting11:40
*** asettle has joined #openstack-meeting11:41
*** banix has joined #openstack-meeting11:45
*** saggi has joined #openstack-meeting11:48
*** gatekeep has joined #openstack-meeting11:48
*** gatekeep has quit IRC11:49
*** sarob has joined #openstack-meeting11:50
*** gatekeep has joined #openstack-meeting11:50
*** shaohe_feng has quit IRC11:50
*** fredrik_ has joined #openstack-meeting11:50
*** shaohe_feng has joined #openstack-meeting11:50
*** synegy34 has quit IRC11:51
*** fredrik has quit IRC11:52
*** tonytan4ever has joined #openstack-meeting11:53
*** sarob has quit IRC11:55
*** rfolco has joined #openstack-meeting11:55
*** banix has quit IRC11:55
*** Liuqing has joined #openstack-meeting11:56
*** fredrik has joined #openstack-meeting11:56
*** tonytan4ever has quit IRC11:57
*** fredrik_ has quit IRC12:00
*** shaohe_feng has quit IRC12:00
*** tochi has quit IRC12:01
*** rbowen has quit IRC12:02
*** shaohe_feng has joined #openstack-meeting12:03
*** bogdando has quit IRC12:04
*** ityaptin has joined #openstack-meeting12:05
*** radek_ has quit IRC12:05
*** synegy34 has joined #openstack-meeting12:06
*** amotoki_ has quit IRC12:06
*** synegy34 has quit IRC12:07
*** synegy34 has joined #openstack-meeting12:07
*** aysyd has joined #openstack-meeting12:07
*** gatekeep has quit IRC12:08
*** shaohe_feng has quit IRC12:11
*** saggi has quit IRC12:11
*** shaohe_feng has joined #openstack-meeting12:11
*** mtanino has joined #openstack-meeting12:12
*** amotoki has joined #openstack-meeting12:13
*** cbits has joined #openstack-meeting12:15
*** bogdando has joined #openstack-meeting12:15
*** tinwood-lunch is now known as tinwood12:16
*** maishsk has joined #openstack-meeting12:17
*** lixiaoy1 has quit IRC12:18
*** maishsk has quit IRC12:18
*** maishsk has joined #openstack-meeting12:18
*** lixiaoy1 has joined #openstack-meeting12:19
*** shaohe_feng has quit IRC12:21
*** jckasper has joined #openstack-meeting12:21
*** shaohe_feng has joined #openstack-meeting12:21
*** bogdando has quit IRC12:22
*** adiantum has joined #openstack-meeting12:22
*** bogdando has joined #openstack-meeting12:25
*** jckasper has quit IRC12:26
*** sarob has joined #openstack-meeting12:27
*** nmagnezi_ has joined #openstack-meeting12:31
*** nmagnezi has quit IRC12:31
*** shaohe_feng has quit IRC12:31
*** sindhu has quit IRC12:31
*** bobh has joined #openstack-meeting12:31
*** shaohe_feng has joined #openstack-meeting12:32
*** obondarev has joined #openstack-meeting12:32
*** sarob has quit IRC12:32
*** jordan__ has left #openstack-meeting12:34
*** tpsilva has joined #openstack-meeting12:34
*** amotoki has quit IRC12:34
*** manikanta_tadi has quit IRC12:35
*** bobh has quit IRC12:36
*** salv-orlando has quit IRC12:36
*** roxanaghe has joined #openstack-meeting12:36
*** radek_ has joined #openstack-meeting12:37
*** amotoki has joined #openstack-meeting12:39
*** toddjohn has joined #openstack-meeting12:40
*** links has quit IRC12:40
*** yamamoto has quit IRC12:40
*** roxanaghe has quit IRC12:41
*** shaohe_feng has quit IRC12:41
*** shaohe_feng has joined #openstack-meeting12:42
*** adiantum has quit IRC12:42
*** julim has joined #openstack-meeting12:43
*** saggi has joined #openstack-meeting12:46
*** amotoki has quit IRC12:47
*** egallen has left #openstack-meeting12:48
*** mbound has joined #openstack-meeting12:49
*** toddjohn has quit IRC12:49
*** nishaYadav has quit IRC12:51
*** shaohe_feng has quit IRC12:52
*** nishaYadav has joined #openstack-meeting12:52
*** nishaYadav is now known as Guest1852612:52
*** shaohe_feng has joined #openstack-meeting12:52
*** rbrady has quit IRC12:53
*** baoli has joined #openstack-meeting12:53
*** baoli_ has joined #openstack-meeting12:54
*** cleong has joined #openstack-meeting12:54
*** woodster_ has joined #openstack-meeting12:55
*** cknight has joined #openstack-meeting12:55
*** saggi has quit IRC12:57
*** pradk has quit IRC12:58
*** baoli has quit IRC12:58
*** dmorita has joined #openstack-meeting12:58
*** amitgandhinz has quit IRC12:59
*** amitgandhinz has joined #openstack-meeting13:00
*** ronghui has quit IRC13:01
*** shaohe_feng has quit IRC13:02
*** hoangcx has joined #openstack-meeting13:02
*** dmorita has quit IRC13:02
*** shaohe_feng has joined #openstack-meeting13:03
*** adiantum has joined #openstack-meeting13:04
*** saggi has joined #openstack-meeting13:05
*** numans has quit IRC13:06
*** jckasper has joined #openstack-meeting13:07
*** nmagnezi_ is now known as nmagnezi13:09
*** adiantum has quit IRC13:12
*** Guest18526 is now known as nishaYadav13:12
*** shaohe_feng has quit IRC13:12
*** amotoki has joined #openstack-meeting13:12
*** shaohe_feng has joined #openstack-meeting13:13
*** ronghui has joined #openstack-meeting13:14
*** sindhu has joined #openstack-meeting13:15
*** gongysh has joined #openstack-meeting13:16
*** numans has joined #openstack-meeting13:17
*** emagana has joined #openstack-meeting13:19
*** zz_dimtruck is now known as dimtruck13:19
*** bill_az has joined #openstack-meeting13:21
*** vponomaryov has left #openstack-meeting13:22
*** myoung has joined #openstack-meeting13:22
*** shaohe_feng has quit IRC13:22
*** emagana has quit IRC13:24
*** maishsk has quit IRC13:25
*** shaohe_feng has joined #openstack-meeting13:25
*** banix has joined #openstack-meeting13:26
*** fredrik_ has joined #openstack-meeting13:27
*** ygbo has quit IRC13:28
*** jckasper has quit IRC13:28
*** raj_singh has joined #openstack-meeting13:29
*** toddjohn has joined #openstack-meeting13:29
*** jckasper has joined #openstack-meeting13:29
*** ygbo has joined #openstack-meeting13:30
*** markvoelker has joined #openstack-meeting13:30
*** fredrik has quit IRC13:30
*** trozet has quit IRC13:32
*** shaohe_feng has quit IRC13:33
*** yuval has quit IRC13:33
*** jckasper has quit IRC13:34
*** markvoelker has quit IRC13:34
*** jungleboyj has quit IRC13:34
*** esberglu has joined #openstack-meeting13:35
*** trozet has joined #openstack-meeting13:35
*** shaohe_feng has joined #openstack-meeting13:36
*** jamesdenton has joined #openstack-meeting13:36
*** sdake has joined #openstack-meeting13:36
*** maishsk has joined #openstack-meeting13:37
*** merooney has joined #openstack-meeting13:39
*** markus_z has joined #openstack-meeting13:40
*** yamamoto has joined #openstack-meeting13:41
*** mriedem has joined #openstack-meeting13:42
*** toscalix has quit IRC13:42
*** ayoung has joined #openstack-meeting13:43
*** shaohe_feng has quit IRC13:43
*** shaohe_feng has joined #openstack-meeting13:44
*** yamamoto has quit IRC13:46
*** takashin has joined #openstack-meeting13:47
*** rlrossit has joined #openstack-meeting13:49
*** Liuqing has quit IRC13:51
*** enriquetaso has joined #openstack-meeting13:51
*** Liuqing has joined #openstack-meeting13:52
*** tonytan4ever has joined #openstack-meeting13:52
*** shaohe_feng has quit IRC13:53
*** toscalix has joined #openstack-meeting13:53
*** saggi has quit IRC13:54
*** shaohe_feng has joined #openstack-meeting13:54
*** zzxwill has joined #openstack-meeting13:54
*** zzxwill_ has joined #openstack-meeting13:54
*** gcb has joined #openstack-meeting13:56
*** cdent has joined #openstack-meeting13:57
*** pnavarro has quit IRC13:57
*** dimtruck is now known as zz_dimtruck13:57
*** preisner has quit IRC13:58
*** rbak has joined #openstack-meeting13:58
*** AmitGalitz has quit IRC13:58
*** JJ has joined #openstack-meeting13:59
*** oferby has quit IRC13:59
*** andrearosa has joined #openstack-meeting13:59
*** auggy has joined #openstack-meeting13:59
*** lyarwood has joined #openstack-meeting14:00
mriedem#startmeeting nova14:00
openstackMeeting 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
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.14:00
*** dmacpher has joined #openstack-meeting14:00
*** openstack changes topic to " (Meeting topic: nova)"14:00
openstackThe meeting name has been set to 'nova'14:00
rlrossito/14:00
markus_zo/14:00
gcbo/14:00
dansmitho/14:00
lyarwoodo/14:00
andrearosahi14:00
raj_singho/14:00
takashino/14:00
*** anilvenkata has quit IRC14:00
auggyo/14:01
*** egallen has joined #openstack-meeting14:01
*** gabor_antal has joined #openstack-meeting14:01
mriedemlet's do this14:01
*** moshele has joined #openstack-meeting14:01
mriedem#topic release news14:01
*** openstack changes topic to "release news (Meeting topic: nova)"14:01
mriedem#link https://wiki.openstack.org/wiki/Nova/Newton_Release_Schedule14: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\o14:02
*** pradk has joined #openstack-meeting14:02
mriedem#link python 3 conversion changes: https://review.openstack.org/#/q/topic:bp/nova-python3-newton+status:open14:02
macsz\o14:02
cdento/14:02
mriedem#link mox removal changes https://review.openstack.org/#/q/topic:bp/remove-mox-newton+status:open14:02
dansmithso lyarwood has a py3 fix but it's needed for a real bug fix14:02
dansmithand it's also a disgusting hack, which is why it failed on py314:02
mriedemreal fixes are fine i think14:02
dansmithyeah, just FYI14:02
dansmithdon't go -2 it :D14:03
dansmithhttps://review.openstack.org/#/c/34211114:03
mriedemthere are 5 pages of mox removal stuff, so we need to land whatever is already +2'ed or ready today14:03
mriedemi'm not going to -2 all of the mox removal changes, there are too many14:03
*** shaohe_feng has quit IRC14:03
mriedemi will mark the bps complete by the end of the day though14:03
mriedemand probably also put out a reminder in the mailing list14:04
*** shaohe_feng has joined #openstack-meeting14:04
mriedem#info Aug 4: priority spec approval freeze14:04
mriedemthat's 1 week from today14:05
mriedemthe only priority specs i think we have are probably resource provider stuff and libvirt storage pools14:05
mriedem#info move non-priority newton specs for review to the ocata directory if you still plan on working those in ocata14:06
*** liamji has joined #openstack-meeting14:06
mriedemanything up for review that's not moved to ocata by 8/4 will get abandoned14:06
mriedemany release questions?14:06
mriedem#topic bugs14:07
*** openstack changes topic to "bugs (Meeting topic: nova)"14:07
mriedemgate status has been ok i think14:07
mriedem #link check queue gate status http://status.openstack.org/elastic-recheck/index.html14:07
mriedemi'm not aware of any major new fallout14:07
*** diana_clarke has joined #openstack-meeting14:07
bauzasso, the resize is quite in a hard shape14:08
*** BobBall has joined #openstack-meeting14:08
diana_clarkeo/14:08
bauzasbecause of the man just writing this line14:08
mriedembauzas: is there a gate bug?14:08
bauzaswe basically just send the original flavor to the scheduler14:08
bauzasmriedem: nope, just that we verify the old flavor instead of the new one14:08
mriedemso jobs are failing or...?14:09
bauzasnope14:09
bauzasis this a "bugs" topic :)14:09
bauzas? :p14:09
mriedemyeah, sorry, was talking about gate status though so i thought you were talking about jobs failing on something new14:09
bauzasmy bad then :)14:10
bauzasI saw a couple of grenade rechecks tho14:10
mriedemdoes the test fail?14:10
mriedemb/c it tries to do a migrate instead of a resize on a single node?14:10
*** dane_leblanc has joined #openstack-meeting14:10
*** ajmiller has joined #openstack-meeting14:11
*** amitgandhinz has quit IRC14:11
mriedemhow about we just talk about this in -nova after the meeting...14:11
*** sindhu has quit IRC14:11
bauzassorry, seems I made a lot of confusion : no, the resize bug is not impacting the bug AFAICS14:11
bauzasgraah14:11
bauzasnot impacting the gate*14:11
bauzasand okay, let's move that offline14:11
* gibi is late14:11
mriedemok, well, if we have false positives in resize tests that's also bad14:11
* edleafe wanders in14:12
mriedembut let's talk about it in nova14:12
bauzasagreed14:12
mriedemthird party ci status - has seemed....ok?14:12
*** amitgandhinz has joined #openstack-meeting14:12
mriedemhonestly third party ci status is a crapshoot from week to week14:12
mriedemquobyte ci should be back on track though, we reverted something that was breaking their ci14:12
mriedemi think i noticed that xen is working on a neutron-backed job14:13
*** sridharg has quit IRC14:13
mriedemwhich is good to see14:13
*** zz_dimtruck is now known as dimtruck14:13
mriedemare there any critical bugs anyone wants to bring up?14:13
mriedemmarkus_z: auggy: ?14:13
markus_znothing noteworthy from my pov14:13
auggyi'm not aware of anything14:13
mriedemok14:13
*** egallen has quit IRC14:13
mriedemmoving on then14:13
mriedem#reminders14:13
mriedemoops14:13
*** shaohe_feng has quit IRC14:14
mriedem#topic reminders14: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-tracking14:14
*** Liuqing has quit IRC14: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-meeting14:14
*** shaohe_feng has joined #openstack-meeting14:14
*** efried has joined #openstack-meeting14:14
*** egallen has left #openstack-meeting14:14
mriedemlooks like we have 36 untriaged bugs14:14
*** Liuqing has joined #openstack-meeting14:14
macszi can do it14:14
*** ljxiash has joined #openstack-meeting14:14
mriedemmacsz: cool, just update that wiki, thanks14:15
*** gongysh has quit IRC14:15
macszsure, will do14:15
mriedemauggy: 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 pages14:15
auggymriedem: kk noted14:15
mriedem#action auggy to note that py3 and mox efforts are frozen for newton in their respective wiki pages14:16
mriedemthanks14:16
auggyi'll update the new contributor page14:16
*** rrecio has joined #openstack-meeting14:16
mriedem#topic Stable branch status: https://etherpad.openstack.org/p/stable-tracker14:17
*** openstack changes topic to "Stable branch status: https://etherpad.openstack.org/p/stable-tracker (Meeting topic: nova)"14:17
mriedemthe periodic jobs for nova on stable have been fine14:17
mriedem#link stable/mitaka: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/mitaka,n,z14:17
mriedem#link  stable/liberty: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/liberty,n,z14:17
mriedemwe have a bunch of mitaka backports ready to go i think, just need some review focus14:17
*** rrecio_ has joined #openstack-meeting14:18
mriedemi need to hunker down on those so we can get a stable/mitaka point release out early next week14:18
*** sindhu has joined #openstack-meeting14:18
mriedem#help review stable/mitaka backports so we can do a release the week of 8/114:18
mriedem#topic subteam highlights14:18
*** openstack changes topic to "subteam highlights (Meeting topic: nova)"14:18
mriedemthere wasn't a cells meeting this week14:19
mriedemthere are reviews ongoing though14:19
mriedemdansmith: jaypipes: how is doffm's aggregates to api db series coming?14:19
dansmithI asked him something the other day and never got a response14:19
dansmithhe squashed the patch to block creations and do creates in the api db14:20
jaypipesmriedem: slowly...14:20
dansmithmriedem: meaning, I asked jaypipes something.. rather, pointed him at the later patch as the answer to his question14:20
*** piet has joined #openstack-meeting14:20
dansmithabout the autoincrement thing14:20
*** rrecio has quit IRC14:20
jaypipesmriedem: 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
mriedemdansmith: jaypipes: if there isn't much left, and it's just a matter of pushing the changes, i say someone takes it over14:21
dansmithif that is resolved, then I think they're probably ready I just didn't +2 anything14:21
mriedemok14:21
dansmithmriedem: I'm happy to do that14:21
dansmithif need be14:21
jaypipesmriedem: there are valid failures. is doffster on PTO?14:21
*** galstrom_zzz is now known as galstrom14:21
mriedemthe doffster is getting pulled into lots of internal stuff14:21
jaypipesboo.14:21
dansmithjaypipes: 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 them14:22
mriedemthere 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 vacation14:22
jaypipesdansmith: 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-meeting14:22
*** fredrik_ has quit IRC14:22
mriedemif 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 series14:22
mriedembauzas: melwitt: ^ fyi14:22
jaypipesdansmith: happy to quick-review-iterate with you on that series.14:22
dansmithalright14:22
edleafemriedem: I may have some cycles, too14:22
mriedemok14:23
bauzasmriedem: I'll be on PTO for two weeks starting tomorrow EOB, passing the ball, sorry14:23
mriedemmandatory PTO i hope14:23
dansmithjeez14:23
bauzasahah14:23
mriedemthen let's all let it rest on melwitt's shoulders14:23
bauzasI really *tried* to not take more, hard call :p14:23
mriedemwe're all counting on you, good luck14:23
mriedemmoving on to scheduler subteam meeting highlights14:24
mriedemedleafe: was there a scheduler meeting this week? i didn't think so14:24
edleafeI was out on Monday14:24
*** shaohe_feng has quit IRC14:24
edleafeSo unless someone else ran it...14:24
mriedemok14:24
bauzasand noone took the ball AFAIK14:24
mriedemjaypipes and cdent have a thread in the ML14:24
mriedemwhich i haven't read yet14:24
cdentnbd14:24
mriedemjaypipes: anything you want to say?14:25
*** shaohe_feng has joined #openstack-meeting14:25
jaypipesmriedem: on the laski patch (that has a -WIP on it) do you need me to do anything there?14:25
mriedemjaypipes: no i don't think so14:25
mriedemjaypipes: ideally you and i would stay as reviewers on that one14:25
jaypipesmriedem: 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
jaypipesmriedem: yes on laski thing14:26
mriedemeven though he'll be gone for 2 weeks14:26
*** amitgandhinz has quit IRC14:26
bauzasmriedem: because jaypipes has good cheese14:26
jaypipesmriedem: 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 IRC14:27
mriedemdynamic-resource-classes was agreed to be a stretch goal for newton yes?14:27
jaypipesbauzas: well, yeah, but there's lots that needs done before his CRUD API patches would be landable anyway.14:27
jaypipesmriedem: correct.14:27
mriedemok, just making sure14:27
*** xyang1 has joined #openstack-meeting14:27
bauzasmriedem: exactly, hence me thinking I can async work on it14:27
*** saggi has joined #openstack-meeting14:27
mriedemok14:28
mriedemlet's move on14:28
jaypipesbauzas: yup. just dont' make the API calls async ;P14:28
mriedemPaulMurray isn't here14:28
mriedemthere was a live migration meeting this week, we mostly talked about CI14:28
mriedemtdurakov is working on tempest patches for the latest live migration related microversions14:28
*** efried has quit IRC14:29
mriedemand was going to see how re-enabling NFV in the live migration job works out14:29
mriedemwe 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 backends14:29
mriedemanyway, putting thought into moving away from nova-net jobs when we have duplicates14:30
mriedemand paul-carlton's libvirt storage pools spec is up for review yet i think, and mnestratov was +1 on it for vz14:30
*** amitgandhinz has joined #openstack-meeting14:30
*** efried has joined #openstack-meeting14:30
mriedemsdague: want to cover anything from the api meeting this week?14:30
mriedemmust be too early for sean :)14:31
mriedemthe proxy api deprecation series is done14:31
mriedemdansmith is working the novaclient changes for that14:31
mriedemthere are some questions in the ML on how to handle the tempest changes for that14:31
mriedemand gmann has a patch up to stop allowing a url for image_href14:32
dansmithmriedem: I think the current patch is good, needs reviews14:32
*** jdurgin1 has joined #openstack-meeting14:32
mriedemthat's about all i remember from the api meeting14:32
mriedemdansmith: ok i'll try to get a pass on that again today14:32
*** aprice has joined #openstack-meeting14:32
dansmiththanks14:32
mriedemhttps://review.openstack.org/#/c/347514/14:32
mriedemfor those at home14:32
mriedemi thought we were going to deprecate the python APIs too?14:33
mriedemrather than let them just start failing14:33
*** egallen has joined #openstack-meeting14:33
*** shaohe_feng has quit IRC14:34
mriedemmoshele: if you're around, was there a pci/sriov meeting this week?14:34
mosheleyes14:34
*** shaohe_feng has joined #openstack-meeting14:35
mriedemupdates?14:35
mosheleso 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
dansmithmriedem: 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 spotz14:35
*** zhurong has joined #openstack-meeting14:36
moshelebasically tempest is broken for some test when using vnic_type14:36
mriedemdansmith: yeah deprecation warnings and docstring updates like we have for baremetal and image proxy apis14:36
*** matrohon has quit IRC14:36
dansmithokay14:36
moshelethis is WIP patch for testing migration and migration revert in tempest https://review.openstack.org/#/c/347374/14:36
moshelealso 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
jaypipesmoshele: I'm reviewing that...14:37
mriedemmoshele: doesn't that have to depend on those other changes?14:37
mriedemthe tempest WIP i mean14:37
mosheleno14:37
moshelesorry it depend on one of them14:38
mosheleon this one https://review.openstack.org/#/c/335447/14:38
mriedemmoshele: ok should probably stack those in a series or use Depends-On14:38
moshelemriedem: we ping the tempest core in infra and we didn't get mach review14:39
*** nmagnezi has quit IRC14:39
moshelemriedem: so we have a multinode cI with all the tempest patches for testing the nova patches14:39
moshelemriedem: I don't want to block stuff because of tempest14:40
mriedemok14:40
mriedemlet's move on14:40
mriedem#topic stuck reviews14:41
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"14:41
mriedemthere was nothing in the agenda14:41
mriedemanyone have something to bring up?14:41
gcbmriedem ,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/151783914:41
mriedemgcb: is that all that's left of that series?14:41
gcbyes14:42
mriedemgcb: b/c we're winding down on stuff like this in nova for newton14:42
mriedemok14:42
mriedem#topic open discussion14:42
*** openstack changes topic to "open discussion (Meeting topic: nova)"14:42
*** clenimar has joined #openstack-meeting14:42
mriedemone thing i have to bring up14:42
mriedemnovaclient currently caps at 2.3214:42
* gibi is wondering if he missed the notification subteam part of the meeting14:42
*** saju_m has quit IRC14:43
mriedemgibi: sorry i didn't ask about notifications since those were halted for newton and are biweekly meetings14:43
mriedemdid you have something?14:43
*** jmckind has joined #openstack-meeting14:43
gibimriedem: yeah we have biweekly meetings and a couple of follow up patches still for newton14:43
gibimostly refactoring, test improvemtn, doc improvement14:43
*** radek_ has quit IRC14:43
*** singlethink has joined #openstack-meeting14:43
*** asettle has quit IRC14:43
gibithe subteam part of the newton priority etherpad has the links14:44
gibithese follow ups needs some core attention if bandwidth allows14:44
*** dslevin has joined #openstack-meeting14:44
mriedemsure, same as last meeting14:44
*** egallen has quit IRC14:44
*** shaohe_feng has quit IRC14:44
gibiyeah somthing like that14:44
*** egallen has joined #openstack-meeting14:44
gibithat is all14:44
mriedemok, back to novaclient14:44
mriedemso we have 2.32 today14:44
mriedemdan is working on 2.3614:45
mriedemwe need to fill the gap14:45
*** shaohe_feng has joined #openstack-meeting14:45
*** piet has quit IRC14:45
mriedemhttps://review.openstack.org/#/q/project:openstack/python-novaclient+status:open14:45
*** dasanind has joined #openstack-meeting14:45
*** egallen has left #openstack-meeting14:45
mriedemi see WIP reviews for 2.34 and 2.3514:45
mriedemdon't see anything for 2.3314:45
mriedemanyway, heads up that we need work there14:45
mriedem#help need to get 2.33-2.35 microversions implemented in novaclient14:46
mriedemanyone have anything else for open discussion?14:46
wznoinskhi, I have one14:46
mriedemintel nfv ci :)14:46
*** ijw has joined #openstack-meeting14:47
wznoinskyou said that ;-)14:47
wznoinskI 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.html14:47
*** jungleboyj has joined #openstack-meeting14:47
*** ijw has quit IRC14:47
*** ijw has joined #openstack-meeting14:47
mriedemi feel like i don't know that's been going since we don't have metrics to compare it against the other jobs14:48
mriedemlooking at http://ci-watch.tintri.com/project?project=nova&time=7+days it looks quite green14:48
mriedemexcept tempest-dsvm-ovsdpdk-nfv-networking14:48
mriedembut those could be actual changes that just fail the job b/c they break it14:49
mriedemi'm fine with making it voting to see how it goes,14:49
mriedemwe can always turn that off if it goes south14:49
wznoinskyeah, it was broken for less than a day because of upstream change... let me dig out the id14:50
mriedemi feel like the intel team running that ci has been pretty responsive14:50
mriedemunless anyone has major objections i'll ack that request in the ML thread14:51
mriedemok, anything else for open discussion?14:51
dansmithI haven't been paying attention to it,14:51
*** asettle has joined #openstack-meeting14:51
*** ijw has quit IRC14:52
dansmithbut making it voting will help that, so if you think it's reasonable, I'm good with turning it on for visibility14:52
mriedemsame thought14:52
mriedemplus this was a big ask at the summit for NFV so i'm glad to see people stepping up that runs these things14:52
mriedemlike wznoinsk and moshele14:52
dansmithyeah14:52
*** nmagnezi has joined #openstack-meeting14:52
*** maishsk has quit IRC14:52
mriedembtw, 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 cover14:53
*** lhx_ has joined #openstack-meeting14:53
mriedemso if you didn't make it and are wondering about that, ^14:53
wznoinskbtw. devstack change that broke the above job - https://github.com/openstack-dev/devstack/commit/c714c7e96, workarounded on the spot14:53
mriedemwznoinsk: does the intel nfv ci run against devstack changes?14:53
*** vhoward has joined #openstack-meeting14:54
wznoinskmriedem: only for ODL+OVSDPDK testing, kind of a legacy decision14:54
mriedemand 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 IRC14:55
*** Swami has joined #openstack-meeting14:55
*** Swami_ has joined #openstack-meeting14:55
mriedemanyway, we can take this to the dev list, i'll ask there14:55
mriedemlet's wrap up with 5 big minutes to spare14:55
*** andrearosa has left #openstack-meeting14:55
*** shaohe_feng has joined #openstack-meeting14:55
mriedemthanks everyone14:55
mriedem#endmeeting14:55
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"14:55
openstackMeeting ended Thu Jul 28 14:55:47 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)14:55
wznoinskmriedem: we've set the workaround (set Q_USE_PROVIDERNET_FOR_PUBLIC to Flase as before the change) to troubleshoot the issue14:55
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-07-28-14.00.html14:55
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-07-28-14.00.txt14:55
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-07-28-14.00.log.html14:55
*** timcline has joined #openstack-meeting14:55
*** cdent has left #openstack-meeting14:56
*** takashin has left #openstack-meeting14:56
*** maishsk has joined #openstack-meeting14:56
*** auggy has left #openstack-meeting14:57
*** timcline_ has joined #openstack-meeting14:57
*** emagana has joined #openstack-meeting14:57
*** aprice has quit IRC14:58
*** saggi has quit IRC14:59
*** gcb has quit IRC14:59
*** numans has quit IRC14:59
*** maishsk has quit IRC14:59
*** timcline has quit IRC15:00
*** Swami__ has joined #openstack-meeting15:01
*** amitgandhinz has quit IRC15:02
*** amitgandhinz has joined #openstack-meeting15:03
*** aprice has joined #openstack-meeting15:03
*** iyamahat has joined #openstack-meeting15:03
*** raj_singh has left #openstack-meeting15:03
*** Swami has quit IRC15:05
*** shaohe_feng has quit IRC15:05
*** rlrossit has left #openstack-meeting15:05
*** yamamoto has joined #openstack-meeting15:06
*** shaohe_feng has joined #openstack-meeting15:06
*** tomhamb has joined #openstack-meeting15:07
*** piet has joined #openstack-meeting15:07
*** gatekeep has joined #openstack-meeting15:07
*** Swami has joined #openstack-meeting15:08
*** gatekeep has quit IRC15:08
*** gatekeep has joined #openstack-meeting15:09
*** armax has joined #openstack-meeting15:09
*** synegy34 has quit IRC15:09
*** yamamoto has quit IRC15:10
*** emagana has quit IRC15:10
*** Swami__ has quit IRC15:11
*** shaohe_feng has quit IRC15:15
*** BobBall has left #openstack-meeting15:15
*** Liuqing has quit IRC15:16
*** shaohe_feng has joined #openstack-meeting15:16
*** Liuqing has joined #openstack-meeting15:16
*** emagana has joined #openstack-meeting15:17
*** ijw has joined #openstack-meeting15:18
*** yuanying_ has joined #openstack-meeting15:20
*** pcaruana has quit IRC15:22
*** yuanying has quit IRC15:22
*** fredrik has joined #openstack-meeting15:22
*** jdurgin1 has quit IRC15:23
*** enriquetaso has quit IRC15:23
*** ijw has quit IRC15:23
*** nkrinner is now known as nkrinner_afk15:23
*** enriquetaso has joined #openstack-meeting15:25
*** shaohe_feng has quit IRC15:25
*** zzxwill has quit IRC15:25
*** zzxwill_ has quit IRC15:25
*** persia_ has quit IRC15:26
*** shaohe_feng has joined #openstack-meeting15:26
*** fredrik has quit IRC15:27
*** zhurong has quit IRC15:27
*** uxdanielle has joined #openstack-meeting15:28
*** dtrainor has quit IRC15:28
*** dtrainor has joined #openstack-meeting15:28
*** amitgandhinz has quit IRC15:29
*** amitgandhinz has joined #openstack-meeting15:29
*** jckasper has joined #openstack-meeting15:30
*** megm has quit IRC15:30
*** elo has quit IRC15:30
*** megm has joined #openstack-meeting15:31
*** elo has joined #openstack-meeting15:32
*** emagana has quit IRC15:34
*** mikelk has quit IRC15:34
*** ijw has joined #openstack-meeting15:34
*** aprice_ has joined #openstack-meeting15:35
*** aprice has quit IRC15:35
*** aprice_ is now known as aprice15:35
*** emagana has joined #openstack-meeting15:35
*** shaohe_feng has quit IRC15:36
*** Swami__ has joined #openstack-meeting15:37
*** markus_z has quit IRC15:37
*** roxanaghe has joined #openstack-meeting15:38
*** Swami__ has quit IRC15:38
*** shaohe_feng has joined #openstack-meeting15:38
*** Swami__ has joined #openstack-meeting15:38
*** ijw has quit IRC15:39
*** gibi has quit IRC15:39
*** mickeys has joined #openstack-meeting15:39
*** Swami has quit IRC15:40
*** Swami_ has quit IRC15:40
*** jdurgin1 has joined #openstack-meeting15:41
*** zhhuabj has quit IRC15:42
*** roxanaghe has quit IRC15:42
*** gibi has joined #openstack-meeting15:43
*** persia_ has joined #openstack-meeting15:45
*** fredrik has joined #openstack-meeting15:45
*** e0ne has quit IRC15:45
*** shaohe_feng has quit IRC15:46
*** aprice has left #openstack-meeting15:46
*** e0ne has joined #openstack-meeting15:46
*** jckasper has quit IRC15:46
*** fredrik has quit IRC15:46
*** jckasper has joined #openstack-meeting15:47
*** shaohe_feng has joined #openstack-meeting15:47
*** unicell1 has joined #openstack-meeting15:47
*** piet has quit IRC15:48
*** jckasper has quit IRC15:48
*** moshele has left #openstack-meeting15:49
*** hashar has quit IRC15:49
*** jckasper has joined #openstack-meeting15:49
*** zhhuabj has joined #openstack-meeting15:49
*** woodster_ has quit IRC15:49
*** hashar has joined #openstack-meeting15:49
*** unicell has quit IRC15:50
*** ijw has joined #openstack-meeting15:50
*** Liuqing has quit IRC15:50
*** emagana has quit IRC15:51
*** emagana has joined #openstack-meeting15:52
*** alyson_ has quit IRC15:53
*** JJ has left #openstack-meeting15:54
*** mtanino has quit IRC15:54
*** timcline_ has quit IRC15:54
*** comstud has quit IRC15:55
*** ijw has quit IRC15:55
*** duvarenkov has quit IRC15:56
*** shaohe_feng has quit IRC15:56
*** tomhamb has quit IRC15:56
*** shaohe_feng has joined #openstack-meeting15:56
*** anilvenkata has joined #openstack-meeting15:57
*** duvarenkov has joined #openstack-meeting15:58
*** pece has quit IRC15:58
*** uxdanielle has quit IRC15:59
*** rossella_s has quit IRC16:00
*** rossella_s has joined #openstack-meeting16:00
*** Swami__ has quit IRC16:00
*** Leom has joined #openstack-meeting16:00
*** Leom has quit IRC16:01
*** Patifa has joined #openstack-meeting16:05
*** shaohe_feng has quit IRC16:06
*** ljxiash has quit IRC16:07
*** david-lyle has joined #openstack-meeting16:07
*** shaohe_feng has joined #openstack-meeting16:07
*** e0ne has quit IRC16:07
*** toddjohn has quit IRC16:08
*** toddjohn has joined #openstack-meeting16:08
*** maishsk has joined #openstack-meeting16:09
*** Leom has joined #openstack-meeting16:09
*** Leom has quit IRC16:10
*** emagana has quit IRC16:11
*** toddjohn has quit IRC16:12
*** Leom has joined #openstack-meeting16:12
*** obondarev has quit IRC16:13
*** emagana has joined #openstack-meeting16:14
*** Leom has quit IRC16:14
*** Patifa has quit IRC16:14
*** Patifa has joined #openstack-meeting16:14
*** zhangshuai has quit IRC16:14
*** marekd2 has quit IRC16:16
*** uxdanielle has joined #openstack-meeting16:16
*** marekd2 has joined #openstack-meeting16:17
*** shaohe_feng has quit IRC16:17
*** Leom has joined #openstack-meeting16:17
*** shaohe_feng has joined #openstack-meeting16:17
*** zhhuabj has quit IRC16:19
*** baoli_ has quit IRC16:19
*** Leom_ has joined #openstack-meeting16:20
*** woodster_ has joined #openstack-meeting16:20
*** marekd2 has quit IRC16:21
*** ijw has joined #openstack-meeting16:21
*** obondarev has joined #openstack-meeting16:21
*** mbound has quit IRC16:22
*** dmorita has joined #openstack-meeting16:22
*** mbound has joined #openstack-meeting16:23
*** Leom has quit IRC16:23
*** ygbo has quit IRC16:24
*** jlanoux has quit IRC16:24
*** ntpttr__ has joined #openstack-meeting16:25
*** maishsk has quit IRC16:26
*** ijw has quit IRC16:26
*** toddjohn has joined #openstack-meeting16:26
*** shaohe_feng has quit IRC16:27
*** Apoorva has joined #openstack-meeting16:27
*** shaohe_feng has joined #openstack-meeting16:27
*** maishsk has joined #openstack-meeting16:29
*** emagana has quit IRC16:29
*** emagana has joined #openstack-meeting16:29
*** leeantho has joined #openstack-meeting16:31
*** tesseract- has quit IRC16:32
*** maishsk has quit IRC16:33
*** coolsvap is now known as coolsvap_16:34
*** dmorita has quit IRC16:36
*** shaohe_feng has quit IRC16:37
*** dmorita has joined #openstack-meeting16:38
*** dmorita has quit IRC16:38
*** dmorita has joined #openstack-meeting16:38
*** shaohe_feng has joined #openstack-meeting16:38
*** cbits has quit IRC16:38
*** ninag has joined #openstack-meeting16:39
*** unicell1 has quit IRC16:40
*** iyamahat has quit IRC16:41
*** vhoward has quit IRC16:42
*** ntpttr__ has quit IRC16:43
*** ninag has quit IRC16:43
*** gyee has joined #openstack-meeting16:43
*** ntpttr__ has joined #openstack-meeting16:44
*** timcline has joined #openstack-meeting16:45
*** mtanino has joined #openstack-meeting16:45
*** hashar has quit IRC16:47
*** shaohe_feng has quit IRC16:47
*** gyee has quit IRC16:48
*** shaohe_feng has joined #openstack-meeting16:48
*** dasanind has quit IRC16:49
*** dasanind has joined #openstack-meeting16:49
*** emagana has quit IRC16:49
*** emagana_ has joined #openstack-meeting16:49
*** Swami has joined #openstack-meeting16:50
*** nishaYadav has quit IRC16:50
*** maishsk has joined #openstack-meeting16:51
*** nishaYadav has joined #openstack-meeting16:51
*** nishaYadav has quit IRC16:52
*** asettle has quit IRC16:54
*** lhx_ has quit IRC16:54
*** numans has joined #openstack-meeting16:54
*** banix has quit IRC16:54
*** amotoki has quit IRC16:54
*** Daisy has joined #openstack-meeting16:55
*** sambetts is now known as sambetts|afk16:56
*** pnavarro has joined #openstack-meeting16:58
*** shaohe_feng has quit IRC16:58
*** shaohe_feng has joined #openstack-meeting16:58
*** iyamahat has joined #openstack-meeting16:59
*** amotoki has joined #openstack-meeting17:00
*** Daisy has quit IRC17:00
*** yamahata has joined #openstack-meeting17:00
*** ronghui has quit IRC17:01
*** david-lyle has quit IRC17:03
*** amotoki has quit IRC17:03
*** e0ne has joined #openstack-meeting17:04
*** nmagnezi has quit IRC17:06
*** roxanaghe has joined #openstack-meeting17:06
*** emagana_ has quit IRC17:06
*** emagana has joined #openstack-meeting17:06
*** elopez has joined #openstack-meeting17:07
*** elopez is now known as Guest1022617:08
*** shaohe_feng has quit IRC17:08
*** Guest10226 has quit IRC17:08
*** elopez_ has joined #openstack-meeting17:08
*** maishsk has quit IRC17:08
*** shaohe_feng has joined #openstack-meeting17:08
*** anilvenkata has quit IRC17:11
*** uxdanielle has quit IRC17:11
*** whenry has joined #openstack-meeting17:12
*** pnavarro has quit IRC17:12
*** unicell has joined #openstack-meeting17:14
*** ronghui has joined #openstack-meeting17:14
*** unicell has quit IRC17:14
*** unicell has joined #openstack-meeting17:14
*** maishsk has joined #openstack-meeting17:14
*** banix has joined #openstack-meeting17:15
*** cloudtrainme has joined #openstack-meeting17:16
*** jckasper has quit IRC17:17
*** jckasper has joined #openstack-meeting17:17
*** pnavarro has joined #openstack-meeting17:17
*** shaohe_feng has quit IRC17:18
*** shaohe_feng has joined #openstack-meeting17:19
*** s3wong has joined #openstack-meeting17:20
*** baoli has joined #openstack-meeting17:22
*** Leom_ has quit IRC17:22
*** emagana has quit IRC17:22
*** emagana has joined #openstack-meeting17:22
*** rbartal has quit IRC17:25
*** roxanagh_ has joined #openstack-meeting17:26
*** rbartal has joined #openstack-meeting17:27
*** rbartal has quit IRC17:27
*** uxdanielle has joined #openstack-meeting17:28
*** shaohe_feng has quit IRC17:28
*** david-lyle has joined #openstack-meeting17:28
*** shaohe_feng has joined #openstack-meeting17:29
*** cloudtrainme has quit IRC17:29
*** emagana has quit IRC17:30
*** emagana has joined #openstack-meeting17:30
*** roxanagh_ has quit IRC17:31
*** nishaYadav has joined #openstack-meeting17:32
*** nishaYadav is now known as Guest1267617:32
*** Guest12676 has quit IRC17:32
*** nisha_ has joined #openstack-meeting17:33
*** nisha_ has quit IRC17:33
*** bryan_att has quit IRC17:33
*** Swami has quit IRC17:36
*** Swami has joined #openstack-meeting17:37
*** alyson_ has joined #openstack-meeting17:38
*** shaohe_feng has quit IRC17:39
*** shaohe_feng has joined #openstack-meeting17:40
*** Patifa has quit IRC17:40
*** bobh has joined #openstack-meeting17:42
*** JoseMello has joined #openstack-meeting17:42
*** maishsk has quit IRC17:44
*** andymaier has quit IRC17:45
*** maishsk has joined #openstack-meeting17:45
*** banix has quit IRC17:49
*** shaohe_feng has quit IRC17:49
*** shaohe_feng has joined #openstack-meeting17:50
*** ihrachys has quit IRC17:50
*** emagana has quit IRC17:50
*** emagana has joined #openstack-meeting17:50
*** nishaYadav has joined #openstack-meeting17:51
*** asettle has joined #openstack-meeting17:51
*** nishaYadav is now known as Guest6831417:51
*** Guest68314 has quit IRC17:52
*** toscalix has quit IRC17:52
*** nisha_ has joined #openstack-meeting17:52
*** ekcs has left #openstack-meeting17:55
*** emagana has quit IRC17:55
*** maishsk has quit IRC17:57
*** cloudtrainme has joined #openstack-meeting17:58
*** maishsk has joined #openstack-meeting17:59
*** shaohe_feng has quit IRC17:59
*** shaohe_feng has joined #openstack-meeting18:00
*** bobh has quit IRC18:00
*** emagana has joined #openstack-meeting18:02
*** Suyi_ has joined #openstack-meeting18:02
*** emagana has quit IRC18:03
*** jdurgin1 has quit IRC18:03
*** saju_m has joined #openstack-meeting18:03
*** cloudtra_ has joined #openstack-meeting18:05
*** cloudtra_ has quit IRC18:05
*** dasanind has quit IRC18:05
*** Sukhdev has joined #openstack-meeting18:07
*** cloudtrainme has quit IRC18:08
*** asettle has quit IRC18:08
*** sandanar has quit IRC18:09
*** shaohe_feng has quit IRC18:09
*** cloudtrainme has joined #openstack-meeting18:10
*** Sukhdev has quit IRC18:10
*** shaohe_feng has joined #openstack-meeting18:10
*** liamji has quit IRC18:12
*** toddjohn has quit IRC18:12
*** obondarev has quit IRC18:13
*** toddjohn_ has joined #openstack-meeting18:13
*** ociuhandu has quit IRC18:14
*** ajmiller has quit IRC18:14
*** csomerville has quit IRC18:16
*** Sukhdev has joined #openstack-meeting18:17
*** piet has joined #openstack-meeting18:19
*** shaohe_feng has quit IRC18:20
*** shaohe_feng has joined #openstack-meeting18:21
*** cody-somerville has joined #openstack-meeting18:22
*** claudiub|2 has joined #openstack-meeting18:23
*** ayoung has quit IRC18:24
*** banix has joined #openstack-meeting18:25
*** obondarev has joined #openstack-meeting18:26
*** ntpttr__ has quit IRC18:26
*** baoli has quit IRC18:29
*** shaohe_feng has quit IRC18:30
*** obondarev has quit IRC18:30
*** dasanind has joined #openstack-meeting18:30
*** shaohe_feng has joined #openstack-meeting18:31
*** zhhuabj has joined #openstack-meeting18:32
*** electrofelix has quit IRC18:33
*** vishwanathj has joined #openstack-meeting18:34
*** csomerville has joined #openstack-meeting18:36
*** tonytan4ever has quit IRC18:38
*** cody-somerville has quit IRC18:39
*** shaohe_feng has quit IRC18:40
*** Leom has joined #openstack-meeting18:40
*** shaohe_feng has joined #openstack-meeting18:41
*** roxanagh_ has joined #openstack-meeting18:42
*** david-lyle has quit IRC18:42
*** ociuhandu has joined #openstack-meeting18:44
*** fzdarsky is now known as fzdarsky|afk18:45
*** vishnoianil has quit IRC18:46
*** roxanagh_ has quit IRC18:46
*** shaohe_feng has quit IRC18:50
*** shaohe_feng has joined #openstack-meeting18:51
*** elopez_ has quit IRC18:53
*** baoli has joined #openstack-meeting18:54
*** mickeys has quit IRC18:59
*** obondarev has joined #openstack-meeting18:59
*** mickeys has joined #openstack-meeting19:00
*** shaohe_feng has quit IRC19:01
*** shaohe_feng has joined #openstack-meeting19:01
*** dmorita has quit IRC19:02
*** fifieldt has quit IRC19:02
*** toddjohn_ has quit IRC19:03
*** toddjohn has joined #openstack-meeting19:04
*** mickeys has quit IRC19:04
*** toddjohn has quit IRC19:04
*** jungleboyj has quit IRC19:05
*** zhangshuai has joined #openstack-meeting19:06
*** acoles is now known as acoles_19:08
*** zhangshuai has quit IRC19:10
*** shaohe_feng has quit IRC19:11
*** jungleboyj has joined #openstack-meeting19:11
*** fzdarsky|afk has quit IRC19:11
*** numans has quit IRC19:12
*** shaohe_feng has joined #openstack-meeting19:12
*** toddjohn has joined #openstack-meeting19:15
*** hashar has joined #openstack-meeting19:17
*** Sukhdev has quit IRC19:17
*** elo has quit IRC19:18
*** eric_lopez has joined #openstack-meeting19:18
*** fifieldt has joined #openstack-meeting19:18
*** toddjohn has quit IRC19:20
*** hashar has quit IRC19:20
*** hashar_ has joined #openstack-meeting19:20
*** shaohe_feng has quit IRC19:21
*** shaohe_feng has joined #openstack-meeting19:24
*** fzdarsky|afk has joined #openstack-meeting19:25
*** fifieldt has quit IRC19:27
*** dmorita has joined #openstack-meeting19:28
*** matrohon has joined #openstack-meeting19:30
*** tonytan4ever has joined #openstack-meeting19:30
*** shaohe_feng has quit IRC19:31
*** shaohe_feng has joined #openstack-meeting19:32
*** dmorita has quit IRC19:32
*** enriquetaso has quit IRC19:34
*** cdelatte has joined #openstack-meeting19:34
*** singhj has joined #openstack-meeting19:35
*** vishnoianil has joined #openstack-meeting19:35
*** fifieldt has joined #openstack-meeting19:38
*** maishsk_ has joined #openstack-meeting19:38
*** maishsk has quit IRC19:39
*** maishsk_ is now known as maishsk19:39
*** dane_leblanc has quit IRC19:40
*** claudiub|2 has quit IRC19:41
*** shaohe_feng has quit IRC19:42
*** shaohe_feng has joined #openstack-meeting19:42
*** obondarev has quit IRC19:43
*** jckasper has quit IRC19:45
*** jckasper has joined #openstack-meeting19:45
*** woodster_ has quit IRC19:49
*** eric_lopez has quit IRC19:49
*** jckasper has quit IRC19:50
*** elopez_ has joined #openstack-meeting19:50
*** toddjohn has joined #openstack-meeting19:51
*** dane_leblanc has joined #openstack-meeting19:51
*** jckasper has joined #openstack-meeting19:51
*** shaohe_feng has quit IRC19:52
*** shaohe_feng has joined #openstack-meeting19:53
*** HeOS has quit IRC19:54
*** elopez_ has quit IRC19:54
*** AmitGalitz has joined #openstack-meeting19:55
*** elopez_ has joined #openstack-meeting19:55
*** jckasper has quit IRC19:56
*** radek_ has joined #openstack-meeting19:56
*** toddjohn has quit IRC19:56
*** cloudtrainme has quit IRC19:56
*** obondarev has joined #openstack-meeting19:57
*** asettle has joined #openstack-meeting19:58
*** asettle has quit IRC19:58
greghaynescinerama: ohai19:59
greghaynesI wonder if ianw will be around...19:59
*** rossella_s has quit IRC19:59
cineramahmm19:59
*** rossella_s has joined #openstack-meeting20:00
greghaynesIf its just me and you we can say theres not enough folk this time around20:00
greghaynesAlso, I really wish we had andre on irc20:01
*** toddjohn has joined #openstack-meeting20:01
*** jprovazn has quit IRC20:01
*** Apoorva has quit IRC20:02
cineramayes20:02
*** shaohe_feng has quit IRC20:02
*** jamesdenton has quit IRC20:02
cineramaanyway, 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 what20:03
*** shaohe_feng has joined #openstack-meeting20:03
cineramaalso: i need to modify the meeting calendar entry & propose our IRC channel stll, have had ironic work20:03
greghaynesianw: said he would get an etherpad up so we can hash out a list of what all we want20:03
greghaynesit might be good to send out an ML about it early on, too20:03
greghaynessince some users might have input on things they would like20:03
cineramaabout release goals? good idea. bnemec will likely have input there20:04
greghaynesyep20:04
*** cloudtrainme has joined #openstack-meeting20:04
*** baoli has quit IRC20:04
greghaynesI'm a bit sad I havent gotten any responses on the dib / tripleo split20:04
greghayneseven no responses20:04
*** obondarev has quit IRC20:05
cineramagreghaynes: yes i haven't seen anything either. did you send that out on friday? northern hemisphere summer seems to mean more folks gone20:05
greghaynesanyhow, want me to take on any of those?20:05
greghaynesYea, I sent it late on thurs20:05
bnemecI suspect the apathy toward dib from tripleo is answer enough.20:05
greghaynesbnemec: that'd be awesome20:05
bnemecAlthough since tripleo would have to sign off on it that's a bit of a catch 22. :-)20:05
greghaynesas long as its not 'man thats a horrible idea'20:05
cineramagreghaynes: if you take the release mail i'll handle the other couple of things20:06
greghaynesbnemec: hah, yea, I pinged stevenh about it and got a 'send out the ML'20:06
greghaynescinerama: ok20:06
*** toddjohn has quit IRC20:06
bnemecTBH 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
cineramagreghaynes: 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 wiki20:06
bnemecI'll try to remember to respond on the list this afternoon.20:07
greghaynesbnemec: Yep, thats what I've noticed, which is why it makes a lot of sense to me20:07
greghaynes:D20:07
greghaynescinerama: yes, biweekly20:07
*** jckasper has joined #openstack-meeting20:07
greghaynescinerama: just noticed that was in there as weekly today20:07
cineramayeah it got landed before i could fix it. have been in the ironic side of the house much lately20:08
greghaynesnp, I've had similar work stuff20:08
*** mbound has quit IRC20:08
greghaynesthe 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 now20:08
greghaynesI just updated it20:08
cineramayes20:08
cineramai also need to rereview all of andreas' changes in context, hoping to have a quiet day soon for that20:09
greghaynesYep, I just got a few of them done today20:09
greghaynesok, welp, until two weeks20:09
* greghaynes will try and send that email20:10
cineramathanks for the short catch-up20:10
*** JoseMello has quit IRC20:10
*** shaohe_feng has quit IRC20:12
*** roxanagh_ has joined #openstack-meeting20:12
*** shaohe_feng has joined #openstack-meeting20:13
*** toddjohn has joined #openstack-meeting20:14
*** merooney has quit IRC20:14
*** maishsk has quit IRC20:17
*** e0ne has quit IRC20:18
*** flwang1 has quit IRC20:18
*** roxanagh_ has quit IRC20:18
*** tomhamb has joined #openstack-meeting20:18
*** toddjohn has quit IRC20:18
*** Apoorva has joined #openstack-meeting20:19
*** gyee has joined #openstack-meeting20:21
*** matrohon has quit IRC20:22
*** shaohe_feng has quit IRC20:23
*** shaohe_feng has joined #openstack-meeting20:23
*** timcline has quit IRC20:23
*** sindhu has quit IRC20:23
*** dasanind has quit IRC20:24
*** greghaynes has quit IRC20:25
*** maishsk has joined #openstack-meeting20:26
*** cdelatte has quit IRC20:26
*** pnavarro has quit IRC20:26
*** HeOS has joined #openstack-meeting20:26
*** toddjohn has joined #openstack-meeting20:28
*** pnavarro has joined #openstack-meeting20:29
*** sindhu has joined #openstack-meeting20:30
*** dasanind has joined #openstack-meeting20:30
*** coolsvap_ has quit IRC20:31
*** shaohe_feng has quit IRC20:33
*** toddjohn has quit IRC20:33
*** shaohe_feng has joined #openstack-meeting20:34
*** Swami has quit IRC20:34
*** leeantho_ has joined #openstack-meeting20:36
*** andymaier has joined #openstack-meeting20:36
*** Swami has joined #openstack-meeting20:37
*** leeantho__ has joined #openstack-meeting20:37
*** greghaynes has joined #openstack-meeting20:37
*** leeantho has quit IRC20:38
*** toddjohn has joined #openstack-meeting20:38
*** leeantho_ has quit IRC20:41
*** toddjohn has quit IRC20:43
*** shaohe_feng has quit IRC20:43
*** synegy34 has joined #openstack-meeting20:44
*** shaohe_feng has joined #openstack-meeting20:44
*** mickeys has joined #openstack-meeting20:44
*** emagana has joined #openstack-meeting20:45
*** mfranc213_ has quit IRC20:47
*** radek_ has quit IRC20:47
*** gatekeep has quit IRC20:47
*** singhj has quit IRC20:48
*** ntpttr__ has joined #openstack-meeting20:48
*** woodster_ has joined #openstack-meeting20:49
*** mfranc213 has joined #openstack-meeting20:49
*** emagana has quit IRC20:49
*** singhj has joined #openstack-meeting20:50
*** matrohon has joined #openstack-meeting20:53
*** shaohe_feng has quit IRC20:53
*** fzdarsky|afk has quit IRC20:54
*** shaohe_feng has joined #openstack-meeting20:54
*** cleong has quit IRC20:54
*** aeng has joined #openstack-meeting20:56
*** maishsk has quit IRC21:01
*** ronghui has quit IRC21:02
*** rtheis has quit IRC21:02
*** shaohe_feng has quit IRC21:04
*** elo has joined #openstack-meeting21:04
*** shaohe_feng has joined #openstack-meeting21:04
*** maishsk has joined #openstack-meeting21:05
*** rrecio_ has quit IRC21:05
*** christx2 has quit IRC21:07
*** mtanino has quit IRC21:08
*** yamamoto has joined #openstack-meeting21:09
*** mbound has joined #openstack-meeting21:09
*** ntpttr__ has quit IRC21:09
*** ntpttr__ has joined #openstack-meeting21:09
*** matrohon has quit IRC21:13
*** mbound has quit IRC21:14
*** shaohe_feng has quit IRC21:14
*** ronghui has joined #openstack-meeting21:14
*** shaohe_feng has joined #openstack-meeting21:14
*** egallen has joined #openstack-meeting21:15
*** nisha__ has joined #openstack-meeting21:16
*** singhj has quit IRC21:16
*** nisha__ has quit IRC21:17
*** singhj has joined #openstack-meeting21:18
*** nisha_ has quit IRC21:19
*** saju_m has quit IRC21:19
*** kaminohana has joined #openstack-meeting21:20
*** jmckind has quit IRC21:21
*** yamamoto has quit IRC21:21
*** shaohe_feng has quit IRC21:24
*** shaohe_feng has joined #openstack-meeting21:25
*** andymaier has quit IRC21:26
*** spotz is now known as spotz_zzz21:27
*** maishsk has quit IRC21:28
*** aysyd has quit IRC21:29
*** dane_leblanc has quit IRC21:29
*** thorst has quit IRC21:33
*** xyang1 has quit IRC21:33
*** thorst has joined #openstack-meeting21:34
*** baoli has joined #openstack-meeting21:34
*** shaohe_feng has quit IRC21:34
*** shaohe_feng has joined #openstack-meeting21:35
*** dasanind has quit IRC21:36
*** sindhu has quit IRC21:37
*** piet has quit IRC21:37
*** thorst has quit IRC21:38
*** amuller has joined #openstack-meeting21:42
*** baumann has joined #openstack-meeting21:42
*** shaohe_feng has quit IRC21:45
*** shaohe_feng has joined #openstack-meeting21:45
*** baumann has quit IRC21:46
*** toscalix has joined #openstack-meeting21:46
*** Daisy has joined #openstack-meeting21:51
*** flwang1 has joined #openstack-meeting21:51
*** shaohe_feng has quit IRC21:55
*** Daisy has quit IRC21:55
*** shaohe_feng has joined #openstack-meeting21:55
dougwigJust boarded a plane, heading back from Alaska.21:56
*** boden has joined #openstack-meeting21:57
*** dmorita has joined #openstack-meeting21:57
*** esberglu has quit IRC21:57
armaxdougwig: lucky you?21:58
*** galstrom is now known as galstrom_zzz21:58
dougwigI.e. I'm going to miss the meeting.22:00
armaxdougwig: booo22:00
armaxdougwig: looks like there’s no-one here anyway22:00
armaxHenryG is not joining either22:00
* armax hopes the other bail too?22:01
armaxothers*22:01
dougwigYou could talk to yourself.  I'll read the transcript later.22:01
kevinbentoni'm here22:01
*** Apoorva_ has joined #openstack-meeting22:01
armaxkevinbenton: damn22:02
*** whenry has quit IRC22:02
armaxif we have no quorum, there cannot be fist fight22:02
armaxwell22:03
kevinbentoncancel for today i guess?22:04
armaxlet’s wait another minute or two, otherwise we’ll cancel22:04
dasmarmax: are you planning some kind of punishment on mid-cycle for everyone who didn't show on this meeting?22:04
*** Apoorva has quit IRC22:04
dasmarmax: maybe it would help with being on time? ;)22:04
armaxdasm: you gave me a great idea!22:04
*** shaohe_feng has quit IRC22:05
dasmarmax: but please, don't tell anyone that i suggested this :)22:05
*** jungleboyj has quit IRC22:05
armaxdasm: of course I will22:06
armax:)22:06
armax#startmeeting neutron_drivers22:06
openstackMeeting 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
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.22:06
*** openstack changes topic to " (Meeting topic: neutron_drivers)"22:06
armaxno quorum22:06
openstackThe meeting name has been set to 'neutron_drivers'22:06
armax#endmeeting22:06
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"22:06
openstackMeeting ended Thu Jul 28 22:06:12 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)22:06
openstackMinutes:        http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-28-22.06.html22:06
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-28-22.06.txt22:06
openstackLog:            http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-28-22.06.log.html22:06
armaxshortest meeting ever22:06
dasmLOL22:06
*** shaohe_feng has joined #openstack-meeting22:06
*** uxdanielle has quit IRC22:06
amullereh22:07
*** leeantho__ has quit IRC22:09
*** diana_clarke has left #openstack-meeting22:10
*** asettle has joined #openstack-meeting22:10
*** tonytan4ever has quit IRC22:10
*** leeantho has joined #openstack-meeting22:11
*** dmorita has quit IRC22:12
*** hashar_ has quit IRC22:13
*** dmorita has joined #openstack-meeting22:13
*** dmorita has quit IRC22:14
*** dmorita_ has joined #openstack-meeting22:14
*** shaohe_feng has quit IRC22:15
*** shaohe_feng has joined #openstack-meeting22:16
*** asettle has quit IRC22:17
*** spotz_zzz is now known as spotz22:17
*** yamamoto has joined #openstack-meeting22:22
*** boden has left #openstack-meeting22:22
*** dbecker has joined #openstack-meeting22:25
*** shaohe_feng has quit IRC22:26
*** shaohe_feng has joined #openstack-meeting22:27
*** yamamoto has quit IRC22:27
*** krtaylor has quit IRC22:31
*** ntpttr- has quit IRC22:31
*** dtrainor has quit IRC22:31
*** amuller has quit IRC22:34
*** shaohe_feng has quit IRC22:36
*** ntpttr- has joined #openstack-meeting22:36
*** rbak has quit IRC22:37
*** dtrainor has joined #openstack-meeting22:39
*** egallen has quit IRC22:40
*** shaohe_feng has joined #openstack-meeting22:41
*** singlethink has quit IRC22:41
*** sarob has joined #openstack-meeting22:41
*** mickeys has quit IRC22:42
*** dtrainor has quit IRC22:42
*** dtrainor has joined #openstack-meeting22:43
*** sarob has quit IRC22:46
*** shaohe_feng has quit IRC22:46
*** sarob has joined #openstack-meeting22:46
*** yamahata has quit IRC22:47
*** shaohe_feng has joined #openstack-meeting22:47
*** toddjohn has joined #openstack-meeting22:54
*** shaohe_feng has quit IRC22:56
*** shaohe_feng has joined #openstack-meeting22:57
*** dimtruck is now known as zz_dimtruck22:58
*** sindhu has joined #openstack-meeting22:58
*** claudiub|2 has joined #openstack-meeting22:59
*** toddjohn has quit IRC22:59
*** yamahata has joined #openstack-meeting23:00
*** roxanagh_ has joined #openstack-meeting23:01
*** fnaval has joined #openstack-meeting23:02
*** zhonghua-lee has quit IRC23:02
*** fnaval has quit IRC23:02
*** mickeys has joined #openstack-meeting23:03
*** fnaval has joined #openstack-meeting23:03
*** alyson_ has quit IRC23:03
*** zhonghua-lee has joined #openstack-meeting23:03
*** JRobinson__ has joined #openstack-meeting23:04
*** pradk has quit IRC23:04
*** jamesdenton has joined #openstack-meeting23:06
*** roxanagh_ has quit IRC23:06
*** jamesdenton has quit IRC23:06
*** shaohe_feng has quit IRC23:07
*** mickeys has quit IRC23:07
*** shaohe_feng has joined #openstack-meeting23:08
*** tpsilva has quit IRC23:08
*** dmorita_ has quit IRC23:10
*** dmorita has joined #openstack-meeting23:11
*** tonytan4ever has joined #openstack-meeting23:11
*** sdague has quit IRC23:11
*** tonytan4ever has quit IRC23:16
*** emagana has joined #openstack-meeting23:16
*** shaohe_feng has quit IRC23:17
*** shaohe_feng has joined #openstack-meeting23:18
*** andymaier has joined #openstack-meeting23:18
*** Apoorva_ has quit IRC23:18
*** Apoorva has joined #openstack-meeting23:19
*** dbecker has quit IRC23:19
*** emagana has quit IRC23:20
*** bobh has joined #openstack-meeting23:21
*** jamesdenton has joined #openstack-meeting23:22
*** tonytan4ever has joined #openstack-meeting23:23
*** Leom has quit IRC23:23
*** yamamoto has joined #openstack-meeting23:24
*** jamesden_ has joined #openstack-meeting23:24
*** tonytan_brb has joined #openstack-meeting23:24
*** toscalix has quit IRC23:24
*** ntpttr__ has quit IRC23:26
*** mickeys has joined #openstack-meeting23:26
*** shaohe_feng has quit IRC23:27
*** shaohe_feng has joined #openstack-meeting23:28
*** jamesdenton has quit IRC23:28
*** tonytan4ever has quit IRC23:28
*** yamamoto has quit IRC23:29
*** Patifa has joined #openstack-meeting23:29
*** bobh has quit IRC23:30
*** cknight has quit IRC23:30
*** whenry has joined #openstack-meeting23:31
*** Guest39997 has quit IRC23:31
*** enriquetaso has joined #openstack-meeting23:31
*** elopez_ has quit IRC23:34
*** jaypipes has quit IRC23:35
*** singhj has quit IRC23:36
*** shaohe_feng has quit IRC23:37
*** sdague has joined #openstack-meeting23:38
*** shaohe_feng has joined #openstack-meeting23:38
*** singhj has joined #openstack-meeting23:39
*** sdague has quit IRC23:43
*** toddjohn has joined #openstack-meeting23:45
*** hoangcx2 has joined #openstack-meeting23:46
*** tochi has joined #openstack-meeting23:47
*** hoangcx has quit IRC23:47
*** shaohe_feng has quit IRC23:48
*** timcline has joined #openstack-meeting23:48
*** shaohe_feng has joined #openstack-meeting23:48
*** tonytan_brb has quit IRC23:52
*** itlinux has joined #openstack-meeting23:55
*** shaohe_feng has quit IRC23:58
*** whenry has quit IRC23:58
*** shaohe_feng has joined #openstack-meeting23:59

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