gmann | oomichi: yea, but current tempest patch also states same right? | 00:00 |
---|---|---|
*** rossella_s has quit IRC | 00:00 | |
mtreinish | gmann: no, I want to avoid adding tests just because a microversion changed a schema | 00:00 |
mtreinish | we don't want to overload tempest just to test semantics | 00:00 |
*** yangyape_ has quit IRC | 00:00 | |
*** rossella_s has joined #openstack-qa | 00:00 | |
mtreinish | in most cases we'll get coverage by a real test that depends on a higher microversion | 00:00 |
oomichi | gmann: or the temepst patch just says we need to implement the corresponding tempest patch before the end of cycle? | 00:00 |
gmann | mtreinish: actually if we just fill the gap of schema by adding a higher most microversion tests at end of cycle, | 00:00 |
gmann | we will be leaving the specific microversion changes untested through schema | 00:01 |
gmann | i mean, 2.3 schema can be covered under 2.25 microversion patch | 00:01 |
mtreinish | gmann: 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 |
gmann | but 2.3 alone is not tested, which means if 2.3 version adding more property than expected | 00:02 |
mtreinish | gmann: sure, and I'm ok with that. We're not testing the entire api surface anyway. We can't | 00:02 |
gmann | mtreinish: but we will leave the schema validation testing for some microversion and do for some | 00:03 |
gmann | mtreinish: just filling schema should not be our goal, i think to tests each microvesion which change response through schema | 00:04 |
gmann | because we detected many bugs using schema validation. | 00:04 |
mtreinish | gmann: 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 do | 00:04 |
gmann | mtreinish: actually tests will be just easy and less time taking | 00:04 |
mtreinish | gmann: 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 tempest | 00:05 |
mtreinish | we can't cover everything, we tried that and it wasn't possible | 00:05 |
gmann | mtreinish: yea completely agree on you, but tempest has schema as of now | 00:06 |
mtreinish | and little tests that take ~1-2secs add up when you add 100 of them | 00:06 |
gmann | mtreinish: but i think that worth when those tests can detect many key bugs :) | 00:07 |
*** Suyi_ has quit IRC | 00:07 | |
gmann | mtreinish: i agree those schema validation things should be out of Tempest then we are consistent with all tests scope | 00:07 |
mtreinish | gmann: 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 validation | 00:08 |
mtreinish | gmann: 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 correct | 00:08 |
gmann | mtreinish: hmmm | 00:09 |
gmann | mtreinish: another point here is we might leaving those lower version schema untested | 00:09 |
oomichi | gmann: 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 |
gmann | mtreinish: they are covered now or in future till use deepcopy/inheritance etc | 00:09 |
gmann | mtreinish: when we have raw schema in each file as we decided to do (in https://review.openstack.org/#/c/306245/) | 00:10 |
oomichi | gmann: mtreinish: necessary to catch all existing microversions by us before that | 00:10 |
mriedem | mtreinish: i could have swore that at the nova midcycle you thought we needed to fill gaps for things that changed schemas | 00:10 |
gmann | then it is difficult to make all schmea tested on gate | 00:10 |
mriedem | and even tests for api/db stuff in nova would be fine if they changed the response schema | 00:10 |
mriedem | since nova doesn't test the response schema | 00:10 |
mriedem | mtreinish: not every api, just the ones that change the response schema | 00:11 |
mtreinish | mriedem: I said that but for gaps in our schema at the end of cycle | 00:11 |
mtreinish | maybe I'm the minority here | 00:11 |
*** Apoorva has quit IRC | 00:11 | |
mriedem | mtreinish: 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 |
mriedem | i thought we wanted them at the same time as the nova change that introduces them so we don't have to play catchup after FF | 00:12 |
mtreinish | mriedem: and assuming there isn't a schema added for it already because something with a greater version needed it | 00:12 |
mtreinish | like the whole 2.26 thing | 00:12 |
gmann | mriedem: mtreinish and complete tests of each schema (microversion changes )alone | 00:12 |
mriedem | sure, but i guess i don't see the point in waiting until (a) something higher needs it or (b) after FF to fill gaps | 00:12 |
mriedem | i guess the difference is you get implicit coverage in the case of (a) | 00:13 |
mriedem | like 2.26 | 00:13 |
mriedem | but like 2.3, there were tests in tempest that tickled part of that change, but not all of it | 00:13 |
mriedem | so gmann was adding separate tests for the other parts of the 2.3 change | 00:13 |
gmann | mtreinish: mriedem but implicit coverage will be gone when we separate schema implementation from deepcopy | 00:14 |
gmann | it is till we deepcopy the previous version schema in higher one | 00:14 |
mtreinish | mriedem: 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 ff | 00:14 |
*** fnaval has quit IRC | 00:15 | |
mtreinish | mriedem: my rationale was trying to avoid test explosion | 00:15 |
mtreinish | mriedem: if we wait until ff (or until the api is frozen for the cycle) then we should know where the gaps will be | 00:15 |
gmann | mtreinish: but implicit coverage is gone when stop using deepcopy in schema | 00:15 |
mtreinish | gmann: why? the schemas still build off of each other | 00:16 |
mtreinish | you can't have a 2.26 schema without 2.{1..15} | 00:16 |
mriedem | on a side note, i prefer the deepcopy | 00:16 |
gmann | mtreinish: no, all will be independent - https://review.openstack.org/#/c/306245/3 | 00:16 |
mtreinish | mriedem: really? even though you have to have the entire schema in your head to know what it really means | 00:17 |
gmann | mriedem: but that makes schema very clumsy and difficult to read | 00:17 |
*** yamahata has quit IRC | 00:17 | |
mriedem | mtreinish: i like just seeing the diff | 00:17 |
mriedem | i guess it depends on what you're looking at it for | 00:17 |
mriedem | if you rely on it for writing new tests, then i can see how it would be annoying | 00:17 |
gmann | mriedem: and as microversion keep changing schema it will be more worst | 00:17 |
mtreinish | gmann: yes, that schema is 2.2 specific, but it includes all the params from 2.1 | 00:18 |
mtreinish | look I'm fine being outvoted here I don't care that much | 00:18 |
gmann | mtreinish: yea so case for example 2.3 doing same schema change | 00:18 |
mriedem | mtreinish: you probably won't agree with my nova docs change then https://review.openstack.org/#/c/346080/ | 00:18 |
gmann | mtreinish: and we do not add 2.2 tests and try to cover the same in 2.3 tests | 00:18 |
mtreinish | at the most we're talking what tests for 15 versions a cycle? | 00:19 |
mriedem | honestly i kind of just want the QA team to decide what their stance is, and then the nova docs and process can follow accordingly | 00:19 |
oomichi | mriedem: we will be able to see the difference by '$ diff -u schema1 schema2' | 00:19 |
oomichi | ideally | 00:19 |
mtreinish | mriedem: there's no clean separation here. Everyone involved in the discussion has feet in both camps | 00:19 |
mtreinish | mriedem: including you :) | 00:19 |
mriedem | mtreinish: i thought it was sorted out at the midcycle | 00:20 |
mriedem | and i had replied to the ML about what i thought the agreement was | 00:20 |
gmann | mtreinish: true, i was on other side as we speak the same in linuxCon :) | 00:20 |
oomichi | current deepcopy way requires all previous schema changes to know the lates microversion schema | 00:20 |
mtreinish | heh, clearly not, because everyone is disagreeing with me now :) | 00:20 |
mriedem | mtreinish: it could just be you that's changing your opinion every day :) | 00:21 |
mriedem | mtreinish: clearly i don't think i can be in the wrong here | 00:21 |
mriedem | that just doesn't happen | 00:21 |
gmann | :) | 00:21 |
gmann | oomichi: true | 00:21 |
mriedem | so 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 |
mriedem | or is that not a concern and it's just FIFO? | 00:22 |
gmann | oomichi: deepcopy is easy to implement and review but hard to understand schema | 00:22 |
oomichi | gmann: yeah | 00:23 |
mriedem | gmann: oomichi: alternatively, you could deepcopy the functional bits, but have the full schema per microversion in a comment block | 00:23 |
mtreinish | mriedem: I guess everyone is against me here, so I'm fine being outvoted and leaving what you have there | 00:23 |
oomichi | gmann: easy to implement anyways because of just '$ copy schema1 schema2; vi schema2' ;) | 00:24 |
gmann | mriedem: 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 one | 00:24 |
gmann | mriedem: so it is very hard to review the same thing and updates in each patches. hope your one gets in soon | 00:24 |
*** tqtran has quit IRC | 00:25 | |
*** yamamoto_ has joined #openstack-qa | 00:25 | |
gmann | mtreinish: oomichi mriedem if we are concern with lot of tests running all the way then how about having separate job for microversion tests only | 00:27 |
oomichi | do we have any list or etherpad for reviewing patches of microversions now? | 00:27 |
mtreinish | gmann: that doesn't necessarily scale | 00:27 |
gmann | may be bad idea as it would get tested with all backend and other | 00:27 |
*** tochi has quit IRC | 00:27 | |
gmann | oomichi: not list but there are many | 00:28 |
gmann | would->would not | 00:28 |
mtreinish | gmann: if we're going to land them in tempest I don't think splitting them off into a corner would be the right approach | 00:29 |
* gmann always keep forgetting *not* :( | 00:29 | |
mtreinish | gmann: it's really all or nothing | 00:29 |
gmann | mtreinish: yea | 00:29 |
*** ddieterly has joined #openstack-qa | 00:29 | |
mtreinish | like I said, I don't really have a strong preference here. I just thought we reached a different conclusion last week | 00:29 |
mtreinish | and not I'm confused | 00:29 |
mtreinish | if 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 that | 00:30 |
mtreinish | s/not/now | 00:30 |
*** yamamoto_ has quit IRC | 00:31 | |
oomichi | mtreinish: different conclusion is common thing of meetings in general | 00:32 |
oomichi | I want to see the separation of microversion tests a little bit to know the operation time | 00:33 |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-ironic-ipa-partition-pxe_ssh-tinyipa 340601,16,51a11a1 | 00:33 |
oomichi | if we have a concern about the time | 00:33 |
mtreinish | oomichi: just use the subunit data from a run, the data is all there | 00:33 |
oomichi | mtreinish: checking.. | 00:34 |
mtreinish | you can filter out just the microversion tests and pass it to subunit-trace or something else to see the total runtime | 00:34 |
gmann | mtreinish: one by one or some regex we can use | 00:34 |
mtreinish | gmann: use subunit-filter it supports both | 00:35 |
gmann | ok | 00:35 |
mtreinish | something like: 'cat testrepository.subunit | subunit-filter --regex | subunit-trace' | 00:35 |
*** fnaval has joined #openstack-qa | 00:35 | |
*** fnaval has quit IRC | 00:37 | |
*** fnaval has joined #openstack-qa | 00:37 | |
*** artom has quit IRC | 00:38 | |
*** woodster_ has quit IRC | 00:39 | |
*** artom has joined #openstack-qa | 00:40 | |
*** tochi has joined #openstack-qa | 00:40 | |
*** Swami has quit IRC | 00:41 | |
*** yamahata has joined #openstack-qa | 00:46 | |
oomichi | humm, current microversion implementation way seems difficult to search the tests | 00:47 |
*** ddieterly is now known as ddieterly[away] | 00:47 | |
oomichi | inconsistent module names, class names | 00:47 |
mriedem | mtreinish: 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_943 | 00:47 |
mriedem | i'm not sure why it wouldn't find rootwrap 5.0.0 | 00:48 |
oomichi | KeyPairsV22TestJSON - v2.2 | 00:48 |
oomichi | KeyPairsV210TestJSON - v2.10 | 00:48 |
oomichi | AttachVolumeShelveTestJSON - v2.20 | 00:48 |
oomichi | LiveAutoBlockMigrationV225TestJSON - v2.25 | 00:48 |
mtreinish | mriedem: the bandersnatch sync got stuck, clarkb had to manually resync everything | 00:48 |
mtreinish | and it's taking forever | 00:48 |
mtreinish | sdague was harping him all day about how far it had gotten | 00:48 |
mtreinish | last time I saw an update (a few hours ago) it was only at 'l' and still moving very slowly | 00:49 |
*** jamielennox is now known as jamielennox|away | 00:49 | |
*** ddieterly[away] has quit IRC | 00:51 | |
*** fnaval has quit IRC | 00:57 | |
openstackrecheck | Console logs not available after 13:23s for gate-keystone-python27-db-ubuntu-xenial 348521,2,554d772 | 00:58 |
openstackgerrit | Merged openstack/tempest: Do not use $ in OS user password https://review.openstack.org/346800 | 00:58 |
openstackgerrit | Wenyan Zhang proposed openstack-dev/devstack: Remove all *.pyc files in $DEST when executing clean.sh https://review.openstack.org/339312 | 00:58 |
openstackgerrit | Merged openstack/tempest: Minor change to comment https://review.openstack.org/347612 | 00:59 |
openstackgerrit | Merged openstack/tempest: Heat: wait condition: allow insecure HTTPS url https://review.openstack.org/292813 | 01:00 |
openstackgerrit | Merged openstack/tempest: Increase size of subnet allocation pool https://review.openstack.org/334324 | 01:00 |
mriedem | mtreinish: ah ok | 01:02 |
*** mmandel has joined #openstack-qa | 01:09 | |
*** yamahata has quit IRC | 01:10 | |
gmann | mriedem: few comment in https://review.openstack.org/#/c/327191/ | 01:11 |
gmann | mriedem: do we need thia as admin tests? | 01:11 |
*** Liuqing has joined #openstack-qa | 01:12 | |
gmann | oomichi: yea, but that should be ok right? | 01:14 |
oomichi | gmann: ah, I missed that. if tests don't use admin, it would be necessary to change as you said | 01:16 |
gmann | oomichi: yea and i think we do not need admin on those tests as it is create server call | 01:16 |
*** yangyapeng has joined #openstack-qa | 01:17 | |
*** yangyapeng has joined #openstack-qa | 01:18 | |
mriedem | gmann: it was originally not an admin test but i needed it to be admin for a reason | 01:20 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full-ubuntu-xenial 348250,3,88c8d6f | 01:23 |
*** yamamoto_ has joined #openstack-qa | 01:27 | |
mriedem | gmann: it's an admin test because it uses force_tenant_isolation = True | 01:27 |
*** yamamoto_ has quit IRC | 01:32 | |
*** jamielennox|away is now known as jamielennox | 01:34 | |
openstackrecheck | Console logs not available after 13:24s for gate-nova-python27-db-ubuntu-xenial 348484,2,df118d2 | 01:36 |
*** rfolco has quit IRC | 01:38 | |
*** EinstCrazy has joined #openstack-qa | 01:44 | |
*** yamahata has joined #openstack-qa | 01:44 | |
*** EinstCrazy has quit IRC | 01:45 | |
*** EinstCrazy has joined #openstack-qa | 01:45 | |
*** mmandel has quit IRC | 01:45 | |
*** oomichi has quit IRC | 01:46 | |
*** mriedem has quit IRC | 01:46 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348586,1,a75a0f2 | 01:50 |
*** gvrangan has quit IRC | 01:51 | |
*** yangyape_ has joined #openstack-qa | 01:58 | |
*** yangyapeng has quit IRC | 02:02 | |
openstackrecheck | Console logs not available after 13:23s for gate-cinder-python27-db-ubuntu-xenial 344987,5,67f9984 | 02:03 |
*** yamahata has quit IRC | 02:15 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Do not use $ in regex https://review.openstack.org/348611 | 02:16 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 314781,24,76f4f63 | 02:16 |
*** yangyapeng has joined #openstack-qa | 02:19 | |
*** yangyape_ has quit IRC | 02:22 | |
*** yangyape_ has joined #openstack-qa | 02:23 | |
*** yangyapeng has quit IRC | 02:26 | |
*** yamamoto_ has joined #openstack-qa | 02:28 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348583,1,f2f19bf | 02:32 |
*** Liuqing has quit IRC | 02:32 | |
*** jamielennox is now known as jamielennox|away | 02:32 | |
*** Liuqing has joined #openstack-qa | 02:33 | |
gmann | mriedem: ah, right. Thanks | 02:34 |
*** yamamoto_ has quit IRC | 02:34 | |
*** Liuqing has quit IRC | 02:37 | |
*** Liuqing has joined #openstack-qa | 02:39 | |
*** itzikb has joined #openstack-qa | 02:42 | |
*** yangyape_ has quit IRC | 02:42 | |
*** yangyapeng has joined #openstack-qa | 02:42 | |
*** zz_dimtruck is now known as dimtruck | 02:43 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 347593,2,188f05d | 02:45 |
*** gouthamr_ has quit IRC | 02:51 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-docs-ubuntu-xenial 348512,1,6c68475 | 02:59 |
*** yangyape_ has joined #openstack-qa | 03:11 | |
*** yangyapeng has quit IRC | 03:11 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348591,4,84619ce | 03:12 |
*** yangyapeng has joined #openstack-qa | 03:23 | |
*** yangyape_ has quit IRC | 03:23 | |
openstackrecheck | Console logs not available after 13:51s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348250,3,19bcd55 | 03:26 |
*** yangyapeng has joined #openstack-qa | 03:27 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Delete no meaningful definition https://review.openstack.org/348708 | 03:29 |
*** yamamoto_ has joined #openstack-qa | 03:31 | |
*** tochi has quit IRC | 03:34 | |
*** yamamoto_ has quit IRC | 03:36 | |
openstackrecheck | Console logs not available after 13:59s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 340270,9,1aac40c | 03:40 |
*** yamamoto_ has joined #openstack-qa | 03:44 | |
openstackgerrit | greghaynes proposed openstack-dev/devstack: Set oslo_messaging_notifications driver https://review.openstack.org/348716 | 03:47 |
*** yangyape_ has joined #openstack-qa | 03:47 | |
*** yangyape_ has quit IRC | 03:47 | |
*** yangyape_ has joined #openstack-qa | 03:48 | |
*** yangyapeng has quit IRC | 03:48 | |
*** hieulq has joined #openstack-qa | 03:51 | |
*** zackf has quit IRC | 03:52 | |
openstackrecheck | Console logs not available after 13:37s for gate-nova-python34-db 333098,4,88d067c | 03:54 |
*** tochi has joined #openstack-qa | 03:57 | |
openstackgerrit | Steve Baker proposed openstack-infra/devstack-gate: Remove unused heat config https://review.openstack.org/348719 | 03:58 |
openstackgerrit | greghaynes proposed openstack-dev/devstack: Set oslo_messaging_notifications driver https://review.openstack.org/348716 | 04:01 |
openstackrecheck | Console logs not available after 13:32s for gate-nova-python27-db-ubuntu-xenial 330995,5,883b1ce | 04:08 |
*** itzikb has quit IRC | 04:21 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 339312,3,c388562 | 04:21 |
*** yamamoto_ has quit IRC | 04:34 | |
*** krtaylor has joined #openstack-qa | 04:35 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348487,1,fea45b5 | 04:35 |
*** zackf has joined #openstack-qa | 04:37 | |
*** chandankumar has joined #openstack-qa | 04:38 | |
*** zackf has quit IRC | 04:44 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 347509,3,8d561d6 | 04:48 |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python34-db 344987,5,8bd3d32 | 05:02 |
*** yfried has joined #openstack-qa | 05:04 | |
*** yamamoto_ has joined #openstack-qa | 05:15 | |
openstackrecheck | Console logs not available after 13:25s for periodic-tempest-dsvm-all-master 348158,1,c9140c9 | 05:15 |
*** pglass has joined #openstack-qa | 05:16 | |
*** pglass has quit IRC | 05:17 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Modify a spelling mistake https://review.openstack.org/348731 | 05:17 |
openstackgerrit | guo yunxian proposed openstack/tempest: Modify a spelling mistake https://review.openstack.org/348731 | 05:19 |
*** zackf has joined #openstack-qa | 05:21 | |
*** zackf has quit IRC | 05:25 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 341345,4,a115921 | 05:29 |
*** shausy has joined #openstack-qa | 05:31 | |
*** yfried has quit IRC | 05:32 | |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 321492,15,d479957 | 05:43 |
*** amotoki has joined #openstack-qa | 05:46 | |
*** pgadiya has joined #openstack-qa | 05:50 | |
*** sridharg has joined #openstack-qa | 05:55 | |
openstackrecheck | Console logs not available after 13:28s for gate-tempest-dsvm-full-ubuntu-xenial 348518,1,c854783 | 05:56 |
*** gouthamr has joined #openstack-qa | 06:01 | |
*** Ravikiran_K has joined #openstack-qa | 06:06 | |
*** david-lyle has joined #openstack-qa | 06:07 | |
openstackgerrit | guo yunxian proposed openstack/tempest: assertEqual can be used instead of assertListEqual https://review.openstack.org/348744 | 06:09 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348517,1,1290af8 | 06:10 |
*** gouthamr has quit IRC | 06:10 | |
*** gyx has joined #openstack-qa | 06:12 | |
*** e0ne has joined #openstack-qa | 06:12 | |
*** nwkarsten has joined #openstack-qa | 06:17 | |
*** shausy has quit IRC | 06:20 | |
*** nwkarsten has quit IRC | 06:20 | |
*** nwkarsten has joined #openstack-qa | 06:21 | |
openstackrecheck | Console logs not available after 13:28s for gate-tempest-dsvm-full-ubuntu-xenial 348586,1,fc5af7c | 06:23 |
gyx | I have some patches to be reviewed | 06:26 |
*** nwkarsten has quit IRC | 06:26 | |
gyx | Can somebody help me to see it | 06:28 |
gyx | https://review.openstack.org/#/c/348611/ | 06:29 |
gyx | https://review.openstack.org/#/c/348708/ | 06:29 |
*** paul-carlton2 has joined #openstack-qa | 06:30 | |
gyx | Thanks ! | 06:30 |
*** csomerville has quit IRC | 06:35 | |
*** cody-somerville has joined #openstack-qa | 06:36 | |
*** armax has quit IRC | 06:36 | |
openstackrecheck | Console logs not available after 13:26s for gate-requirements-integration-dsvm 348450,1,bc19ac1 | 06:37 |
*** tesseract- has joined #openstack-qa | 06:37 | |
*** gvrangan has joined #openstack-qa | 06:38 | |
*** david-lyle has quit IRC | 06:45 | |
*** pcaruana has joined #openstack-qa | 06:45 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348520,1,f0b62be | 06:50 |
openstackgerrit | guo yunxian proposed openstack/tempest: Deprecate method get_ipv6_addr_by_EUI64 https://review.openstack.org/335335 | 07:01 |
openstackrecheck | Console logs not available after 13:32s for gate-grenade-dsvm-ubuntu-trusty 348531,3,dfda214 | 07:04 |
*** anshul has joined #openstack-qa | 07:05 | |
openstackrecheck | Console logs not available after 13:35s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 345022,8,1e73813 | 07:18 |
*** davidlenwell has quit IRC | 07:22 | |
*** gfidente has joined #openstack-qa | 07:23 | |
*** gfidente has quit IRC | 07:23 | |
*** gfidente has joined #openstack-qa | 07:23 | |
*** jdandrea has joined #openstack-qa | 07:25 | |
*** jdandrea_ has quit IRC | 07:29 | |
*** tochi has quit IRC | 07:29 | |
openstackrecheck | Console logs not available after 13:43s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348715,1,a49d300 | 07:32 |
*** tochi has joined #openstack-qa | 07:32 | |
*** zackf has joined #openstack-qa | 07:32 | |
*** davidlenwell has joined #openstack-qa | 07:34 | |
*** jlanoux has joined #openstack-qa | 07:36 | |
*** zackf has quit IRC | 07:39 | |
*** shardy has joined #openstack-qa | 07:39 | |
*** grafuls has joined #openstack-qa | 07:41 | |
*** Serlex has joined #openstack-qa | 07:43 | |
*** dimtruck is now known as zz_dimtruck | 07:45 | |
openstackrecheck | Console logs not available after 13:49s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348450,1,c31fa08 | 07:46 |
andreaf | mkoderer: 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-qa | 07:56 | |
*** yangyapeng has joined #openstack-qa | 07:57 | |
mkoderer | andreaf: sure | 07:58 |
*** yangyap__ has joined #openstack-qa | 07:58 | |
openstackrecheck | Console logs not available after 13:38s for gate-cinder-python27-db-ubuntu-xenial 344987,5,bb66cf2 | 07:59 |
*** rossella_s has quit IRC | 08:00 | |
*** rossella_s has joined #openstack-qa | 08:00 | |
*** e0ne has quit IRC | 08:00 | |
*** yangyape_ has quit IRC | 08:00 | |
*** yangyapeng has quit IRC | 08:01 | |
*** zackf has quit IRC | 08:02 | |
*** gvrangan has quit IRC | 08:05 | |
*** gyx has quit IRC | 08:06 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348203,1,b975d84 | 08:13 |
*** zackf has joined #openstack-qa | 08:19 | |
*** gyx has joined #openstack-qa | 08:22 | |
*** zackf has quit IRC | 08:26 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 347652,2,2dc36e7 | 08:26 |
*** yamamoto_ has quit IRC | 08:30 | |
*** zackf has joined #openstack-qa | 08:33 | |
*** gyx has quit IRC | 08:34 | |
*** yamahata has joined #openstack-qa | 08:37 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348517,1,d9f4b2f | 08:40 |
*** zackf has quit IRC | 08:40 | |
*** r-mibu has quit IRC | 08:41 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Modified into a more appropriate function https://review.openstack.org/348786 | 08:41 |
*** shausy has joined #openstack-qa | 08:45 | |
*** ramishra has quit IRC | 08:48 | |
*** gyx has joined #openstack-qa | 08:51 | |
*** zackf has joined #openstack-qa | 08:51 | |
*** r-mibu has joined #openstack-qa | 08:51 | |
*** e0ne has joined #openstack-qa | 08:52 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 348520,1,e8abd43 | 08:53 |
gmann | andreaf: just commented on https://review.openstack.org/#/c/333513/22 | 08:56 |
*** amotoki has quit IRC | 08:56 | |
gmann | andreaf: 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 tests | 08:57 |
*** zackf has quit IRC | 08:57 | |
gmann | andreaf: 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 them | 08:58 |
gmann | andreaf: i hope i clarify my concern | 08:58 |
*** amotoki has joined #openstack-qa | 09:00 | |
openstackgerrit | Vitaly Kramskikh proposed openstack/eslint-config-openstack: Added config with ES2015-only rules https://review.openstack.org/346875 | 09:04 |
*** e0ne has quit IRC | 09:05 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Do not use $ in regex https://review.openstack.org/348611 | 09:07 |
openstackrecheck | Console logs not available after 13:30s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 318435,98,7d5a695 | 09:07 |
openstackrecheck | Console logs not available after 13:31s for gate-tempest-dsvm-full-ubuntu-xenial 348518,1,ebe696a | 09:21 |
*** ihrachys has joined #openstack-qa | 09:21 | |
*** yangyapeng has joined #openstack-qa | 09:24 | |
*** gszasz has joined #openstack-qa | 09:26 | |
openstackgerrit | Merged openstack/tempest: Remove base_extensions_client for the reability https://review.openstack.org/348582 | 09:26 |
*** yangyap__ has quit IRC | 09:26 | |
openstackgerrit | Merged openstack/tempest: Remove base_availability_zone_client for the reability https://review.openstack.org/348583 | 09:27 |
*** zackf has joined #openstack-qa | 09:29 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-full-ubuntu-xenial 348586,1,7b78a83 | 09:34 |
*** zackf has quit IRC | 09:35 | |
*** yangyapeng has quit IRC | 09:38 | |
*** yangyapeng has joined #openstack-qa | 09:38 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348085,2,33d5439 | 09:48 |
*** cdent has joined #openstack-qa | 09:49 | |
andreaf | gmann: I left a comment on https://review.openstack.org/#/c/333513 | 09:51 |
andreaf | gmann: I don't think we should foster / support multiple implementations of the same service client | 09:51 |
gmann | andreaf: not mulitple implementation but exposing the other plugins service clients | 09:53 |
gmann | andreaf: they might expose with just importing service client from other plugin | 09:53 |
gmann | andreaf: i got your point that if they need any plugin service client then they can install that | 09:54 |
gmann | andreaf: ohh, 1 min | 09:54 |
andreaf | gmann: the moment a plugin is installed, the service client will be available via the service_clients | 09:54 |
gmann | andreaf: i think i was thinking import service client from other plugin wihtout installing them | 09:55 |
openstackgerrit | Kevin Benton proposed openstack-infra/elastic-recheck: Add query for Nova bug 1607714 https://review.openstack.org/348812 | 09:55 |
openstack | bug 1607714 in OpenStack Compute (nova) "failure attaching interface" [Undecided,New] https://launchpad.net/bugs/1607714 | 09:55 |
gmann | andreaf: humm, just thinking if any other case left. | 09:56 |
andreaf | gmann: 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 registry | 09:56 |
gmann | andreaf: yea, you are right. am thinking too much on those i think. (nobody can import those till they are not in system) | 09:57 |
gmann | andreaf: so service client only should be exposed by their owner only | 09:57 |
gmann | andreaf: and whoever need those just install those plugin so that service client are available | 09:58 |
andreaf | gmann: yes indeed | 10:00 |
gmann | andreaf: I think m good here. thanks a lot for patient and clarification :) | 10:00 |
*** ramishra has joined #openstack-qa | 10:00 | |
andreaf | gmann: thank you for the review! | 10:00 |
gmann | andreaf: +2 | 10:01 |
andreaf | gmann: reviews :) | 10:01 |
andreaf | yay | 10:01 |
gmann | :) | 10:01 |
openstackrecheck | Console logs not available after 13:22s for gate-nova-pep8-ubuntu-xenial 303345,172,b234d9e | 10:01 |
*** e0ne has joined #openstack-qa | 10:01 | |
gmann | andreaf: will try to do last 3 during weekend if time otherwise on monday | 10:02 |
andreaf | ok thanks | 10:02 |
*** zackf has joined #openstack-qa | 10:02 | |
*** Liuqing has quit IRC | 10:03 | |
*** zackf has quit IRC | 10:09 | |
*** yaume has joined #openstack-qa | 10:09 | |
*** e0ne has quit IRC | 10:12 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 347991,1,0f969f3 | 10:15 |
*** yamahata has quit IRC | 10:16 | |
*** jordanP has joined #openstack-qa | 10:16 | |
*** tosky has joined #openstack-qa | 10:18 | |
*** sdague has joined #openstack-qa | 10:19 | |
*** EinstCrazy has quit IRC | 10:19 | |
*** yangyapeng has quit IRC | 10:23 | |
openstackgerrit | Merged openstack/tempest: Delete no meaningful definition https://review.openstack.org/348708 | 10:24 |
*** paul-carlton2 has quit IRC | 10:27 | |
*** paul-carlton2 has joined #openstack-qa | 10:28 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348731,2,52b6e5c | 10:28 |
*** zackf has joined #openstack-qa | 10:36 | |
*** yaume has quit IRC | 10:39 | |
*** yaume has joined #openstack-qa | 10:39 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348040,3,faa22fa | 10:42 |
*** zackf has quit IRC | 10:43 | |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (live migration test) https://review.openstack.org/348836 | 10:50 |
openstackrecheck | Console logs not available after 13:33s for gate-requirements-integration-dsvm 348468,3,a17eeef | 10:55 |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/tempest: Nova: get serial console (basic test) https://review.openstack.org/346815 | 10:56 |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/tempest: Nova: get serial console (interaction test) https://review.openstack.org/346911 | 10:56 |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (live migration test) https://review.openstack.org/348836 | 10:56 |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (port release test) https://review.openstack.org/347392 | 10:56 |
*** e0ne has joined #openstack-qa | 10:58 | |
openstackgerrit | Markus Zoeller (markus_z) proposed openstack/tempest: Nova: serial console (live migration test) https://review.openstack.org/348836 | 11:00 |
*** e0ne has quit IRC | 11:01 | |
openstackrecheck | Console logs not available after 13:22s for gate-glance_store-python27-ubuntu-xenial 342286,8,31e2778 | 11:09 |
*** vsaienko has quit IRC | 11:09 | |
openstackrecheck | openstack/cinder change: https://review.openstack.org/247964 failed gate-tempest-dsvm-neutron-full-ubuntu-xenial in the gate queue with an unrecognized error | 11:10 |
*** gcheresh has joined #openstack-qa | 11:14 | |
*** lucasagomes is now known as lucas-hungry | 11:14 | |
*** zackf has joined #openstack-qa | 11:19 | |
*** rodrigods has quit IRC | 11:19 | |
*** rodrigods has joined #openstack-qa | 11:19 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-python35 348744,1,6fb7346 | 11:23 |
*** vsaienko has joined #openstack-qa | 11:24 | |
*** jrcloud has joined #openstack-qa | 11:25 | |
*** zackf has quit IRC | 11:26 | |
*** yangyapeng has joined #openstack-qa | 11:31 | |
*** jrcloud has quit IRC | 11:31 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 347267,3,2bc2774 | 11:37 |
*** zackf has joined #openstack-qa | 11:46 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-tox-db-functional 348186,3,31f771a | 11:50 |
*** e0ne has joined #openstack-qa | 11:51 | |
*** zackf has quit IRC | 11:53 | |
*** rfolco has joined #openstack-qa | 11:56 | |
*** zackf has joined #openstack-qa | 11:59 | |
*** rossella_s has quit IRC | 11:59 | |
*** rossella_s has joined #openstack-qa | 12:00 | |
*** weshay is now known as weshay_mtg | 12:01 | |
openstackrecheck | Console logs not available after 13:26s for gate-keystone-pep8-ubuntu-xenial 318435,99,d6dfc72 | 12:04 |
*** zackf has quit IRC | 12:06 | |
*** aysyd has joined #openstack-qa | 12:11 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Edit notes which differnt from actual parameters https://review.openstack.org/348858 | 12:12 |
*** zackf has joined #openstack-qa | 12:12 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full-ubuntu-xenial 318441,71,48f82d7 | 12:18 |
*** zackf has quit IRC | 12:18 | |
*** Liuqing has joined #openstack-qa | 12:20 | |
*** lucas-hungry is now known as lucasagomes | 12:20 | |
*** yaume has quit IRC | 12:25 | |
*** zackf has joined #openstack-qa | 12:26 | |
*** csomerville has joined #openstack-qa | 12:29 | |
*** weshay_mtg is now known as weshay | 12:31 | |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python27-db-ubuntu-xenial 348139,3,bae5fdb | 12:31 |
*** jrcloud has joined #openstack-qa | 12:32 | |
*** cody-somerville has quit IRC | 12:32 | |
*** zackf has quit IRC | 12:32 | |
*** thiagop has joined #openstack-qa | 12:38 | |
*** jrcloud has quit IRC | 12:38 | |
openstackrecheck | Console logs not available after 13:31s for gate-tempest-dsvm-postgres-full-ubuntu-xenial 268608,13,4c2371a | 12:45 |
*** zhufl has quit IRC | 12:49 | |
openstackgerrit | guo yunxian proposed openstack/tempest: Delete unused parameters https://review.openstack.org/348870 | 12:52 |
*** edmondsw has joined #openstack-qa | 12:54 | |
*** nwkarsten has joined #openstack-qa | 12:54 | |
*** gcheresh has quit IRC | 12:55 | |
*** gyx has quit IRC | 12:56 | |
openstackgerrit | Andrea Frittoli proposed openstack/tempest: Configure stable service clients via the registry https://review.openstack.org/347756 | 12:56 |
openstackgerrit | Andrea Frittoli proposed openstack/tempest: Migrate service_clients to tempest.lib https://review.openstack.org/339097 | 12:56 |
andreaf | mtreinish: fixed the documentation bit in ^^^ | 12:56 |
openstackrecheck | Console logs not available after 13:33s for gate-cinder-python27-db-ubuntu-xenial 347267,3,3f28875 | 12:59 |
*** dkranz has joined #openstack-qa | 13:00 | |
openstackgerrit | Andrea Frittoli proposed openstack/tempest: Configure stable service clients via the registry https://review.openstack.org/347756 | 13:01 |
openstackgerrit | Andrea Frittoli proposed openstack/tempest: Migrate service_clients to tempest.lib https://review.openstack.org/339097 | 13:01 |
*** zackf has joined #openstack-qa | 13:01 | |
*** rlrossit has joined #openstack-qa | 13:02 | |
*** zackf has quit IRC | 13:08 | |
*** ianw has quit IRC | 13:10 | |
*** ianw has joined #openstack-qa | 13:10 | |
openstackgerrit | afazekas proposed openstack/os-testr: Construct a list of test cases instead of passing a regexp https://review.openstack.org/348878 | 13:12 |
openstackrecheck | Console logs not available after 13:28s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 330995,6,f302d0c | 13:13 |
afazekas | mtreinish, masayukig: can you have a look on https://review.openstack.org/348878 | 13:14 |
*** _AmitGalitz has joined #openstack-qa | 13:15 | |
*** gouthamr has joined #openstack-qa | 13:18 | |
*** AmitGalitz has quit IRC | 13:19 | |
afazekas | gmann, ^ | 13:21 |
*** porrua has joined #openstack-qa | 13:25 | |
openstackrecheck | Console logs not available after 13:23s for gate-cinder-python34-db 347272,3,b977c97 | 13:26 |
*** gszasz has quit IRC | 13:33 | |
*** cdent_ has joined #openstack-qa | 13:33 | |
*** nwkarsten has quit IRC | 13:33 | |
*** nwkarsten has joined #openstack-qa | 13:34 | |
*** mriedem has joined #openstack-qa | 13:34 | |
*** ddieterly has joined #openstack-qa | 13:35 | |
*** cdent has quit IRC | 13:36 | |
*** cdent_ is now known as cdent | 13:36 | |
*** rbak has joined #openstack-qa | 13:36 | |
*** zackf has joined #openstack-qa | 13:37 | |
*** sridharg has quit IRC | 13:38 | |
*** nwkarsten has quit IRC | 13:38 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full-devstack-plugin-ceph 268609,16,fae4ada | 13:40 |
*** zackf has quit IRC | 13:44 | |
*** dustins has joined #openstack-qa | 13:45 | |
*** nwkarsten has joined #openstack-qa | 13:46 | |
*** bauzas is now known as bauwser | 13:49 | |
*** dansmith is now known as superdan | 13:49 | |
*** rlrossit has quit IRC | 13:49 | |
*** akshai has joined #openstack-qa | 13:50 | |
*** zackf has joined #openstack-qa | 13:51 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full-ubuntu-xenial 347652,3,e4884e6 | 13:53 |
*** pgadiya has quit IRC | 13:54 | |
*** edmondsw has quit IRC | 13:56 | |
*** Ravikiran_K has quit IRC | 13:56 | |
*** mmandel has joined #openstack-qa | 13:57 | |
*** grafuls has quit IRC | 13:57 | |
*** zackf has quit IRC | 13:57 | |
*** amotoki has quit IRC | 13:58 | |
*** sridharg has joined #openstack-qa | 14:04 | |
*** tochi has quit IRC | 14:06 | |
*** akshai has quit IRC | 14:06 | |
*** zackf has joined #openstack-qa | 14:07 | |
*** akshai has joined #openstack-qa | 14:07 | |
openstackrecheck | Console logs not available after 13:28s for gate-nova-python34-db 303345,173,4d2c1e6 | 14:07 |
*** yaume has joined #openstack-qa | 14:07 | |
openstackgerrit | Matt Riedemann proposed openstack-infra/elastic-recheck: Add query for Nova bug 1607714 https://review.openstack.org/348812 | 14:09 |
openstack | bug 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/1607714 | 14:09 |
*** zackf has quit IRC | 14:13 | |
*** sridharg has quit IRC | 14:15 | |
openstackrecheck | Console logs not available after 13:28s for gate-tempest-dsvm-full-ubuntu-xenial 318441,71,9dc5ca1 | 14:20 |
*** pglass has joined #openstack-qa | 14:26 | |
*** zz_dimtruck is now known as dimtruck | 14:26 | |
*** dustins has quit IRC | 14:28 | |
*** hieulq_ has joined #openstack-qa | 14:30 | |
*** edmondsw has joined #openstack-qa | 14:34 | |
openstackrecheck | Console logs not available after 13:31s for gate-keystone-python27-db-ubuntu-xenial 318435,99,3f241bd | 14:34 |
*** cdent has quit IRC | 14:36 | |
*** dimtruck is now known as zz_dimtruck | 14:36 | |
*** dustins has joined #openstack-qa | 14:40 | |
*** shausy has quit IRC | 14:40 | |
*** pcrews has quit IRC | 14:40 | |
*** pcrews has joined #openstack-qa | 14:41 | |
*** aysyd has quit IRC | 14:41 | |
*** aysyd has joined #openstack-qa | 14:42 | |
*** david-lyle has joined #openstack-qa | 14:42 | |
*** zz_dimtruck is now known as dimtruck | 14:44 | |
*** david-lyle_ has joined #openstack-qa | 14:46 | |
*** david-lyle has quit IRC | 14:47 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-pep8-ubuntu-xenial 348744,1,2ade842 | 14:48 |
*** david-lyle__ has joined #openstack-qa | 14:48 | |
*** cdent has joined #openstack-qa | 14:49 | |
*** zackf has joined #openstack-qa | 14:50 | |
*** david-lyle_ has quit IRC | 14:52 | |
*** kbaikov has quit IRC | 14:53 | |
*** jbernard has quit IRC | 14:55 | |
*** zackf has quit IRC | 14:57 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 275801,16,901a92a | 15:01 |
*** gvrangan has joined #openstack-qa | 15:02 | |
*** zackf has joined #openstack-qa | 15:06 | |
*** zackf has quit IRC | 15:08 | |
*** zackf has joined #openstack-qa | 15:08 | |
*** armax has joined #openstack-qa | 15:12 | |
*** e0ne has quit IRC | 15:14 | |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python27-db-ubuntu-xenial 247964,5,e46f5ec | 15:15 |
*** jbernard has joined #openstack-qa | 15:17 | |
*** david-lyle has joined #openstack-qa | 15:23 | |
*** david-lyle__ has quit IRC | 15:23 | |
*** karthikp_ has joined #openstack-qa | 15:25 | |
*** weshay is now known as weshay_bbiab | 15:25 | |
*** karthikp_ has quit IRC | 15:27 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 325743,4,aa23c07 | 15:28 |
*** Liuqing has quit IRC | 15:33 | |
*** anshul has quit IRC | 15:34 | |
*** yamamoto has joined #openstack-qa | 15:34 | |
*** jlanoux has quit IRC | 15:36 | |
*** chandankumar has quit IRC | 15:38 | |
*** rlrossit has joined #openstack-qa | 15:40 | |
openstackrecheck | Console logs not available after 13:26s for gate-nova-python27-db-ubuntu-xenial 333248,8,d3045d1 | 15:43 |
*** karthikp_ has joined #openstack-qa | 15:50 | |
*** Suyi_ has joined #openstack-qa | 15:50 | |
*** gvrangan has quit IRC | 15:50 | |
*** hieulq_ has quit IRC | 15:51 | |
openstackrecheck | Console logs not available after 13:24s for gate-nova-python34-db 345082,4,4ef3ceb | 15:56 |
*** karthikp_ has quit IRC | 15:58 | |
*** sdague has quit IRC | 15:59 | |
*** rossella_s has quit IRC | 15:59 | |
*** rossella_s has joined #openstack-qa | 16:00 | |
*** pcaruana has quit IRC | 16:01 | |
*** karthikp_ has joined #openstack-qa | 16:02 | |
*** karthikp_ has quit IRC | 16:08 | |
*** pilgrimstack has quit IRC | 16:09 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-postgres-full-ubuntu-trusty-liberty 346911,3,ed3a007 | 16:10 |
openstackrecheck | openstack/nova change: https://review.openstack.org/347509 failed gate-tempest-dsvm-neutron-full-ubuntu-xenial in the gate queue with an unrecognized error | 16:10 |
*** yaume has quit IRC | 16:13 | |
*** chandankumar has joined #openstack-qa | 16:16 | |
*** Liuqing has joined #openstack-qa | 16:21 | |
openstackgerrit | Matt Riedemann proposed openstack/tempest: Skip test_reassign_port_between_servers until fixed https://review.openstack.org/348955 | 16:22 |
mriedem | mtreinish: ^ | 16:22 |
mriedem | mtreinish: gonna go to lunch and then work the fix in nova this afternoon | 16:22 |
mriedem | but with the failure rates that high i want to skip before going into the weekend | 16:23 |
mriedem | note 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 fix | 16:23 |
mriedem | andreaf: jordanP: gmann: ^ | 16:23 |
openstackrecheck | Console logs not available after 13:23s for gate-cinder-python34-db 337672,3,a6f0c8f | 16:24 |
*** weshay_bbiab is now known as weshay | 16:24 | |
jordanP | +A | 16:24 |
mriedem | thanks | 16:25 |
* mriedem goes for bb | 16:25 | |
mriedem | *bbq | 16:25 |
andreaf | jordanP: you beat me :) | 16:25 |
jordanP | autoapprove is the way to go :) | 16:25 |
andreaf | mtreinish: thanks for the re-review on the client manager series | 16:27 |
*** tesseract- has quit IRC | 16:30 | |
*** jamielennox|away is now known as jamielennox | 16:32 | |
*** tqtran has joined #openstack-qa | 16:34 | |
*** tqtran_ has joined #openstack-qa | 16:35 | |
*** oomichi has joined #openstack-qa | 16:36 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348858,1,acc742b | 16:37 |
*** tqtran has quit IRC | 16:38 | |
*** gfidente has quit IRC | 16:39 | |
*** lucasagomes is now known as lucas-dinner | 16:41 | |
*** Liuqing has quit IRC | 16:44 | |
*** e0ne has joined #openstack-qa | 16:45 | |
*** e0ne has quit IRC | 16:46 | |
*** Liuqing has joined #openstack-qa | 16:47 | |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python27-db-ubuntu-xenial 322459,39,f1a2f0b | 16:51 |
*** Liuqing has quit IRC | 16:54 | |
*** yamahata has joined #openstack-qa | 16:55 | |
*** Liuqing has joined #openstack-qa | 16:55 | |
*** sridharg has joined #openstack-qa | 16:55 | |
openstackrecheck | Console logs not available after 13:27s for gate-nova-python27-db-ubuntu-xenial 348866,1,2beba8f | 17:05 |
*** jordanP has quit IRC | 17:05 | |
*** gvrangan has joined #openstack-qa | 17:10 | |
*** tosky has quit IRC | 17:14 | |
*** sdague has joined #openstack-qa | 17:17 | |
*** pglass has quit IRC | 17:18 | |
openstackgerrit | Merged openstack-infra/elastic-recheck: Add query for Nova bug 1607714 https://review.openstack.org/348812 | 17:18 |
openstack | bug 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 |
openstackrecheck | Console logs not available after 13:28s for gate-cinder-pep8-ubuntu-xenial 347944,4,1b7cfd3 | 17:19 |
* oomichi starbucks wifi is super slow.. | 17:26 | |
*** ddieterly is now known as ddieterly[away] | 17:29 | |
openstackrecheck | Console logs not available after 13:25s for gate-keystone-python35-db 348738,3,aec8408 | 17:32 |
*** shardy has quit IRC | 17:33 | |
*** fnaval has joined #openstack-qa | 17:34 | |
*** jamielennox is now known as jamielennox|away | 17:35 | |
*** Liuqing has quit IRC | 17:36 | |
*** fnaval has quit IRC | 17:36 | |
*** fnaval has joined #openstack-qa | 17:37 | |
*** nwkarsten has quit IRC | 17:42 | |
*** openstackrecheck has quit IRC | 17:43 | |
*** openstackrecheck has joined #openstack-qa | 17:43 | |
*** dustins has quit IRC | 17:45 | |
*** e0ne has joined #openstack-qa | 17:50 | |
*** spzala has joined #openstack-qa | 17:52 | |
openstackgerrit | Farhad 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/348995 | 18:01 |
openstack | bug 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 |
mtreinish | oomichi: slower than your office wifi? That normally is pretty bad... | 18:05 |
mtreinish | andreaf: heh, well I still haven't gotten all the way through yet, still have the last few in the series | 18:05 |
oomichi | mtreinish: heh, yeah slower than my office. it is much time to "git pull" | 18:07 |
*** sabeen has joined #openstack-qa | 18:08 | |
mtreinish | oomichi: 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-qa | 18:14 | |
sdague | sc68cal: what's your monday look like? | 18:14 |
oomichi | mtreinish: which site are you using for the speed test? | 18:15 |
mtreinish | oomichi: google | 18:16 |
mtreinish | I just searched for speed test and it gave me a button to push | 18:16 |
oomichi | mtreinish: ok, let me test it | 18:18 |
oomichi | mtreinish: oops, the test is timeout.. | 18:18 |
openstackgerrit | Ivan Kolodyazhny proposed openstack/tempest: Resource setup for test_snapshot_list_param_* tests https://review.openstack.org/332066 | 18:18 |
oomichi | that was much slower than google expects | 18:18 |
mtreinish | oomichi: heh, well maybe time to find another coffee shop :) | 18:19 |
oomichi | mtreinish: yeah, but the other near starbucks are bad service like throwing changes.. | 18:20 |
oomichi | anyways, need to bring kids back to home from summer class now, see you later | 18:21 |
*** oomichi has quit IRC | 18:21 | |
*** thiagop has quit IRC | 18:23 | |
openstackrecheck | Console logs not available after 13:24s for gate-glance-docs-ubuntu-xenial 347352,8,4cb9d8c | 18:28 |
openstackgerrit | Matt Riedemann proposed openstack/tempest: Revert "Skip test_reassign_port_between_servers until fixed" https://review.openstack.org/349011 | 18:32 |
openstackgerrit | Matt Riedemann proposed openstack/tempest: Revert "Skip test_reassign_port_between_servers until fixed" https://review.openstack.org/349011 | 18:34 |
*** paul-carlton2 has quit IRC | 18:36 | |
*** karthikp_ has joined #openstack-qa | 18:39 | |
*** yamahata has quit IRC | 18:46 | |
*** nwkarsten has joined #openstack-qa | 18:46 | |
*** ddieterly[away] is now known as ddieterly | 18:50 | |
*** gvrangan has quit IRC | 18:52 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348902,1,72b2e9d | 18:57 |
*** rfolco has quit IRC | 19:00 | |
*** dustins has joined #openstack-qa | 19:03 | |
*** ihrachys has quit IRC | 19:04 | |
openstackgerrit | Merged openstack/tempest: Skip test_reassign_port_between_servers until fixed https://review.openstack.org/348955 | 19:05 |
*** yamamoto has quit IRC | 19:06 | |
sc68cal | sdague: afternoon is good | 19:07 |
*** bnemec is now known as beekneemech | 19:12 | |
sdague | ok, cool, let's try to get a google hangout going then, and get me up to speed on the neutron work | 19:13 |
*** sridharg has quit IRC | 19:16 | |
sc68cal | sdague: sure | 19:18 |
*** raildo has quit IRC | 19:23 | |
openstackgerrit | Merged openstack/tempest: Service Clients registration interface for plugins https://review.openstack.org/333513 | 19:33 |
openstackgerrit | Merged openstack/tempest: Register Tempest clients via the new interface https://review.openstack.org/335242 | 19:33 |
openstackgerrit | Merged openstack/tempest: Migrate compute client group to client factory https://review.openstack.org/260077 | 19:34 |
openstackgerrit | Merged openstack/tempest: Migrate network client group to client factory https://review.openstack.org/261067 | 19:34 |
openstackgerrit | Merged openstack/tempest: Migrate image client group to client factory https://review.openstack.org/262990 | 19:34 |
*** edmondsw has quit IRC | 19:35 | |
openstackgerrit | Patrick East proposed openstack-infra/devstack-gate: Copy local.conf to the archived logs directory https://review.openstack.org/349053 | 19:41 |
*** yamahata has joined #openstack-qa | 19:43 | |
*** chandankumar has quit IRC | 19:45 | |
*** porrua has quit IRC | 19:52 | |
*** krtaylor has quit IRC | 19:52 | |
*** raildo has joined #openstack-qa | 19:52 | |
openstackrecheck | Console logs not available after 13:23s for gate-nova-python34-db 346205,2,ba0525b | 19:57 |
*** rlrossit has quit IRC | 19:59 | |
*** rossella_s has quit IRC | 19:59 | |
*** rossella_s has joined #openstack-qa | 20:00 | |
*** ddieterly is now known as ddieterly[away] | 20:01 | |
*** ddieterly[away] is now known as ddieterly | 20:01 | |
*** ddieterly is now known as ddieterly[away] | 20:01 | |
*** ddieterly[away] is now known as ddieterly | 20:04 | |
*** e0ne has quit IRC | 20:04 | |
*** yamamoto has joined #openstack-qa | 20:07 | |
openstackrecheck | Console logs not available after 13:29s for gate-nova-pep8-ubuntu-xenial 348512,2,d45e063 | 20:11 |
*** yamamoto has quit IRC | 20:12 | |
*** mriedem has quit IRC | 20:20 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-full-ubuntu-xenial 344892,4,6f88121 | 20:24 |
sdague | sc68cal: 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 |
openstackrecheck | Console logs not available after 13:24s for gate-nova-python27-db-ubuntu-xenial 342224,5,8b4b776 | 20:37 |
*** gouthamr has quit IRC | 20:41 | |
*** akshai has quit IRC | 20:42 | |
sdague | sc68cal: 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 yet | 20:44 |
*** gvrangan has joined #openstack-qa | 20:45 | |
*** cdent has quit IRC | 20:50 | |
openstackrecheck | Console logs not available after 13:24s for gate-nova-pep8-ubuntu-xenial 340386,7,7e9a1bc | 20:51 |
*** Suyi_ has quit IRC | 20:54 | |
*** Suyi_ has joined #openstack-qa | 20:54 | |
*** Serlex has quit IRC | 20:59 | |
*** raildo has quit IRC | 21:01 | |
*** ddieterly is now known as ddieterly[away] | 21:02 | |
*** ddieterly[away] is now known as ddieterly | 21:03 | |
*** cdent has joined #openstack-qa | 21:04 | |
*** rfolco has joined #openstack-qa | 21:04 | |
openstackrecheck | Console logs not available after 13:34s for gate-tempest-dsvm-ironic-ipa-partition-pxe_ssh-tinyipa 275801,17,7faf99c | 21:04 |
*** rfolco has quit IRC | 21:05 | |
*** yamamoto has joined #openstack-qa | 21:08 | |
*** cdent has quit IRC | 21:12 | |
*** dustins has quit IRC | 21:12 | |
*** yamamoto has quit IRC | 21:13 | |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348427,3,3cbc075 | 21:18 |
*** sabeen has quit IRC | 21:23 | |
*** oomichi has joined #openstack-qa | 21:23 | |
*** spzala has quit IRC | 21:23 | |
*** armax has quit IRC | 21:26 | |
*** ddieterly is now known as ddieterly[away] | 21:32 | |
openstackrecheck | Console logs not available after 13:29s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 330995,6,1f6769c | 21:32 |
*** aysyd has quit IRC | 21:38 | |
*** dims_ has quit IRC | 21:44 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-pep8-ubuntu-xenial 333616,7,d018a5a | 21:46 |
*** dims has joined #openstack-qa | 21:46 | |
*** weshay is now known as weshay_afk | 21:51 | |
openstackrecheck | Console logs not available after 13:22s for gate-glance-docs-ubuntu-xenial 292327,53,3a3cd5b | 21:59 |
*** spzala has joined #openstack-qa | 21:59 | |
*** ajmiller has joined #openstack-qa | 22:01 | |
*** ajmiller_ has joined #openstack-qa | 22:03 | |
*** spzala has quit IRC | 22:04 | |
*** ajmiller has quit IRC | 22:07 | |
*** superdan has quit IRC | 22:07 | |
*** mmandel has quit IRC | 22:09 | |
*** yamamoto has joined #openstack-qa | 22:10 | |
*** mmandel has joined #openstack-qa | 22:11 | |
openstackrecheck | Console logs not available after 13:23s for gate-cinder-python34-db 348139,4,3bca480 | 22:13 |
*** yamamoto has quit IRC | 22:15 | |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Remove base_hosts_client for the reability https://review.openstack.org/349091 | 22:15 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Remove base_services_client for the reability https://review.openstack.org/349092 | 22:15 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Remove unused TYPE from base_quotas_client https://review.openstack.org/349093 | 22:15 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Remove the wapper method show_quota_usage() https://review.openstack.org/349094 | 22:15 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Define volume extensions_clients as library https://review.openstack.org/349095 | 22:15 |
openstackgerrit | Michael Krotscheck proposed openstack-dev/devstack: Export CLOUDS_YAML https://review.openstack.org/349098 | 22:20 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Define volume extensions_clients as library https://review.openstack.org/349095 | 22:21 |
*** ddieterly[away] is now known as ddieterly | 22:23 | |
*** karthikp_ has quit IRC | 22:25 | |
openstackrecheck | Console logs not available after 13:26s for gate-nova-docs-ubuntu-xenial 348946,1,6c244d2 | 22:26 |
*** oomichi has quit IRC | 22:34 | |
*** oomichi has joined #openstack-qa | 22:34 | |
*** dave-mccowan has quit IRC | 22:38 | |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Add : to docstring of service_clients https://review.openstack.org/349106 | 22:39 |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full-ubuntu-xenial 348731,2,bf2e956 | 22:40 |
*** gouthamr has joined #openstack-qa | 22:45 | |
*** mmandel has quit IRC | 22:48 | |
*** Guest41489 has joined #openstack-qa | 22:49 | |
openstackrecheck | Console logs not available after 13:33s for gate-cinder-python34-db 346135,2,ec8cab1 | 22:53 |
*** minwang2 has joined #openstack-qa | 22:57 | |
*** minwang2 has left #openstack-qa | 22:58 | |
*** sdague has quit IRC | 22:59 | |
*** Guest41489 has quit IRC | 23:02 | |
openstackrecheck | Console logs not available after 13:25s for gate-glance-docs-ubuntu-xenial 340557,14,c1d0404 | 23:07 |
*** yamamoto has joined #openstack-qa | 23:12 | |
*** yamamoto has quit IRC | 23:17 | |
openstackrecheck | Console logs not available after 13:24s for gate-glance-python34-db 284941,11,5c53361 | 23:20 |
*** hongbin has quit IRC | 23:20 | |
*** woodster_ has joined #openstack-qa | 23:21 | |
*** ddieterly has quit IRC | 23:24 | |
*** Guest39119 has joined #openstack-qa | 23:27 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-neutron-full-ubuntu-trusty-liberty 348955,1,9a5ca45 | 23:34 |
*** Suyi_ has quit IRC | 23:38 | |
openstackrecheck | Console logs not available after 13:23s for gate-os-brick-python27-ubuntu-xenial 328297,11,9a16c67 | 23:47 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: DNM: Enable serial console https://review.openstack.org/349116 | 23:50 |
*** Guest39119 is now known as dansmith | 23:52 | |
*** ajmiller_ has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!