Friday, 2016-07-29

gmannoomichi: yea, but current tempest patch also states same right?00:00
*** rossella_s has quit IRC00:00
mtreinishgmann: no, I want to avoid adding tests just because a microversion changed a schema00:00
mtreinishwe don't want to overload tempest just to test semantics00:00
*** yangyape_ has quit IRC00:00
*** rossella_s has joined #openstack-qa00:00
mtreinishin most cases we'll get coverage by a real test that depends on a higher microversion00:00
oomichigmann: or the temepst patch just says we need to implement the corresponding tempest patch before the end of cycle?00:00
gmannmtreinish: actually  if we just fill the gap of schema by adding a higher most microversion tests at end of cycle,00:00
gmannwe will be leaving the specific microversion changes untested through schema00:01
gmanni mean, 2.3 schema can be covered under 2.25 microversion patch00:01
mtreinishgmann: sure that's fine too. The point of that note is to say we don't want to leave a schema uncovered before the release. However in the normal case we shouldn't just add a test which would normally be invalid (like a db surface test only)00:02
gmannbut 2.3 alone is not tested, which means if 2.3 version adding more property than expected00:02
mtreinishgmann: sure, and I'm ok with that. We're not testing the entire api surface anyway. We can't00:02
gmannmtreinish: but we will leave the schema validation testing for some microversion and do for some00:03
gmannmtreinish: just filling schema should not be our goal, i think to tests each microvesion which change response through schema00:04
gmannbecause we detected many bugs using schema validation.00:04
mtreinishgmann: I'm coming at it from the perspective that schema validation is a byproduct of doing our normal testing, and strictly validating every change because of microversions is not what we want to do00:04
gmannmtreinish: actually tests will be just easy and less time taking00:04
mtreinishgmann: my argument is think about it this way we normally would reject a test that just did something like server tags. It's strictly db level metadata no reason to validate that in tempest00:05
mtreinishwe can't cover everything, we tried that and it wasn't possible00:05
gmannmtreinish:  yea completely agree on you, but tempest has schema as of now00:06
mtreinishand little tests that take ~1-2secs add up when you add 100 of them00:06
gmannmtreinish: but i think that worth when those tests can detect many key bugs :)00:07
*** Suyi_ has quit IRC00:07
gmannmtreinish: i agree those schema validation things should be out of Tempest then we are consistent with all tests scope00:07
mtreinishgmann: sure, but I'm saying that the schema being in tempest is just a byproduct of how we run things. Not a goal, if we did that we'd probably have a declarative test suite that just did the schema validation00:08
mtreinishgmann: I think having the schemas in tempest is a good thing. But I think saying we have to validate every api because we have them is not correct00:08
gmannmtreinish: hmmm00:09
gmannmtreinish: another point here is we might leaving those lower version schema untested00:09
oomichigmann: mtreinish: after mriedem's patch https://review.openstack.org/#/c/346080/ , all developers should implement such kind of thing to implement microversions without us :)00:09
gmannmtreinish: they are covered now or in future till use deepcopy/inheritance  etc00:09
gmannmtreinish: when we have raw schema in each file as we decided to do (in https://review.openstack.org/#/c/306245/)00:10
oomichigmann: mtreinish: necessary to catch all existing microversions by us before that00:10
mriedemmtreinish: i could have swore that at the nova midcycle you thought we needed to fill gaps for things that changed schemas00:10
gmannthen it is difficult to make all schmea tested on gate00:10
mriedemand even tests for api/db stuff in nova would be fine if they changed the response schema00:10
mriedemsince nova doesn't test the response schema00:10
mriedemmtreinish: not every api, just the ones that change the response schema00:11
mtreinishmriedem: I said that but for gaps in our schema at the end of cycle00:11
mtreinishmaybe I'm the minority here00:11
*** Apoorva has quit IRC00:11
mriedemmtreinish: so you're good with things in nova api that only hit the api/db, not cross-service, but change the response schema to be in tempest - just not mid cycle?00:11
mriedemi thought we wanted them at the same time as the nova change that introduces them so we don't have to play catchup after FF00:12
mtreinishmriedem: and assuming there isn't a schema added for it already because something with a greater version needed it00:12
mtreinishlike the whole 2.26 thing00:12
gmannmriedem: mtreinish and complete tests of each schema (microversion changes )alone00:12
mriedemsure, but i guess i don't see the point in waiting until (a) something higher needs it or (b) after FF to fill gaps00:12
mriedemi guess the difference is you get implicit coverage in the case of (a)00:13
mriedemlike 2.2600:13
mriedembut like 2.3, there were tests in tempest that tickled part of that change, but not all of it00:13
mriedemso gmann was adding separate tests for the other parts of the 2.3 change00:13
gmannmtreinish: mriedem  but  implicit coverage will be gone when we separate schema implementation from deepcopy00:14
gmannit is till we deepcopy the previous version schema in higher one00:14
mtreinishmriedem: right, that's where the end of the cycle bit comes into play in what I was pushing for. Only add these (normally rejected tests) tests assuming the microversion doesn't have any implicit (or explicit) coverage by ff00:14
*** fnaval has quit IRC00:15
mtreinishmriedem: my rationale was trying to avoid test explosion00:15
mtreinishmriedem: if we wait until ff (or until the api is frozen for the cycle) then we should know where the gaps will be00:15
gmannmtreinish: but implicit coverage is gone when stop using deepcopy in schema00:15
mtreinishgmann: why? the schemas still build off of each other00:16
mtreinishyou can't have a 2.26 schema without 2.{1..15}00:16
mriedemon a side note, i prefer the deepcopy00:16
gmannmtreinish: no, all will be independent  - https://review.openstack.org/#/c/306245/300:16
mtreinishmriedem: really? even though you have to have the entire schema in your head to know what it really means00:17
gmannmriedem: but that makes schema very clumsy and difficult to read00:17
*** yamahata has quit IRC00:17
mriedemmtreinish: i like just seeing the diff00:17
mriedemi guess it depends on what you're looking at it for00:17
mriedemif you rely on it for writing new tests, then i can see how it would be annoying00:17
gmannmriedem: and as microversion keep changing schema it will  be more worst00:17
mtreinishgmann: yes, that schema is 2.2 specific, but it includes all the params from 2.100:18
mtreinishlook I'm fine being outvoted here I don't care that much00:18
gmannmtreinish: yea so case for example 2.3 doing same schema change00:18
mriedemmtreinish: you probably won't agree with my nova docs change then https://review.openstack.org/#/c/346080/00:18
gmannmtreinish: and we do not add 2.2 tests and try to cover the same in 2.3 tests00:18
mtreinishat the most we're talking what tests for 15 versions a cycle?00:19
mriedemhonestly i kind of just want the QA team to decide what their stance is, and then the nova docs and process can follow accordingly00:19
oomichimriedem: we will be able to see the difference by '$ diff -u schema1 schema2'00:19
oomichiideally00:19
mtreinishmriedem: there's no clean separation here. Everyone involved in the discussion has feet in both camps00:19
mtreinishmriedem: including you :)00:19
mriedemmtreinish: i thought it was sorted out at the midcycle00:20
mriedemand i had replied to the ML about what i thought the agreement was00:20
gmannmtreinish: true, i was on other side as we speak the same in linuxCon :)00:20
oomichicurrent deepcopy way requires all previous schema changes to know the lates microversion schema00:20
mtreinishheh,  clearly not, because everyone is disagreeing with me now :)00:20
mriedemmtreinish: it could just be you that's changing your opinion every day :)00:21
mriedemmtreinish: clearly i don't think i can be in the wrong here00:21
mriedemthat just doesn't happen00:21
gmann:)00:21
gmannoomichi: true00:21
mriedemso didn't we want to do them as the api changes were introduced to avoid several changes up for review at once in tempest that had to fill the same gap, like with 2.26?00:22
mriedemor is that not a concern and it's just FIFO?00:22
gmannoomichi: deepcopy is easy to implement and review but hard to understand schema00:22
oomichigmann: yeah00:23
mriedemgmann: oomichi: alternatively, you could deepcopy the functional bits, but have the full schema per microversion in a comment block00:23
mtreinishmriedem: I guess everyone is against me here, so I'm fine being outvoted and leaving what you have there00:23
oomichigmann: easy to implement anyways because of just '$ copy schema1 schema2; vi schema2' ;)00:24
gmannmriedem: 2.26 things in all patches not good. i am going to give comment in you get-me-network tests patch to improve 2.26 schema as i did in another one00:24
gmannmriedem: so it is very hard to review the same thing and updates in each patches. hope your one gets in soon00:24
*** tqtran has quit IRC00:25
*** yamamoto_ has joined #openstack-qa00:25
gmannmtreinish: oomichi mriedem if we are concern with lot of tests running all the way then how about having separate job for microversion tests only00:27
oomichido we have any list or etherpad for reviewing patches of microversions now?00:27
mtreinishgmann: that doesn't necessarily scale00:27
gmannmay be bad idea as it would get tested with all backend and other00:27
*** tochi has quit IRC00:27
gmannoomichi: not list but there are many00:28
gmannwould->would not00:28
mtreinishgmann: if we're going to land them in tempest I don't think splitting them off into a corner would be the right approach00:29
* gmann always keep forgetting *not* :(00:29
mtreinishgmann: it's really all or nothing00:29
gmannmtreinish: yea00:29
*** ddieterly has joined #openstack-qa00:29
mtreinishlike I said, I don't really have a strong preference here. I just thought we reached a different conclusion last week00:29
mtreinishand not I'm confused00:29
mtreinishif you guys think the benefits outweigh the extra test load (not just runtime but review and maint overhead too) then I'm fine deferring to that00:30
mtreinishs/not/now00:30
*** yamamoto_ has quit IRC00:31
oomichimtreinish: different conclusion is common thing of meetings in general00:32
oomichiI want to see the separation of microversion tests a little bit to know the operation time00:33
openstackrecheckConsole logs not available after 13:27s for gate-tempest-dsvm-ironic-ipa-partition-pxe_ssh-tinyipa 340601,16,51a11a100:33
oomichiif we have a concern about the time00:33
mtreinishoomichi: just use the subunit data from a run, the data is all there00:33
oomichimtreinish: checking..00:34
mtreinishyou can filter out just the microversion tests and pass it to subunit-trace or something else to see the total runtime00:34
gmannmtreinish: one by one or some regex we can use00:34
mtreinishgmann: use subunit-filter it supports both00:35
gmannok00:35
mtreinishsomething like: 'cat testrepository.subunit | subunit-filter --regex | subunit-trace'00:35
*** fnaval has joined #openstack-qa00:35
*** fnaval has quit IRC00:37
*** fnaval has joined #openstack-qa00:37
*** artom has quit IRC00:38
*** woodster_ has quit IRC00:39
*** artom has joined #openstack-qa00:40
*** tochi has joined #openstack-qa00:40
*** Swami has quit IRC00:41
*** yamahata has joined #openstack-qa00:46
oomichihumm, current microversion implementation way seems difficult to search the tests00:47
*** ddieterly is now known as ddieterly[away]00:47
oomichiinconsistent module names, class names00:47
mriedemmtreinish: any thoughts on this? https://review.openstack.org/#/c/348250/ http://logs.openstack.org/50/348250/3/check/gate-grenade-dsvm-multinode/f0cf35b/logs/grenade.sh.txt.gz#_2016-07-28_23_48_40_94300:47
mriedemi'm not sure why it wouldn't find rootwrap 5.0.000:48
oomichiKeyPairsV22TestJSON  - v2.200:48
oomichiKeyPairsV210TestJSON - v2.1000:48
oomichiAttachVolumeShelveTestJSON  - v2.2000:48
oomichiLiveAutoBlockMigrationV225TestJSON - v2.2500:48
mtreinishmriedem: the bandersnatch sync got stuck, clarkb had to manually resync everything00:48
mtreinishand it's taking forever00:48
mtreinishsdague was harping him all day about how far it had gotten00:48
mtreinishlast time I saw an update (a few hours ago) it was only at 'l' and still moving very slowly00:49
*** jamielennox is now known as jamielennox|away00:49
*** ddieterly[away] has quit IRC00:51
*** fnaval has quit IRC00:57
openstackrecheckConsole logs not available after 13:23s for gate-keystone-python27-db-ubuntu-xenial 348521,2,554d77200:58
openstackgerritMerged openstack/tempest: Do not use $ in OS user password  https://review.openstack.org/34680000:58
openstackgerritWenyan Zhang proposed openstack-dev/devstack: Remove all *.pyc files in $DEST when executing clean.sh  https://review.openstack.org/33931200:58
openstackgerritMerged openstack/tempest: Minor change to comment  https://review.openstack.org/34761200:59
openstackgerritMerged openstack/tempest: Heat: wait condition: allow insecure HTTPS url  https://review.openstack.org/29281301:00
openstackgerritMerged openstack/tempest: Increase size of subnet allocation pool  https://review.openstack.org/33432401:00
mriedemmtreinish: ah ok01:02
*** mmandel has joined #openstack-qa01:09
*** yamahata has quit IRC01:10
gmannmriedem: few comment in https://review.openstack.org/#/c/327191/01:11
gmannmriedem: do we need thia as admin tests?01:11
*** Liuqing has joined #openstack-qa01:12
gmannoomichi: yea, but that should be ok right?01:14
oomichigmann: ah, I missed that. if tests don't use admin, it would be necessary to change as you said01:16
gmannoomichi: yea and i think we do not need admin on those tests as it is create server call01:16
*** yangyapeng has joined #openstack-qa01:17
*** yangyapeng has joined #openstack-qa01:18
mriedemgmann: it was originally not an admin test but i needed it to be admin for a reason01:20
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full-ubuntu-xenial 348250,3,88c8d6f01:23
*** yamamoto_ has joined #openstack-qa01:27
mriedemgmann: it's an admin test because it uses force_tenant_isolation = True01:27
*** yamamoto_ has quit IRC01:32
*** jamielennox|away is now known as jamielennox01:34
openstackrecheckConsole logs not available after 13:24s for gate-nova-python27-db-ubuntu-xenial 348484,2,df118d201:36
*** rfolco has quit IRC01:38
*** EinstCrazy has joined #openstack-qa01:44
*** yamahata has joined #openstack-qa01:44
*** EinstCrazy has quit IRC01:45
*** EinstCrazy has joined #openstack-qa01:45
*** mmandel has quit IRC01:45
*** oomichi has quit IRC01:46
*** mriedem has quit IRC01:46
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348586,1,a75a0f201:50
*** gvrangan has quit IRC01:51
*** yangyape_ has joined #openstack-qa01:58
*** yangyapeng has quit IRC02:02
openstackrecheckConsole logs not available after 13:23s for gate-cinder-python27-db-ubuntu-xenial 344987,5,67f998402:03
*** yamahata has quit IRC02:15
openstackgerritguo yunxian proposed openstack/tempest: Do not use $ in regex  https://review.openstack.org/34861102:16
openstackrecheckConsole logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 314781,24,76f4f6302:16
*** yangyapeng has joined #openstack-qa02:19
*** yangyape_ has quit IRC02:22
*** yangyape_ has joined #openstack-qa02:23
*** yangyapeng has quit IRC02:26
*** yamamoto_ has joined #openstack-qa02:28
openstackrecheckConsole logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348583,1,f2f19bf02:32
*** Liuqing has quit IRC02:32
*** jamielennox is now known as jamielennox|away02:32
*** Liuqing has joined #openstack-qa02:33
gmannmriedem: ah, right. Thanks02:34
*** yamamoto_ has quit IRC02:34
*** Liuqing has quit IRC02:37
*** Liuqing has joined #openstack-qa02:39
*** itzikb has joined #openstack-qa02:42
*** yangyape_ has quit IRC02:42
*** yangyapeng has joined #openstack-qa02:42
*** zz_dimtruck is now known as dimtruck02:43
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 347593,2,188f05d02:45
*** gouthamr_ has quit IRC02:51
openstackrecheckConsole logs not available after 13:25s for gate-nova-docs-ubuntu-xenial 348512,1,6c6847502:59
*** yangyape_ has joined #openstack-qa03:11
*** yangyapeng has quit IRC03:11
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348591,4,84619ce03:12
*** yangyapeng has joined #openstack-qa03:23
*** yangyape_ has quit IRC03:23
openstackrecheckConsole logs not available after 13:51s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348250,3,19bcd5503:26
*** yangyapeng has joined #openstack-qa03:27
openstackgerritguo yunxian proposed openstack/tempest: Delete no meaningful definition  https://review.openstack.org/34870803:29
*** yamamoto_ has joined #openstack-qa03:31
*** tochi has quit IRC03:34
*** yamamoto_ has quit IRC03:36
openstackrecheckConsole logs not available after 13:59s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 340270,9,1aac40c03:40
*** yamamoto_ has joined #openstack-qa03:44
openstackgerritgreghaynes proposed openstack-dev/devstack: Set oslo_messaging_notifications driver  https://review.openstack.org/34871603:47
*** yangyape_ has joined #openstack-qa03:47
*** yangyape_ has quit IRC03:47
*** yangyape_ has joined #openstack-qa03:48
*** yangyapeng has quit IRC03:48
*** hieulq has joined #openstack-qa03:51
*** zackf has quit IRC03:52
openstackrecheckConsole logs not available after 13:37s for gate-nova-python34-db 333098,4,88d067c03:54
*** tochi has joined #openstack-qa03:57
openstackgerritSteve Baker proposed openstack-infra/devstack-gate: Remove unused heat config  https://review.openstack.org/34871903:58
openstackgerritgreghaynes proposed openstack-dev/devstack: Set oslo_messaging_notifications driver  https://review.openstack.org/34871604:01
openstackrecheckConsole logs not available after 13:32s for gate-nova-python27-db-ubuntu-xenial 330995,5,883b1ce04:08
*** itzikb has quit IRC04:21
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 339312,3,c38856204:21
*** yamamoto_ has quit IRC04:34
*** krtaylor has joined #openstack-qa04:35
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348487,1,fea45b504:35
*** zackf has joined #openstack-qa04:37
*** chandankumar has joined #openstack-qa04:38
*** zackf has quit IRC04:44
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 347509,3,8d561d604:48
openstackrecheckConsole logs not available after 13:22s for gate-cinder-python34-db 344987,5,8bd3d3205:02
*** yfried has joined #openstack-qa05:04
*** yamamoto_ has joined #openstack-qa05:15
openstackrecheckConsole logs not available after 13:25s for periodic-tempest-dsvm-all-master 348158,1,c9140c905:15
*** pglass has joined #openstack-qa05:16
*** pglass has quit IRC05:17
openstackgerritguo yunxian proposed openstack/tempest: Modify a spelling mistake  https://review.openstack.org/34873105:17
openstackgerritguo yunxian proposed openstack/tempest: Modify a spelling mistake  https://review.openstack.org/34873105:19
*** zackf has joined #openstack-qa05:21
*** zackf has quit IRC05:25
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 341345,4,a11592105:29
*** shausy has joined #openstack-qa05:31
*** yfried has quit IRC05:32
openstackrecheckConsole logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 321492,15,d47995705:43
*** amotoki has joined #openstack-qa05:46
*** pgadiya has joined #openstack-qa05:50
*** sridharg has joined #openstack-qa05:55
openstackrecheckConsole logs not available after 13:28s for gate-tempest-dsvm-full-ubuntu-xenial 348518,1,c85478305:56
*** gouthamr has joined #openstack-qa06:01
*** Ravikiran_K has joined #openstack-qa06:06
*** david-lyle has joined #openstack-qa06:07
openstackgerritguo yunxian proposed openstack/tempest: assertEqual can be used instead of assertListEqual  https://review.openstack.org/34874406:09
openstackrecheckConsole logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348517,1,1290af806:10
*** gouthamr has quit IRC06:10
*** gyx has joined #openstack-qa06:12
*** e0ne has joined #openstack-qa06:12
*** nwkarsten has joined #openstack-qa06:17
*** shausy has quit IRC06:20
*** nwkarsten has quit IRC06:20
*** nwkarsten has joined #openstack-qa06:21
openstackrecheckConsole logs not available after 13:28s for gate-tempest-dsvm-full-ubuntu-xenial 348586,1,fc5af7c06:23
gyxI have some patches to be reviewed06:26
*** nwkarsten has quit IRC06:26
gyxCan somebody  help me to see it06:28
gyxhttps://review.openstack.org/#/c/348611/06:29
gyxhttps://review.openstack.org/#/c/348708/06:29
*** paul-carlton2 has joined #openstack-qa06:30
gyxThanks !06:30
*** csomerville has quit IRC06:35
*** cody-somerville has joined #openstack-qa06:36
*** armax has quit IRC06:36
openstackrecheckConsole logs not available after 13:26s for gate-requirements-integration-dsvm 348450,1,bc19ac106:37
*** tesseract- has joined #openstack-qa06:37
*** gvrangan has joined #openstack-qa06:38
*** david-lyle has quit IRC06:45
*** pcaruana has joined #openstack-qa06:45
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348520,1,f0b62be06:50
openstackgerritguo yunxian proposed openstack/tempest: Deprecate method get_ipv6_addr_by_EUI64  https://review.openstack.org/33533507:01
openstackrecheckConsole logs not available after 13:32s for gate-grenade-dsvm-ubuntu-trusty 348531,3,dfda21407:04
*** anshul has joined #openstack-qa07:05
openstackrecheckConsole logs not available after 13:35s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 345022,8,1e7381307:18
*** davidlenwell has quit IRC07:22
*** gfidente has joined #openstack-qa07:23
*** gfidente has quit IRC07:23
*** gfidente has joined #openstack-qa07:23
*** jdandrea has joined #openstack-qa07:25
*** jdandrea_ has quit IRC07:29
*** tochi has quit IRC07:29
openstackrecheckConsole logs not available after 13:43s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348715,1,a49d30007:32
*** tochi has joined #openstack-qa07:32
*** zackf has joined #openstack-qa07:32
*** davidlenwell has joined #openstack-qa07:34
*** jlanoux has joined #openstack-qa07:36
*** zackf has quit IRC07:39
*** shardy has joined #openstack-qa07:39
*** grafuls has joined #openstack-qa07:41
*** Serlex has joined #openstack-qa07:43
*** dimtruck is now known as zz_dimtruck07:45
openstackrecheckConsole logs not available after 13:49s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348450,1,c31fa0807:46
andreafmkoderer: if you have a moment, https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/client-manager-refactor could use some love. And this is manila using it: https://review.openstack.org/#/c/334596/07:53
*** zackf has joined #openstack-qa07:56
*** yangyapeng has joined #openstack-qa07:57
mkodererandreaf: sure07:58
*** yangyap__ has joined #openstack-qa07:58
openstackrecheckConsole logs not available after 13:38s for gate-cinder-python27-db-ubuntu-xenial 344987,5,bb66cf207:59
*** rossella_s has quit IRC08:00
*** rossella_s has joined #openstack-qa08:00
*** e0ne has quit IRC08:00
*** yangyape_ has quit IRC08:00
*** yangyapeng has quit IRC08:01
*** zackf has quit IRC08:02
*** gvrangan has quit IRC08:05
*** gyx has quit IRC08:06
openstackrecheckConsole logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348203,1,b975d8408:13
*** zackf has joined #openstack-qa08:19
*** gyx has joined #openstack-qa08:22
*** zackf has quit IRC08:26
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 347652,2,2dc36e708:26
*** yamamoto_ has quit IRC08:30
*** zackf has joined #openstack-qa08:33
*** gyx has quit IRC08:34
*** yamahata has joined #openstack-qa08:37
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348517,1,d9f4b2f08:40
*** zackf has quit IRC08:40
*** r-mibu has quit IRC08:41
openstackgerritguo yunxian proposed openstack/tempest: Modified into a more appropriate function  https://review.openstack.org/34878608:41
*** shausy has joined #openstack-qa08:45
*** ramishra has quit IRC08:48
*** gyx has joined #openstack-qa08:51
*** zackf has joined #openstack-qa08:51
*** r-mibu has joined #openstack-qa08:51
*** e0ne has joined #openstack-qa08:52
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348520,1,e8abd4308:53
gmannandreaf: just commented on https://review.openstack.org/#/c/333513/2208:56
*** amotoki has quit IRC08:56
gmannandreaf: for congress case it will not be issue as ceilometer serice client will be exposed by them and plugin is installed by ceilometer which is must for congress tests08:57
*** zackf has quit IRC08:57
gmannandreaf: but it could have been issue when ceilometer not installing ceilometer plugin (if plugin in its own repo), in this case congress plugins and ceilometer plugins both have to expose them08:58
gmannandreaf: i hope i clarify my concern08:58
*** amotoki has joined #openstack-qa09:00
openstackgerritVitaly Kramskikh proposed openstack/eslint-config-openstack: Added config with ES2015-only rules  https://review.openstack.org/34687509:04
*** e0ne has quit IRC09:05
openstackgerritguo yunxian proposed openstack/tempest: Do not use $ in regex  https://review.openstack.org/34861109:07
openstackrecheckConsole logs not available after 13:30s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 318435,98,7d5a69509:07
openstackrecheckConsole logs not available after 13:31s for gate-tempest-dsvm-full-ubuntu-xenial 348518,1,ebe696a09:21
*** ihrachys has joined #openstack-qa09:21
*** yangyapeng has joined #openstack-qa09:24
*** gszasz has joined #openstack-qa09:26
openstackgerritMerged openstack/tempest: Remove base_extensions_client for the reability  https://review.openstack.org/34858209:26
*** yangyap__ has quit IRC09:26
openstackgerritMerged openstack/tempest: Remove base_availability_zone_client for the reability  https://review.openstack.org/34858309:27
*** zackf has joined #openstack-qa09:29
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-full-ubuntu-xenial 348586,1,7b78a8309:34
*** zackf has quit IRC09:35
*** yangyapeng has quit IRC09:38
*** yangyapeng has joined #openstack-qa09:38
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348085,2,33d543909:48
*** cdent has joined #openstack-qa09:49
andreafgmann: I left a comment on https://review.openstack.org/#/c/33351309:51
andreafgmann: I don't think we should foster / support multiple implementations of the same service client09:51
gmannandreaf: not mulitple implementation but exposing the other plugins service clients09:53
gmannandreaf: they might expose with just importing service client from other plugin09:53
gmannandreaf: i got your point that if they need any plugin service client then they can install that09:54
gmannandreaf: ohh, 1 min09:54
andreafgmann: the moment a plugin is installed, the service client will be available via the service_clients09:54
gmannandreaf: i think i was thinking import service client from other plugin wihtout installing them09:55
openstackgerritKevin Benton proposed openstack-infra/elastic-recheck: Add query for Nova bug 1607714  https://review.openstack.org/34881209:55
openstackbug 1607714 in OpenStack Compute (nova) "failure attaching interface" [Undecided,New] https://launchpad.net/bugs/160771409:55
gmannandreaf: humm, just thinking if any other case left.09:56
andreafgmann: well if you can import something from a plugin, that plugin will be discovered by stevedore, so the service_client will be automatically registered in the registry09:56
gmannandreaf: yea, you are right. am thinking too much on those i think. (nobody can import those till they are not in system)09:57
gmannandreaf: so service client only should be exposed by their owner only09:57
gmannandreaf: and whoever need those just install those plugin so that service client are available09:58
andreafgmann: yes indeed10:00
gmannandreaf: I think m good here. thanks a lot for patient and clarification :)10:00
*** ramishra has joined #openstack-qa10:00
andreafgmann: thank you for the review!10:00
gmannandreaf: +210:01
andreafgmann: reviews :)10:01
andreafyay10:01
gmann:)10:01
openstackrecheckConsole logs not available after 13:22s for gate-nova-pep8-ubuntu-xenial 303345,172,b234d9e10:01
*** e0ne has joined #openstack-qa10:01
gmannandreaf:  will try to do last 3 during weekend if time otherwise on monday10:02
andreafok thanks10:02
*** zackf has joined #openstack-qa10:02
*** Liuqing has quit IRC10:03
*** zackf has quit IRC10:09
*** yaume has joined #openstack-qa10:09
*** e0ne has quit IRC10:12
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 347991,1,0f969f310:15
*** yamahata has quit IRC10:16
*** jordanP has joined #openstack-qa10:16
*** tosky has joined #openstack-qa10:18
*** sdague has joined #openstack-qa10:19
*** EinstCrazy has quit IRC10:19
*** yangyapeng has quit IRC10:23
openstackgerritMerged openstack/tempest: Delete no meaningful definition  https://review.openstack.org/34870810:24
*** paul-carlton2 has quit IRC10:27
*** paul-carlton2 has joined #openstack-qa10:28
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348731,2,52b6e5c10:28
*** zackf has joined #openstack-qa10:36
*** yaume has quit IRC10:39
*** yaume has joined #openstack-qa10:39
openstackrecheckConsole logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348040,3,faa22fa10:42
*** zackf has quit IRC10:43
openstackgerritMarkus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (live migration test)  https://review.openstack.org/34883610:50
openstackrecheckConsole logs not available after 13:33s for gate-requirements-integration-dsvm 348468,3,a17eeef10:55
openstackgerritMarkus Zoeller (markus_z) proposed openstack/tempest: Nova: get serial console (basic test)  https://review.openstack.org/34681510:56
openstackgerritMarkus Zoeller (markus_z) proposed openstack/tempest: Nova: get serial console (interaction test)  https://review.openstack.org/34691110:56
openstackgerritMarkus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (live migration test)  https://review.openstack.org/34883610:56
openstackgerritMarkus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (port release test)  https://review.openstack.org/34739210:56
*** e0ne has joined #openstack-qa10:58
openstackgerritMarkus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (live migration test)  https://review.openstack.org/34883611:00
*** e0ne has quit IRC11:01
openstackrecheckConsole logs not available after 13:22s for gate-glance_store-python27-ubuntu-xenial 342286,8,31e277811:09
*** vsaienko has quit IRC11:09
openstackrecheckopenstack/cinder change: https://review.openstack.org/247964 failed gate-tempest-dsvm-neutron-full-ubuntu-xenial in the gate queue with an unrecognized error11:10
*** gcheresh has joined #openstack-qa11:14
*** lucasagomes is now known as lucas-hungry11:14
*** zackf has joined #openstack-qa11:19
*** rodrigods has quit IRC11:19
*** rodrigods has joined #openstack-qa11:19
openstackrecheckConsole logs not available after 13:25s for gate-tempest-python35 348744,1,6fb734611:23
*** vsaienko has joined #openstack-qa11:24
*** jrcloud has joined #openstack-qa11:25
*** zackf has quit IRC11:26
*** yangyapeng has joined #openstack-qa11:31
*** jrcloud has quit IRC11:31
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 347267,3,2bc277411:37
*** zackf has joined #openstack-qa11:46
openstackrecheckConsole logs not available after 13:25s for gate-nova-tox-db-functional 348186,3,31f771a11:50
*** e0ne has joined #openstack-qa11:51
*** zackf has quit IRC11:53
*** rfolco has joined #openstack-qa11:56
*** zackf has joined #openstack-qa11:59
*** rossella_s has quit IRC11:59
*** rossella_s has joined #openstack-qa12:00
*** weshay is now known as weshay_mtg12:01
openstackrecheckConsole logs not available after 13:26s for gate-keystone-pep8-ubuntu-xenial 318435,99,d6dfc7212:04
*** zackf has quit IRC12:06
*** aysyd has joined #openstack-qa12:11
openstackgerritguo yunxian proposed openstack/tempest: Edit notes which differnt from actual parameters  https://review.openstack.org/34885812:12
*** zackf has joined #openstack-qa12:12
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full-ubuntu-xenial 318441,71,48f82d712:18
*** zackf has quit IRC12:18
*** Liuqing has joined #openstack-qa12:20
*** lucas-hungry is now known as lucasagomes12:20
*** yaume has quit IRC12:25
*** zackf has joined #openstack-qa12:26
*** csomerville has joined #openstack-qa12:29
*** weshay_mtg is now known as weshay12:31
openstackrecheckConsole logs not available after 13:22s for gate-cinder-python27-db-ubuntu-xenial 348139,3,bae5fdb12:31
*** jrcloud has joined #openstack-qa12:32
*** cody-somerville has quit IRC12:32
*** zackf has quit IRC12:32
*** thiagop has joined #openstack-qa12:38
*** jrcloud has quit IRC12:38
openstackrecheckConsole logs not available after 13:31s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 268608,13,4c2371a12:45
*** zhufl has quit IRC12:49
openstackgerritguo yunxian proposed openstack/tempest: Delete unused parameters  https://review.openstack.org/34887012:52
*** edmondsw has joined #openstack-qa12:54
*** nwkarsten has joined #openstack-qa12:54
*** gcheresh has quit IRC12:55
*** gyx has quit IRC12:56
openstackgerritAndrea Frittoli proposed openstack/tempest: Configure stable service clients via the registry  https://review.openstack.org/34775612:56
openstackgerritAndrea Frittoli proposed openstack/tempest: Migrate service_clients to tempest.lib  https://review.openstack.org/33909712:56
andreafmtreinish: fixed the documentation bit in ^^^12:56
openstackrecheckConsole logs not available after 13:33s for gate-cinder-python27-db-ubuntu-xenial 347267,3,3f2887512:59
*** dkranz has joined #openstack-qa13:00
openstackgerritAndrea Frittoli proposed openstack/tempest: Configure stable service clients via the registry  https://review.openstack.org/34775613:01
openstackgerritAndrea Frittoli proposed openstack/tempest: Migrate service_clients to tempest.lib  https://review.openstack.org/33909713:01
*** zackf has joined #openstack-qa13:01
*** rlrossit has joined #openstack-qa13:02
*** zackf has quit IRC13:08
*** ianw has quit IRC13:10
*** ianw has joined #openstack-qa13:10
openstackgerritafazekas proposed openstack/os-testr: Construct a list of test cases instead of passing a regexp  https://review.openstack.org/34887813:12
openstackrecheckConsole logs not available after 13:28s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 330995,6,f302d0c13:13
afazekasmtreinish, masayukig: can you have a look on https://review.openstack.org/34887813:14
*** _AmitGalitz has joined #openstack-qa13:15
*** gouthamr has joined #openstack-qa13:18
*** AmitGalitz has quit IRC13:19
afazekasgmann, ^13:21
*** porrua has joined #openstack-qa13:25
openstackrecheckConsole logs not available after 13:23s for gate-cinder-python34-db 347272,3,b977c9713:26
*** gszasz has quit IRC13:33
*** cdent_ has joined #openstack-qa13:33
*** nwkarsten has quit IRC13:33
*** nwkarsten has joined #openstack-qa13:34
*** mriedem has joined #openstack-qa13:34
*** ddieterly has joined #openstack-qa13:35
*** cdent has quit IRC13:36
*** cdent_ is now known as cdent13:36
*** rbak has joined #openstack-qa13:36
*** zackf has joined #openstack-qa13:37
*** sridharg has quit IRC13:38
*** nwkarsten has quit IRC13:38
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full-devstack-plugin-ceph 268609,16,fae4ada13:40
*** zackf has quit IRC13:44
*** dustins has joined #openstack-qa13:45
*** nwkarsten has joined #openstack-qa13:46
*** bauzas is now known as bauwser13:49
*** dansmith is now known as superdan13:49
*** rlrossit has quit IRC13:49
*** akshai has joined #openstack-qa13:50
*** zackf has joined #openstack-qa13:51
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full-ubuntu-xenial 347652,3,e4884e613:53
*** pgadiya has quit IRC13:54
*** edmondsw has quit IRC13:56
*** Ravikiran_K has quit IRC13:56
*** mmandel has joined #openstack-qa13:57
*** grafuls has quit IRC13:57
*** zackf has quit IRC13:57
*** amotoki has quit IRC13:58
*** sridharg has joined #openstack-qa14:04
*** tochi has quit IRC14:06
*** akshai has quit IRC14:06
*** zackf has joined #openstack-qa14:07
*** akshai has joined #openstack-qa14:07
openstackrecheckConsole logs not available after 13:28s for gate-nova-python34-db 303345,173,4d2c1e614:07
*** yaume has joined #openstack-qa14:07
openstackgerritMatt Riedemann proposed openstack-infra/elastic-recheck: Add query for Nova bug 1607714  https://review.openstack.org/34881214:09
openstackbug 1607714 in OpenStack Compute (nova) "interface attach tests failing with tap device is busy errors in neutron xenial jobs since 7/28" [High,Confirmed] https://launchpad.net/bugs/160771414:09
*** zackf has quit IRC14:13
*** sridharg has quit IRC14:15
openstackrecheckConsole logs not available after 13:28s for gate-tempest-dsvm-full-ubuntu-xenial 318441,71,9dc5ca114:20
*** pglass has joined #openstack-qa14:26
*** zz_dimtruck is now known as dimtruck14:26
*** dustins has quit IRC14:28
*** hieulq_ has joined #openstack-qa14:30
*** edmondsw has joined #openstack-qa14:34
openstackrecheckConsole logs not available after 13:31s for gate-keystone-python27-db-ubuntu-xenial 318435,99,3f241bd14:34
*** cdent has quit IRC14:36
*** dimtruck is now known as zz_dimtruck14:36
*** dustins has joined #openstack-qa14:40
*** shausy has quit IRC14:40
*** pcrews has quit IRC14:40
*** pcrews has joined #openstack-qa14:41
*** aysyd has quit IRC14:41
*** aysyd has joined #openstack-qa14:42
*** david-lyle has joined #openstack-qa14:42
*** zz_dimtruck is now known as dimtruck14:44
*** david-lyle_ has joined #openstack-qa14:46
*** david-lyle has quit IRC14:47
openstackrecheckConsole logs not available after 13:27s for gate-tempest-pep8-ubuntu-xenial 348744,1,2ade84214:48
*** david-lyle__ has joined #openstack-qa14:48
*** cdent has joined #openstack-qa14:49
*** zackf has joined #openstack-qa14:50
*** david-lyle_ has quit IRC14:52
*** kbaikov has quit IRC14:53
*** jbernard has quit IRC14:55
*** zackf has quit IRC14:57
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 275801,16,901a92a15:01
*** gvrangan has joined #openstack-qa15:02
*** zackf has joined #openstack-qa15:06
*** zackf has quit IRC15:08
*** zackf has joined #openstack-qa15:08
*** armax has joined #openstack-qa15:12
*** e0ne has quit IRC15:14
openstackrecheckConsole logs not available after 13:22s for gate-cinder-python27-db-ubuntu-xenial 247964,5,e46f5ec15:15
*** jbernard has joined #openstack-qa15:17
*** david-lyle has joined #openstack-qa15:23
*** david-lyle__ has quit IRC15:23
*** karthikp_ has joined #openstack-qa15:25
*** weshay is now known as weshay_bbiab15:25
*** karthikp_ has quit IRC15:27
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 325743,4,aa23c0715:28
*** Liuqing has quit IRC15:33
*** anshul has quit IRC15:34
*** yamamoto has joined #openstack-qa15:34
*** jlanoux has quit IRC15:36
*** chandankumar has quit IRC15:38
*** rlrossit has joined #openstack-qa15:40
openstackrecheckConsole logs not available after 13:26s for gate-nova-python27-db-ubuntu-xenial 333248,8,d3045d115:43
*** karthikp_ has joined #openstack-qa15:50
*** Suyi_ has joined #openstack-qa15:50
*** gvrangan has quit IRC15:50
*** hieulq_ has quit IRC15:51
openstackrecheckConsole logs not available after 13:24s for gate-nova-python34-db 345082,4,4ef3ceb15:56
*** karthikp_ has quit IRC15:58
*** sdague has quit IRC15:59
*** rossella_s has quit IRC15:59
*** rossella_s has joined #openstack-qa16:00
*** pcaruana has quit IRC16:01
*** karthikp_ has joined #openstack-qa16:02
*** karthikp_ has quit IRC16:08
*** pilgrimstack has quit IRC16:09
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-postgres-full-ubuntu-trusty-liberty 346911,3,ed3a00716:10
openstackrecheckopenstack/nova change: https://review.openstack.org/347509 failed gate-tempest-dsvm-neutron-full-ubuntu-xenial in the gate queue with an unrecognized error16:10
*** yaume has quit IRC16:13
*** chandankumar has joined #openstack-qa16:16
*** Liuqing has joined #openstack-qa16:21
openstackgerritMatt Riedemann proposed openstack/tempest: Skip test_reassign_port_between_servers until fixed  https://review.openstack.org/34895516:22
mriedemmtreinish: ^16:22
mriedemmtreinish: gonna go to lunch and then work the fix in nova this afternoon16:22
mriedembut with the failure rates that high i want to skip before going into the weekend16:23
mriedemnote that test was added in newton for a specific newton regression, so we don't lose too much on not running on stable until we have a fix16:23
mriedemandreaf: jordanP: gmann: ^16:23
openstackrecheckConsole logs not available after 13:23s for gate-cinder-python34-db 337672,3,a6f0c8f16:24
*** weshay_bbiab is now known as weshay16:24
jordanP+A16:24
mriedemthanks16:25
* mriedem goes for bb16:25
mriedem*bbq16:25
andreafjordanP: you beat me :)16:25
jordanPautoapprove is the way to go :)16:25
andreafmtreinish: thanks for the re-review on the client manager series16:27
*** tesseract- has quit IRC16:30
*** jamielennox|away is now known as jamielennox16:32
*** tqtran has joined #openstack-qa16:34
*** tqtran_ has joined #openstack-qa16:35
*** oomichi has joined #openstack-qa16:36
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348858,1,acc742b16:37
*** tqtran has quit IRC16:38
*** gfidente has quit IRC16:39
*** lucasagomes is now known as lucas-dinner16:41
*** Liuqing has quit IRC16:44
*** e0ne has joined #openstack-qa16:45
*** e0ne has quit IRC16:46
*** Liuqing has joined #openstack-qa16:47
openstackrecheckConsole logs not available after 13:22s for gate-cinder-python27-db-ubuntu-xenial 322459,39,f1a2f0b16:51
*** Liuqing has quit IRC16:54
*** yamahata has joined #openstack-qa16:55
*** Liuqing has joined #openstack-qa16:55
*** sridharg has joined #openstack-qa16:55
openstackrecheckConsole logs not available after 13:27s for gate-nova-python27-db-ubuntu-xenial 348866,1,2beba8f17:05
*** jordanP has quit IRC17:05
*** gvrangan has joined #openstack-qa17:10
*** tosky has quit IRC17:14
*** sdague has joined #openstack-qa17:17
*** pglass has quit IRC17:18
openstackgerritMerged openstack-infra/elastic-recheck: Add query for Nova bug 1607714  https://review.openstack.org/34881217:18
openstackbug 1607714 in OpenStack Compute (nova) "test_reassign_port_between_servers failing with tap device is busy errors in neutron xenial jobs since 7/28" [High,Triaged] https://launchpad.net/bugs/1607714 - Assigned to Matt Riedemann (mriedem)17:18
openstackrecheckConsole logs not available after 13:28s for gate-cinder-pep8-ubuntu-xenial 347944,4,1b7cfd317:19
* oomichi starbucks wifi is super slow..17:26
*** ddieterly is now known as ddieterly[away]17:29
openstackrecheckConsole logs not available after 13:25s for gate-keystone-python35-db 348738,3,aec840817:32
*** shardy has quit IRC17:33
*** fnaval has joined #openstack-qa17:34
*** jamielennox is now known as jamielennox|away17:35
*** Liuqing has quit IRC17:36
*** fnaval has quit IRC17:36
*** fnaval has joined #openstack-qa17:37
*** nwkarsten has quit IRC17:42
*** openstackrecheck has quit IRC17:43
*** openstackrecheck has joined #openstack-qa17:43
*** dustins has quit IRC17:45
*** e0ne has joined #openstack-qa17:50
*** spzala has joined #openstack-qa17:52
openstackgerritFarhad Sunavala proposed openstack-dev/devstack: Rename openvswitch-agent to avoid naming conflict with neutron Closes-Bug: #1593693 This name is already used by neutron for its reference implementation Open vSwitch agent. With binary packaging formats like RPM, an attempt to install both packages (neut  https://review.openstack.org/34899518:01
openstackbug 1593693 in networking-sfc "SFC neutron-openvswitch-agent has same name as vanilla agent" [Undecided,In progress] https://launchpad.net/bugs/1593693 - Assigned to Ihar Hrachyshka (ihar-hrachyshka)18:01
mtreinishoomichi: slower than your office wifi? That normally is pretty bad...18:05
mtreinishandreaf: heh, well I still haven't gotten all the way through yet, still have the last few in the series18:05
oomichimtreinish: heh, yeah slower than my office. it is much time to "git pull"18:07
*** sabeen has joined #openstack-qa18:08
mtreinishoomichi: oh, I bet you found one that doesn't have the google wifi. I'm at starbucks right now too and it's fast enough: http://i.imgur.com/Txatyqj.png (not nearly as good as at home, but enough for pushing code)18:14
*** mtanino has joined #openstack-qa18:14
sdaguesc68cal: what's your monday look like?18:14
oomichimtreinish: which site are you using for the speed test?18:15
mtreinishoomichi: google18:16
mtreinishI just searched for speed test and it gave me a button to push18:16
oomichimtreinish: ok, let me test it18:18
oomichimtreinish: oops, the test is timeout..18:18
openstackgerritIvan Kolodyazhny proposed openstack/tempest: Resource setup for test_snapshot_list_param_* tests  https://review.openstack.org/33206618:18
oomichithat was much slower than google expects18:18
mtreinishoomichi: heh, well maybe time to find another coffee shop :)18:19
oomichimtreinish: yeah, but the other near starbucks are bad service like throwing changes..18:20
oomichianyways, need to bring kids back to home from summer class now, see you later18:21
*** oomichi has quit IRC18:21
*** thiagop has quit IRC18:23
openstackrecheckConsole logs not available after 13:24s for gate-glance-docs-ubuntu-xenial 347352,8,4cb9d8c18:28
openstackgerritMatt Riedemann proposed openstack/tempest: Revert "Skip test_reassign_port_between_servers until fixed"  https://review.openstack.org/34901118:32
openstackgerritMatt Riedemann proposed openstack/tempest: Revert "Skip test_reassign_port_between_servers until fixed"  https://review.openstack.org/34901118:34
*** paul-carlton2 has quit IRC18:36
*** karthikp_ has joined #openstack-qa18:39
*** yamahata has quit IRC18:46
*** nwkarsten has joined #openstack-qa18:46
*** ddieterly[away] is now known as ddieterly18:50
*** gvrangan has quit IRC18:52
openstackrecheckConsole logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348902,1,72b2e9d18:57
*** rfolco has quit IRC19:00
*** dustins has joined #openstack-qa19:03
*** ihrachys has quit IRC19:04
openstackgerritMerged openstack/tempest: Skip test_reassign_port_between_servers until fixed  https://review.openstack.org/34895519:05
*** yamamoto has quit IRC19:06
sc68calsdague: afternoon is good19:07
*** bnemec is now known as beekneemech19:12
sdagueok, cool, let's try to get a google hangout going then, and get me up to speed on the neutron work19:13
*** sridharg has quit IRC19:16
sc68calsdague: sure19:18
*** raildo has quit IRC19:23
openstackgerritMerged openstack/tempest: Service Clients registration interface for plugins  https://review.openstack.org/33351319:33
openstackgerritMerged openstack/tempest: Register Tempest clients via the new interface  https://review.openstack.org/33524219:33
openstackgerritMerged openstack/tempest: Migrate compute client group to client factory  https://review.openstack.org/26007719:34
openstackgerritMerged openstack/tempest: Migrate network client group to client factory  https://review.openstack.org/26106719:34
openstackgerritMerged openstack/tempest: Migrate image client group to client factory  https://review.openstack.org/26299019:34
*** edmondsw has quit IRC19:35
openstackgerritPatrick East proposed openstack-infra/devstack-gate: Copy local.conf to the archived logs directory  https://review.openstack.org/34905319:41
*** yamahata has joined #openstack-qa19:43
*** chandankumar has quit IRC19:45
*** porrua has quit IRC19:52
*** krtaylor has quit IRC19:52
*** raildo has joined #openstack-qa19:52
openstackrecheckConsole logs not available after 13:23s for gate-nova-python34-db 346205,2,ba0525b19:57
*** rlrossit has quit IRC19:59
*** rossella_s has quit IRC19:59
*** rossella_s has joined #openstack-qa20:00
*** ddieterly is now known as ddieterly[away]20:01
*** ddieterly[away] is now known as ddieterly20:01
*** ddieterly is now known as ddieterly[away]20:01
*** ddieterly[away] is now known as ddieterly20:04
*** e0ne has quit IRC20:04
*** yamamoto has joined #openstack-qa20:07
openstackrecheckConsole logs not available after 13:29s for gate-nova-pep8-ubuntu-xenial 348512,2,d45e06320:11
*** yamamoto has quit IRC20:12
*** mriedem has quit IRC20:20
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-full-ubuntu-xenial 344892,4,6f8812120:24
sdaguesc68cal: I was rebuilding my pxe infrastructure this week, so I can quickly reset these machines when I mess them up trying to sort out the right neutron configs for them, so we should be able to just iterate. I've got 3 machines to just cycle through when I bonkers one of them.20:26
openstackrecheckConsole logs not available after 13:24s for gate-nova-python27-db-ubuntu-xenial 342224,5,8b4b77620:37
*** gouthamr has quit IRC20:41
*** akshai has quit IRC20:42
sdaguesc68cal: the thing I'll definitely need to work through with you is the right set of configs to get the thing to run to the end, because I don't seem to have that yet20:44
*** gvrangan has joined #openstack-qa20:45
*** cdent has quit IRC20:50
openstackrecheckConsole logs not available after 13:24s for gate-nova-pep8-ubuntu-xenial 340386,7,7e9a1bc20:51
*** Suyi_ has quit IRC20:54
*** Suyi_ has joined #openstack-qa20:54
*** Serlex has quit IRC20:59
*** raildo has quit IRC21:01
*** ddieterly is now known as ddieterly[away]21:02
*** ddieterly[away] is now known as ddieterly21:03
*** cdent has joined #openstack-qa21:04
*** rfolco has joined #openstack-qa21:04
openstackrecheckConsole logs not available after 13:34s for gate-tempest-dsvm-ironic-ipa-partition-pxe_ssh-tinyipa 275801,17,7faf99c21:04
*** rfolco has quit IRC21:05
*** yamamoto has joined #openstack-qa21:08
*** cdent has quit IRC21:12
*** dustins has quit IRC21:12
*** yamamoto has quit IRC21:13
openstackrecheckConsole logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348427,3,3cbc07521:18
*** sabeen has quit IRC21:23
*** oomichi has joined #openstack-qa21:23
*** spzala has quit IRC21:23
*** armax has quit IRC21:26
*** ddieterly is now known as ddieterly[away]21:32
openstackrecheckConsole logs not available after 13:29s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 330995,6,1f6769c21:32
*** aysyd has quit IRC21:38
*** dims_ has quit IRC21:44
openstackrecheckConsole logs not available after 13:25s for gate-nova-pep8-ubuntu-xenial 333616,7,d018a5a21:46
*** dims has joined #openstack-qa21:46
*** weshay is now known as weshay_afk21:51
openstackrecheckConsole logs not available after 13:22s for gate-glance-docs-ubuntu-xenial 292327,53,3a3cd5b21:59
*** spzala has joined #openstack-qa21:59
*** ajmiller has joined #openstack-qa22:01
*** ajmiller_ has joined #openstack-qa22:03
*** spzala has quit IRC22:04
*** ajmiller has quit IRC22:07
*** superdan has quit IRC22:07
*** mmandel has quit IRC22:09
*** yamamoto has joined #openstack-qa22:10
*** mmandel has joined #openstack-qa22:11
openstackrecheckConsole logs not available after 13:23s for gate-cinder-python34-db 348139,4,3bca48022:13
*** yamamoto has quit IRC22:15
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Remove base_hosts_client for the reability  https://review.openstack.org/34909122:15
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Remove base_services_client for the reability  https://review.openstack.org/34909222:15
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Remove unused TYPE from base_quotas_client  https://review.openstack.org/34909322:15
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Remove the wapper method show_quota_usage()  https://review.openstack.org/34909422:15
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Define volume extensions_clients as library  https://review.openstack.org/34909522:15
openstackgerritMichael Krotscheck proposed openstack-dev/devstack: Export CLOUDS_YAML  https://review.openstack.org/34909822:20
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Define volume extensions_clients as library  https://review.openstack.org/34909522:21
*** ddieterly[away] is now known as ddieterly22:23
*** karthikp_ has quit IRC22:25
openstackrecheckConsole logs not available after 13:26s for gate-nova-docs-ubuntu-xenial 348946,1,6c244d222:26
*** oomichi has quit IRC22:34
*** oomichi has joined #openstack-qa22:34
*** dave-mccowan has quit IRC22:38
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Add : to docstring of service_clients  https://review.openstack.org/34910622:39
openstackrecheckConsole logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348731,2,bf2e95622:40
*** gouthamr has joined #openstack-qa22:45
*** mmandel has quit IRC22:48
*** Guest41489 has joined #openstack-qa22:49
openstackrecheckConsole logs not available after 13:33s for gate-cinder-python34-db 346135,2,ec8cab122:53
*** minwang2 has joined #openstack-qa22:57
*** minwang2 has left #openstack-qa22:58
*** sdague has quit IRC22:59
*** Guest41489 has quit IRC23:02
openstackrecheckConsole logs not available after 13:25s for gate-glance-docs-ubuntu-xenial 340557,14,c1d040423:07
*** yamamoto has joined #openstack-qa23:12
*** yamamoto has quit IRC23:17
openstackrecheckConsole logs not available after 13:24s for gate-glance-python34-db 284941,11,5c5336123:20
*** hongbin has quit IRC23:20
*** woodster_ has joined #openstack-qa23:21
*** ddieterly has quit IRC23:24
*** Guest39119 has joined #openstack-qa23:27
openstackrecheckConsole logs not available after 13:24s for gate-tempest-dsvm-neutron-full-ubuntu-trusty-liberty 348955,1,9a5ca4523:34
*** Suyi_ has quit IRC23:38
openstackrecheckConsole logs not available after 13:23s for gate-os-brick-python27-ubuntu-xenial 328297,11,9a16c6723:47
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: DNM: Enable serial console  https://review.openstack.org/34911623:50
*** Guest39119 is now known as dansmith23:52
*** ajmiller_ has quit IRC23:58

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