*** eil397 has quit IRC | 00:00 | |
mtreinish | oh, nm now I see it is cliff: https://github.com/openstack/tempest/blob/master/tempest/cmd/verify_tempest_config.py#L391-L394 | 00:00 |
---|---|---|
mtreinish | parse_args() is only called if the script is called directly | 00:00 |
mtreinish | not when it's used as part of the tempest cli (which uses cliff) | 00:01 |
*** mylu has quit IRC | 00:02 | |
*** pglass has quit IRC | 00:03 | |
*** yamamoto_ has quit IRC | 00:03 | |
*** rm_work has quit IRC | 00:04 | |
mtreinish | well this ci is broken: http://intel-openstack-ci-logs.ovh/networking-odl-vhostuser-ci/refs/changes/51/278151/1/2016-02-09_23:56:52/console.html | 00:04 |
mtreinish | that return +1 on the patch | 00:04 |
mtreinish | anteaya: ^^^ let slip the dogs of war :) | 00:05 |
fungi | i take it the qa team hasn't taken the hard-nosed approach of denying third-party ci feedback on devstack changes like infra has for devstack-gate | 00:05 |
anteaya | mtreinish: ha ha ha | 00:06 |
*** agireud has quit IRC | 00:06 | |
anteaya | mtreinish: which patch does it +1 after failing? | 00:07 |
anteaya | mtreinish: and thank you for alerting me, I will follow up | 00:07 |
mtreinish | anteaya: https://review.openstack.org/#/c/278151/1 | 00:07 |
*** mylu has joined #openstack-qa | 00:07 | |
mtreinish | fungi: well it's not voting I guess, but leaving a comment | 00:08 |
fungi | i'm less surprised by that, and more surprised that "ovh" is actually a tld in dns! | 00:08 |
*** agireud has joined #openstack-qa | 00:08 | |
fungi | https://en.wikipedia.org/wiki/.ovh | 00:08 |
fungi | craaaaaazy | 00:08 |
anteaya | mtreinish: thank you | 00:09 |
mtreinish | fungi: heh, well it's just a matter of money now right? | 00:09 |
*** dimtruck is now known as zz_dimtruck | 00:09 | |
fungi | yep, something that ovh has plenty of from what i hear | 00:09 |
*** rm_work has joined #openstack-qa | 00:09 | |
*** mylu has quit IRC | 00:10 | |
*** tochi has quit IRC | 00:10 | |
mtreinish | dtroyer: if you get a sec I was wondering how the venv stuff in devstack works with constraints | 00:11 |
mtreinish | because I think the simple workaround for the constraints gap this release shows is to just manually make the venv and hope tox likes it | 00:11 |
*** mylu has joined #openstack-qa | 00:12 | |
dims_ | lifeless : around? ^^ | 00:12 |
mtreinish | dims_: ugh, looks like we'll need to backport it to liberty too | 00:14 |
lifeless | dims_: | 00:15 |
mtreinish | https://github.com/openstack/requirements/blob/stable/liberty/global-requirements.txt#L20 | 00:15 |
lifeless | dims_: sup ? | 00:15 |
mtreinish | lifeless: so the recent (as in < 1 hr ago) cliff release exposed a bug in our usage of constraints in devstack | 00:16 |
mtreinish | tempest is installed in a venv using tox and constraints isn't being respected: https://github.com/openstack-dev/devstack/blob/master/lib/tempest#L323-L324 | 00:16 |
dims_ | lifeless : wondering how to handle constraints the right way for example here - http://git.openstack.org/cgit/openstack-dev/devstack/tree/lib/tempest#n324 | 00:16 |
dims_ | yep what mtreinish said :) | 00:16 |
mtreinish | I'm trying to figure out the best way to correct this | 00:16 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 278112,1,af38609 | 00:17 |
*** armax has quit IRC | 00:17 | |
lifeless | mtreinish: you need to update tox.ini to support the variable like the neutron unit test jobs do | 00:17 |
lifeless | mtreinish: and then export it for tox to use | 00:17 |
mtreinish | lifeless: do we export that variable in devstack? | 00:17 |
mtreinish | ah, ok | 00:17 |
lifeless | mtreinish: I suspect not, but IMBW; see the pip_install function | 00:18 |
*** e0ne has quit IRC | 00:18 | |
*** mylu has quit IRC | 00:20 | |
openstackgerrit | Matthew Treinish proposed openstack-dev/devstack: Switch tempest verify-config usage to avoid bug https://review.openstack.org/278160 | 00:21 |
*** tochi has joined #openstack-qa | 00:22 | |
openstackgerrit | Matthew Treinish proposed openstack-dev/devstack: Switch tempest verify-config usage to avoid bug https://review.openstack.org/278151 | 00:25 |
mtreinish | fungi, clarkb: ^^^ I fast approved both of those if you could promote them both (there's a depends on to liberty) that should unblock people | 00:27 |
mtreinish | lifeless, Nakato: is there a way in tox to do something conditionally on an env var? Like I want to use constraints if $UPPER_CONSTRAINTS_FILE is defined, but to revert to the pip install -U behavior if not | 00:30 |
mtreinish | looking at the neutron example it works by making duplicate jobs for constraints enforcement | 00:30 |
openstackrecheck | Console logs not available after 13:21s for gate-nova-python27 277934,2,9d86ccb | 00:30 |
mtreinish | but that won't really work for tempest because there a bunch of different jobs in the tox.ini used all over the place | 00:30 |
mtreinish | and I don't want to use constraints outside of the gate, because it's potentially the wrong thing if people are using an oldish release | 00:31 |
Nakato | mtreinish: https://tox.readthedocs.org/en/latest/config.html#environment-variable-substitutions-with-default-values ? | 00:31 |
lifeless | mtreinish: how is it the wrong thing? | 00:31 |
lifeless | mtreinish: -U is way worse than something-known-good, right ? | 00:31 |
mtreinish | lifeless: if we specify always use constraints and default to from master requirements and that's in a released version someone could come 2 years down the road and use that release it's not known good | 00:33 |
mtreinish | master at the time of the known good was right, but not necessarily post release | 00:33 |
mtreinish | s/time of the/time of the release was/ | 00:33 |
lifeless | mtreinish: I am confuse | 00:34 |
mtreinish | yeah that sentence came out poorly | 00:34 |
lifeless | mtreinish: define release for me - of what? in what format? how will they get tox from a release? | 00:34 |
cody-somerville | I think something has broken tempest argument parsing recently. | 00:35 |
cody-somerville | is this known issue? | 00:35 |
Nakato | mtreinish: Why is it not checking out requirements of stable/whatever-running and using the upper-constraints it has? | 00:36 |
clarkb | cody-somerville: yes see https://review.openstack.org/278151 and https://review.openstack.org/278151 | 00:36 |
mtreinish | lifeless: so imagine if tempest 1.0.0 had use constraints from master in the tox.ini (it's from 05-23-2014) and someone pulls that down | 00:36 |
mtreinish | and runs tox | 00:36 |
mtreinish | it'll install all the wrong stuff | 00:36 |
mtreinish | then just shift everything forward 2 years | 00:36 |
cody-somerville | clarkb: you rock. thanks! | 00:36 |
clarkb | mtreinish: so the liberty change needs to be queued first? | 00:37 |
mtreinish | Nakato: tempest doesn't have branches (which is why we try and venv isolate it in devstack) | 00:37 |
clarkb | I can move things around but want to do it once | 00:37 |
mtreinish | clarkb: yeah, because of grenade | 00:37 |
lifeless | mtreinish: then they should be doing that with the devstack from 2014, and the upper-constraints from 2014 | 00:38 |
mtreinish | lifeless: that's assuming they're using devstack | 00:38 |
clarkb | gonna wait to see https://jenkins02.openstack.org/job/gate-tempest-dsvm-full/33012/console start tempest before moving it too just to make sure it is working | 00:38 |
mtreinish | which is not at all a requirement | 00:38 |
lifeless | mtreinish: sure, so s/devstack/whatever/ | 00:38 |
mtreinish | clarkb: sure | 00:38 |
clarkb | probably 5-10 minutes from now | 00:38 |
lifeless | mtreinish: they can checkout the constraints from $thatdate | 00:38 |
lifeless | mtreinish: and will get a known good from then. contrast that to running with latest cliff, latest oslo-config, etc | 00:39 |
mtreinish | lifeless: sure, but that's a non-standard thing to do. It's also quite error prone, because it requires selecting a specific commit from g-r history | 00:39 |
lifeless | mtreinish: (clearly 1.0.0 won't have constraints in its tox.ini) | 00:39 |
mtreinish | well yeah that was just an example | 00:39 |
mtreinish | I'm thinking more for tempest 10.0.0 which will be the next release | 00:40 |
lifeless | mtreinish: so, I don't think its non-standard | 00:40 |
lifeless | mtreinish: having known-good things for projects that track the world is a best practice in fact | 00:40 |
lifeless | mtreinish: the exact details are usually different per-project, but the concept is very well established | 00:40 |
mtreinish | lifeless: fine, but that's what I'm saying the details here are the weird part. Because we're telling users to run tempest with tox, you need to go look up a commit in g-r set an env variable to the path of the constraints file from that commit and then everything will work | 00:41 |
mtreinish | that feels very ugly to me | 00:41 |
*** bardia has left #openstack-qa | 00:42 | |
lifeless | mtreinish: so, the options are - get broken when new releases come out; fix your requirements to == always (which tempest can do since it deploys via tox always) | 00:42 |
*** akshai has quit IRC | 00:43 | |
mtreinish | clarkb: looks like: https://jenkins02.openstack.org/job/gate-tempest-dsvm-full/33012/console got to tempest | 00:43 |
lifeless | mtreinish: you could automate the g-r lookup too, FWIW | 00:43 |
clarkb | yup, will shuffle those two changes into the gate now | 00:43 |
lifeless | mtreinish: if not set, pick up the matching g-r change automatically | 00:43 |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full 217964,66,fb399bb | 00:43 |
lifeless | mtreinish: but - I still don't understand how the default - track what works in master | 00:43 |
lifeless | mtreinish: is *worse* than -U | 00:44 |
*** zz_dimtruck is now known as dimtruck | 00:44 | |
lifeless | mtreinish: which is 'latest releases of things' vs 'latest that worked in openstack at all' | 00:44 |
lifeless | mtreinish: I kindof feel like you're applying a different fitness test to the two cases | 00:44 |
*** eil397 has joined #openstack-qa | 00:45 | |
clarkb | mtreinish: done | 00:46 |
*** achanda has joined #openstack-qa | 00:46 | |
*** ccneill has quit IRC | 00:47 | |
mtreinish | clarkb: ok thanks | 00:47 |
mtreinish | lifeless: perhaps, I probably need to think about this some more. It's getting late in the day for me | 00:48 |
lifeless | ok :) | 00:48 |
mtreinish | I'll look at it again in the morning | 00:48 |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full 218538,9,67161dd | 00:57 |
*** mylu has joined #openstack-qa | 00:58 | |
*** bswartz has joined #openstack-qa | 00:58 | |
*** jokke_ has quit IRC | 00:58 | |
*** jokke_ has joined #openstack-qa | 00:58 | |
*** apoorvad has joined #openstack-qa | 00:59 | |
*** achanda has quit IRC | 00:59 | |
*** Sparyx has joined #openstack-qa | 01:00 | |
*** markvoelker has joined #openstack-qa | 01:01 | |
*** armax has joined #openstack-qa | 01:02 | |
*** mylu has quit IRC | 01:02 | |
*** mylu has joined #openstack-qa | 01:04 | |
*** eil397 has quit IRC | 01:06 | |
*** Sparyx has quit IRC | 01:08 | |
*** weshay_xchat has quit IRC | 01:10 | |
openstackrecheck | Console logs not available after 13:21s for gate-horizon-dsvm-integration 204731,93,d4cb549 | 01:10 |
*** Swami has quit IRC | 01:16 | |
*** weshay_xchat has joined #openstack-qa | 01:16 | |
bswartz | Does anyone know if it's possible to install devstack without cloning git repos I don't need, such as nova? | 01:20 |
*** jlwhite has quit IRC | 01:21 | |
clarkb | bswartz: if nova is not an enabled service I think it doesn't clone it | 01:22 |
bswartz | I disabled everything I could think of and it still clones the repo for nova | 01:23 |
openstackrecheck | Console logs not available after 13:21s for gate-grenade-dsvm 278068,2,248e183 | 01:24 |
clarkb | you should be able towork back from the log trace | 01:24 |
bswartz | clarkb: https://github.com/openstack-dev/devstack/blob/master/lib/nova#L771 | 01:24 |
clarkb | to figure out what triggers the clone, but install_nova does the clone in lib/nova I just don't see what calls that | 01:24 |
bswartz | I noticed there's no conditional around that statement ^ | 01:24 |
clarkb | bswartz: it is in a function, so you need to find what calls the function | 01:25 |
*** dimtruck is now known as zz_dimtruck | 01:29 | |
*** mtanino has quit IRC | 01:29 | |
bswartz | clarkb: stack_install_service calls it | 01:30 |
bswartz | hmm it's wrapped by "if is_service_enabled nova" .... | 01:31 |
*** mylu has quit IRC | 01:31 | |
gmann | clarkb: bswartz this one - https://github.com/openstack-dev/devstack/blob/25fe1be8b151b4ac529fdf03be50f7db65033abf/stack.sh#L836 | 01:31 |
* bswartz scratches his head... | 01:31 | |
bswartz | okay let me see if I can disable "nova" | 01:31 |
clarkb | wrapped with if is_service_enabled nova; | 01:31 |
bswartz | is it better to use ENABLED_SERVICES=..... or use disable_service? | 01:32 |
clarkb | I use enabled services typically | 01:33 |
clarkb | to be explicit | 01:33 |
bswartz | yeah me too | 01:33 |
bswartz | and nova is definitely not in that list | 01:33 |
bswartz | so somehow it's getting added | 01:33 |
clarkb | transitive? | 01:33 |
clarkb | via a plugin? | 01:33 |
bswartz | yeah at least I can debug this now | 01:33 |
bswartz | I'll track down what's adding it | 01:34 |
openstackgerrit | Merged openstack-dev/devstack: Switch tempest verify-config usage to avoid bug https://review.openstack.org/278160 | 01:34 |
*** mylu has joined #openstack-qa | 01:35 | |
gmann | bswartz: hope none of the n-* are enabled in conf | 01:37 |
gmann | bswartz: this is actually tells if nova needs to install - https://github.com/openstack-dev/devstack/blob/d718971299dab1e6af3f69417d77f4f75ad53cb0/lib/nova#L179 | 01:37 |
openstackrecheck | Console logs not available after 13:21s for gate-nova-python27 277953,2,081a56b | 01:37 |
openstackgerrit | Merged openstack-dev/devstack: Switch tempest verify-config usage to avoid bug https://review.openstack.org/278151 | 01:40 |
*** mylu has quit IRC | 01:44 | |
*** madhu_ak has quit IRC | 01:45 | |
*** lekha is now known as lekha|away | 01:46 | |
bswartz | gmann: additionally, this check can cause nova to get enabled: https://github.com/openstack-dev/devstack/blob/d718971299dab1e6af3f69417d77f4f75ad53cb0/functions-common#L2033 | 01:46 |
bswartz | gmann: the way that check is written, it would match any string like "python-xxxclient" | 01:47 |
*** bswartz has quit IRC | 01:49 | |
*** bswartz has joined #openstack-qa | 01:50 | |
* bswartz reminds himself to be careful which window he types "sudo poweroff" in | 01:50 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full 277645,2,9367c50 | 01:50 |
*** jasonsb has joined #openstack-qa | 01:52 | |
*** jecarey has joined #openstack-qa | 01:52 | |
*** itzikb has quit IRC | 01:54 | |
cody-somerville | clarkb: fyi, those two links you gave me were the same. Was there actually a second link you meant to paste? | 01:54 |
*** itzikb has joined #openstack-qa | 01:55 | |
*** mylu has joined #openstack-qa | 01:55 | |
*** Sparyx has joined #openstack-qa | 01:57 | |
*** jecarey has quit IRC | 01:57 | |
gmann | bswartz: yea that is still there even we have is_nova_enabled. may be cleanup soon | 01:57 |
gmann | bswartz: i did not get "it would match any string like "python-xxxclient" | 01:57 |
*** weshay_xchat has quit IRC | 01:58 | |
*** mylu has quit IRC | 01:58 | |
bswartz | gmann: there is a regex match there which can match any string with "n-" in it | 01:59 |
bswartz | python-cinderclient for example matches the regex | 02:00 |
bswartz | and would cause that function to enable nova | 02:00 |
*** achanda has joined #openstack-qa | 02:00 | |
clarkb | cody-somerville: 278160 | 02:00 |
bswartz | not that "python-cinderclient" shows up in the list of enabled services, but some client might | 02:00 |
bswartz | it seems like a bug | 02:00 |
gmann | bswartz: ohh, i see | 02:01 |
*** rossella_s has quit IRC | 02:03 | |
*** rossella_s has joined #openstack-qa | 02:03 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-python27 266933,12,7ac4a7e | 02:04 |
*** zz_dimtruck is now known as dimtruck | 02:04 | |
*** ngoracke has quit IRC | 02:04 | |
*** yamamoto has joined #openstack-qa | 02:12 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 246625,21,2b8960a | 02:17 |
*** armax has quit IRC | 02:18 | |
*** yamahata has quit IRC | 02:19 | |
*** itzikb has quit IRC | 02:26 | |
*** alex_xu has quit IRC | 02:28 | |
*** mylu has joined #openstack-qa | 02:30 | |
*** alex_xu has joined #openstack-qa | 02:30 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 273082,3,f09dae6 | 02:31 |
*** yamamoto has quit IRC | 02:31 | |
openstackgerrit | Masayuki Igawa proposed openstack/tempest-lib: Add cli execute test case https://review.openstack.org/277706 | 02:33 |
*** ngoracke has joined #openstack-qa | 02:37 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-python27 263926,5,356ad0d | 02:44 |
*** dims_ has quit IRC | 02:45 | |
*** Poornima has joined #openstack-qa | 02:48 | |
*** alex_xu has quit IRC | 02:49 | |
*** alex_xu has joined #openstack-qa | 02:52 | |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python27 250220,15,df31b94 | 02:57 |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full 271424,5,37583d7 | 03:11 |
*** mylu has quit IRC | 03:15 | |
*** mylu has joined #openstack-qa | 03:16 | |
*** nadya has joined #openstack-qa | 03:18 | |
*** nadya is now known as Guest2959 | 03:18 | |
*** ylobankov has joined #openstack-qa | 03:22 | |
*** Guest2959 has quit IRC | 03:22 | |
openstackrecheck | Console logs not available after 13:21s for gate-horizon-dsvm-integration 277220,8,3093baa | 03:24 |
*** mylu has quit IRC | 03:26 | |
*** dims has joined #openstack-qa | 03:27 | |
*** mylu has joined #openstack-qa | 03:29 | |
*** yamamoto has joined #openstack-qa | 03:29 | |
*** sc68cal has quit IRC | 03:30 | |
*** woodster_ has joined #openstack-qa | 03:32 | |
*** dims has quit IRC | 03:37 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 271858,13,8bcdee2 | 03:37 |
*** mylu has quit IRC | 03:38 | |
*** mylu has joined #openstack-qa | 03:39 | |
*** apoorvad has quit IRC | 03:40 | |
*** edmondsw has quit IRC | 03:49 | |
*** jlwhite has joined #openstack-qa | 03:50 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full 277835,3,1a9850b | 03:51 |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 278125,1,cc3dc64 | 04:04 |
mrodden | sdague: when you get a chance... i looked through ianw's branch of changes here https://review.openstack.org/#/q/status:open+project:openstack-dev/bashate+branch:master+topic:continuation | 04:05 |
mrodden | they need a +W still | 04:05 |
mrodden | and it touches a lot of the original script logic | 04:05 |
*** jogo has quit IRC | 04:10 | |
*** jogo has joined #openstack-qa | 04:11 | |
*** mylu has quit IRC | 04:15 | |
*** markvoelker has quit IRC | 04:15 | |
*** markvoelker has joined #openstack-qa | 04:16 | |
*** amotoki has joined #openstack-qa | 04:17 | |
*** amotoki has quit IRC | 04:17 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 238309,14,af867bd | 04:18 |
*** mylu has joined #openstack-qa | 04:25 | |
*** jlwhite has quit IRC | 04:26 | |
*** mylu has quit IRC | 04:26 | |
*** dimtruck is now known as zz_dimtruck | 04:27 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 259097,7,ae39515 | 04:31 |
*** Poornima has quit IRC | 04:32 | |
ianw | mrodden: they've sat for so long ... i think maybe just commit? i think it's pretty uncontroversial | 04:36 |
*** salv-orlando has joined #openstack-qa | 04:41 | |
*** salv-orl_ has quit IRC | 04:43 | |
*** mylu has joined #openstack-qa | 04:44 | |
openstackrecheck | Console logs not available after 13:22s for gate-keystone-python34 226464,20,98f4ff8 | 04:44 |
*** ngoracke has quit IRC | 04:50 | |
openstackgerrit | Masayuki Igawa proposed openstack/openstack-health: Fix docs warnings https://review.openstack.org/278204 | 04:54 |
*** ngoracke has joined #openstack-qa | 04:55 | |
openstackgerrit | Matthew Treinish proposed openstack-dev/devstack: Respect constraints in tempest tox venvs https://review.openstack.org/278206 | 04:55 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 278147,1,fdeff08 | 04:58 |
*** Poornima has joined #openstack-qa | 05:00 | |
*** ngoracke has quit IRC | 05:00 | |
*** mragupat has joined #openstack-qa | 05:00 | |
*** moravec has quit IRC | 05:01 | |
*** mragupat has quit IRC | 05:06 | |
*** mragupat has joined #openstack-qa | 05:06 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 277861,2,80003f0 | 05:11 |
*** ylobankov has quit IRC | 05:14 | |
openstackgerrit | Masayuki Igawa proposed openstack/openstack-health: Add TODO list https://review.openstack.org/278208 | 05:20 |
*** Poornima has quit IRC | 05:24 | |
*** anshul has joined #openstack-qa | 05:24 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 277763,2,6c7b774 | 05:24 |
*** dwalleck has joined #openstack-qa | 05:27 | |
*** Poornima has joined #openstack-qa | 05:29 | |
*** armax has joined #openstack-qa | 05:31 | |
*** anshul has quit IRC | 05:32 | |
*** dave-mccowan has quit IRC | 05:33 | |
*** SridharG has joined #openstack-qa | 05:34 | |
*** Poornima has quit IRC | 05:34 | |
*** woodster_ has quit IRC | 05:36 | |
*** Poornima has joined #openstack-qa | 05:36 | |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-pep8 278155,1,eb32aa6 | 05:38 |
*** mylu has quit IRC | 05:41 | |
*** Poornima has quit IRC | 05:42 | |
*** mylu has joined #openstack-qa | 05:46 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: use separate user https://review.openstack.org/278212 | 05:46 |
*** anshul has joined #openstack-qa | 05:48 | |
openstackrecheck | Console logs not available after 13:22s for gate-keystone-python34 278136,1,53b2127 | 05:51 |
*** jecarey has joined #openstack-qa | 05:53 | |
*** nadya has joined #openstack-qa | 05:53 | |
*** nadya is now known as Guest91121 | 05:54 | |
*** jecarey has quit IRC | 05:57 | |
openstackgerrit | Merged openstack/tempest: Log more info when mke2fs fails on a guest https://review.openstack.org/277396 | 05:58 |
*** jasonsb has quit IRC | 06:01 | |
*** jasonsb has joined #openstack-qa | 06:02 | |
*** rossella_s has quit IRC | 06:03 | |
*** rossella_s has joined #openstack-qa | 06:03 | |
*** jasonsb has quit IRC | 06:04 | |
*** mylu has quit IRC | 06:04 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-src-os-brick 277224,5,e23e68a | 06:05 |
*** SridharG has quit IRC | 06:05 | |
*** mylu has joined #openstack-qa | 06:05 | |
*** jasonsb has joined #openstack-qa | 06:05 | |
*** Poornima has joined #openstack-qa | 06:07 | |
*** anshul has quit IRC | 06:09 | |
*** gamado has joined #openstack-qa | 06:12 | |
*** mylu has quit IRC | 06:12 | |
*** mylu has joined #openstack-qa | 06:13 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add cleanup for endpoint tests https://review.openstack.org/278219 | 06:15 |
openstackrecheck | Console logs not available after 13:24s for gate-horizon-dsvm-integration 217437,17,415e375 | 06:18 |
*** anshul has joined #openstack-qa | 06:21 | |
*** anshul has quit IRC | 06:26 | |
*** itzikb has joined #openstack-qa | 06:28 | |
*** Guest91121 has quit IRC | 06:29 | |
*** yfried has quit IRC | 06:29 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 278119,4,b829255 | 06:31 |
openstackgerrit | Merged openstack/tempest: Identity V3: missing api coverage for 'Get Endpoint' method https://review.openstack.org/270928 | 06:38 |
*** SridharG has joined #openstack-qa | 06:41 | |
openstackrecheck | Console logs not available after 13:22s for gate-keystone-python34 103368,34,a3cca6e | 06:45 |
openstackgerrit | Merged openstack/tempest: Fixing typos in tempest/test.py https://review.openstack.org/275341 | 06:45 |
*** anshul has joined #openstack-qa | 06:47 | |
*** armax has quit IRC | 06:48 | |
*** tochi has quit IRC | 06:52 | |
openstackrecheck | Console logs not available after 13:23s for gate-glance-docs 278157,1,5f6068a | 06:58 |
*** yfried has joined #openstack-qa | 07:11 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 278124,1,ced0c45 | 07:12 |
*** mylu has quit IRC | 07:13 | |
*** rcernin has joined #openstack-qa | 07:14 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 277645,2,2cf27a7 | 07:25 |
*** mragupat has quit IRC | 07:27 | |
*** ianw has quit IRC | 07:30 | |
*** ianw has joined #openstack-qa | 07:30 | |
*** otherwiseguy has quit IRC | 07:34 | |
*** anshul has quit IRC | 07:34 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-pep8 253747,27,f84f41f | 07:38 |
*** mkovacik has quit IRC | 07:41 | |
*** ngoracke has joined #openstack-qa | 07:44 | |
*** openstackgerrit has quit IRC | 07:47 | |
*** openstackgerrit has joined #openstack-qa | 07:47 | |
*** ngoracke has quit IRC | 07:49 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 278142,1,53ef958 | 07:52 |
*** rcernin has quit IRC | 07:52 | |
*** gfidente has joined #openstack-qa | 07:55 | |
*** gfidente has quit IRC | 07:55 | |
*** gfidente has joined #openstack-qa | 07:55 | |
*** e0ne has joined #openstack-qa | 07:58 | |
*** Poornima is now known as Poornima|lunch | 07:58 | |
*** Poornima|lunch is now known as Poornima | 07:58 | |
openstackgerrit | Daniel Mellado proposed openstack/tempest: Split users_client from keystone V3 client https://review.openstack.org/277863 | 08:02 |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 277565,4,aa07aed | 08:05 |
*** neeti has joined #openstack-qa | 08:07 | |
mrodden | ianw: yeah i just would like to give someone else a chance to tip them in | 08:07 |
mrodden | i'll probably +W em tomorrow if no one looks | 08:07 |
*** achanda has quit IRC | 08:13 | |
*** rcernin has joined #openstack-qa | 08:15 | |
*** dwalleck has quit IRC | 08:16 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-python27 264157,3,2ee3c62 | 08:19 |
*** apevec has joined #openstack-qa | 08:23 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-full 278163,1,2327e56 | 08:32 |
*** nadya has joined #openstack-qa | 08:35 | |
*** nadya is now known as Guest15890 | 08:36 | |
*** achanda has joined #openstack-qa | 08:37 | |
*** yfried_ has joined #openstack-qa | 08:38 | |
*** jlanoux has joined #openstack-qa | 08:38 | |
*** yfried has quit IRC | 08:38 | |
*** e0ne has quit IRC | 08:39 | |
*** grafuls has joined #openstack-qa | 08:41 | |
*** ihrachys has joined #openstack-qa | 08:42 | |
*** pavel_bondar has joined #openstack-qa | 08:42 | |
*** apevec has left #openstack-qa | 08:44 | |
*** salv-orlando has quit IRC | 08:44 | |
openstackrecheck | Console logs not available after 13:21s for gate-horizon-npm-run-lint 261130,20,d4fe604 | 08:46 |
*** yfried_ has quit IRC | 08:51 | |
*** yfried_ has joined #openstack-qa | 08:51 | |
*** jlanoux has quit IRC | 08:54 | |
*** jlanoux has joined #openstack-qa | 08:55 | |
*** reedip is now known as outofmemory | 08:57 | |
*** safchain has joined #openstack-qa | 08:58 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 277834,3,0b69f63 | 09:00 |
*** ifarkas has joined #openstack-qa | 09:02 | |
openstackgerrit | Maho Koshiya proposed openstack/tempest: Add OS-INHERIT of keystone v3 in api tempest https://review.openstack.org/250795 | 09:03 |
*** tosky has joined #openstack-qa | 09:05 | |
*** shardy has joined #openstack-qa | 09:11 | |
gmann | masayukig: mkoderer mtreinish please review these - https://review.openstack.org/#/c/277763/ https://review.openstack.org/#/c/277890/ | 09:12 |
openstackrecheck | Console logs not available after 13:23s for gate-grenade-dsvm 278176,1,d5fdff5 | 09:14 |
*** lucas-dinner is now known as lucasagomes | 09:19 | |
openstackrecheck | Console logs not available after 13:25s for gate-grenade-dsvm 250220,16,2c218d9 | 09:28 |
*** dtantsur|afk is now known as dtantsur | 09:28 | |
*** mkovacik has joined #openstack-qa | 09:29 | |
*** slowrie has quit IRC | 09:30 | |
*** tochi has joined #openstack-qa | 09:30 | |
openstackgerrit | Daniel Mellado proposed openstack/tempest: Split projects_client from keystone v3 client https://review.openstack.org/278270 | 09:32 |
*** yfried has joined #openstack-qa | 09:35 | |
*** yfried_ has quit IRC | 09:36 | |
openstackrecheck | Console logs not available after 13:22s for gate-keystone-python34 266989,2,c798e31 | 09:41 |
*** ihrachys has quit IRC | 09:47 | |
*** zz_dimtruck is now known as dimtruck | 09:47 | |
*** dtantsur is now known as dtantsur|brb | 09:51 | |
*** mvk has joined #openstack-qa | 09:52 | |
*** yfried_ has joined #openstack-qa | 09:52 | |
*** yfried has quit IRC | 09:52 | |
*** jecarey has joined #openstack-qa | 09:53 | |
*** gszasz has joined #openstack-qa | 09:54 | |
openstackrecheck | Console logs not available after 13:23s for gate-grenade-dsvm 277302,2,6ac1913 | 09:54 |
*** mvk has quit IRC | 09:56 | |
*** jecarey has quit IRC | 09:58 | |
*** tochi has quit IRC | 10:00 | |
*** achanda has quit IRC | 10:06 | |
*** e0ne has joined #openstack-qa | 10:07 | |
*** achanda has joined #openstack-qa | 10:08 | |
openstackrecheck | Console logs not available after 13:23s for gate-grenade-dsvm 224910,24,afd9aa6 | 10:08 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add tests for compute v2.10 microversion https://review.openstack.org/277763 | 10:14 |
*** mvk has joined #openstack-qa | 10:16 | |
openstackgerrit | Timofey Durakov proposed openstack/tempest: Live-migration of instance with attached ephemerals added https://review.openstack.org/233712 | 10:20 |
openstackgerrit | Timofey Durakov proposed openstack/tempest: Live migration of instances with swap https://review.openstack.org/233722 | 10:20 |
*** r-mibu has quit IRC | 10:20 | |
*** r-mibu has joined #openstack-qa | 10:21 | |
openstackrecheck | Console logs not available after 13:23s for gate-grenade-dsvm 167819,13,fee0819 | 10:21 |
*** shardy has quit IRC | 10:25 | |
*** shardy has joined #openstack-qa | 10:25 | |
*** ihrachys has joined #openstack-qa | 10:29 | |
openstackrecheck | Console logs not available after 13:22s for gate-horizon-dsvm-integration 261130,20,58dd29a | 10:34 |
*** ihrachys has quit IRC | 10:41 | |
*** salv-orlando has joined #openstack-qa | 10:41 | |
*** dtantsur|brb is now known as dtantsur | 10:42 | |
*** cdent has joined #openstack-qa | 10:43 | |
*** achanda has quit IRC | 10:45 | |
openstackgerrit | Joseph Lanoux proposed openstack/tempest: Add a fallback to ssh checks https://review.openstack.org/259515 | 10:45 |
openstackgerrit | Neerja Narayan proposed openstack/tempest: Adding negative tests for zaqar queues v1.0 https://review.openstack.org/278298 | 10:46 |
*** dims has joined #openstack-qa | 10:48 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-large-ops 159369,7,50a997b | 10:48 |
openstackrecheck | openstack/nova change: https://review.openstack.org/277029 failed gate-tempest-dsvm-postgres-full in the gate queue with an unrecognized error | 10:48 |
openstackgerrit | Neerja Narayan proposed openstack/tempest: Adding negative tests for zaqar queues v1.0 https://review.openstack.org/278300 | 10:50 |
*** aysyd has joined #openstack-qa | 10:52 | |
*** aysyd has quit IRC | 10:58 | |
*** aysyd has joined #openstack-qa | 10:59 | |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-full-lio-src-os-brick 277224,9,e636242 | 11:02 |
*** rfolco has joined #openstack-qa | 11:09 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 254164,2,bef302e | 11:15 |
*** ngoracke has joined #openstack-qa | 11:20 | |
*** ngoracke has quit IRC | 11:25 | |
*** jaypipes has joined #openstack-qa | 11:27 | |
*** ChanServ sets mode: +o jaypipes | 11:27 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-large-ops 235752,8,dc1f5ad | 11:29 |
openstackrecheck | openstack/keystone change: https://review.openstack.org/278147 failed because of: gate-grenade-dsvm: https://bugs.launchpad.net/bugs/1524418 | 11:29 |
openstack | Launchpad bug 1524418 in oslo.messaging "gate-grenade-dsvm-multinode fails with "AttributeError: 'LocalManager' object has no attribute 'l3driver'"" [Undecided,Fix released] - Assigned to Mehdi Abaakouk (sileht) | 11:29 |
*** Serlex has joined #openstack-qa | 11:41 | |
openstackrecheck | Console logs not available after 13:23s for gate-cinder-python34 250220,16,e1c7018 | 11:42 |
*** ihrachys has joined #openstack-qa | 11:43 | |
*** erlon has joined #openstack-qa | 11:43 | |
*** achanda has joined #openstack-qa | 11:45 | |
*** achanda has quit IRC | 11:50 | |
openstackrecheck | Console logs not available after 13:26s for gate-grenade-dsvm 217381,7,8b2be12 | 11:56 |
*** mvk has quit IRC | 12:00 | |
*** Sparyx has quit IRC | 12:01 | |
*** mvk has joined #openstack-qa | 12:02 | |
openstackrecheck | Console logs not available after 13:22s for gate-horizon-npm-run-lint 227036,30,717c01c | 12:09 |
openstackgerrit | John Warren proposed openstack/tempest-lib: Fix project domain problem in v3 token client https://review.openstack.org/277088 | 12:10 |
*** Poornima has quit IRC | 12:10 | |
*** Poornima has joined #openstack-qa | 12:12 | |
*** Sparyx has joined #openstack-qa | 12:17 | |
*** yamamoto has quit IRC | 12:20 | |
openstackrecheck | Console logs not available after 13:49s for gate-tempest-dsvm-neutron-full 277699,2,f59a4ca | 12:23 |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: remove keystone templated catalog https://review.openstack.org/278333 | 12:26 |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: remove keystone templated catalog https://review.openstack.org/278333 | 12:26 |
*** edmondsw has joined #openstack-qa | 12:29 | |
openstackrecheck | Console logs not available after 13:32s for gate-grenade-dsvm 249486,23,1f9a60d | 12:37 |
*** krotscheck_dcm is now known as krotscheck | 12:38 | |
*** vgridnev has joined #openstack-qa | 12:44 | |
*** achanda has joined #openstack-qa | 12:48 | |
openstackrecheck | Console logs not available after 13:32s for gate-grenade-dsvm 249486,24,24b5a77 | 12:50 |
*** weshay_xchat has joined #openstack-qa | 12:52 | |
*** achanda has quit IRC | 12:54 | |
*** lucasagomes is now known as lucas-hungry | 12:56 | |
*** Poornima has quit IRC | 12:59 | |
*** Sparyx has quit IRC | 13:02 | |
*** dimtruck is now known as zz_dimtruck | 13:03 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-nova-v20-api 273104,5,5921f7a | 13:04 |
*** e0ne has quit IRC | 13:09 | |
*** vgridnev has quit IRC | 13:09 | |
*** e0ne has joined #openstack-qa | 13:09 | |
*** edmondsw has quit IRC | 13:11 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-postgres-full 277863,2,867e430 | 13:17 |
*** Sparyx has joined #openstack-qa | 13:18 | |
*** Serlex has quit IRC | 13:19 | |
*** vgridnev has joined #openstack-qa | 13:19 | |
*** vgridnev has quit IRC | 13:21 | |
*** moravec has joined #openstack-qa | 13:24 | |
*** e0ne has quit IRC | 13:24 | |
*** e0ne has joined #openstack-qa | 13:25 | |
*** vgridnev has joined #openstack-qa | 13:27 | |
*** yamamoto has joined #openstack-qa | 13:29 | |
*** yfried_ has quit IRC | 13:30 | |
openstackrecheck | Console logs not available after 13:22s for gate-grenade-dsvm 270997,3,7b0b12d | 13:31 |
*** Serlex has joined #openstack-qa | 13:32 | |
*** neeti has quit IRC | 13:35 | |
dims | mtreinish : i don't see some of my periodic jobs show up on the health site. i'd like to see pass/fail percentage for some new jobs (see details here https://etherpad.openstack.org/p/dims-periodic-jobs) | 13:39 |
*** ihrachys_ has joined #openstack-qa | 13:40 | |
*** zz_dimtruck is now known as dimtruck | 13:41 | |
sdague | dims: I was pretty sure only gate jobs are in health | 13:41 |
*** sc68cal has joined #openstack-qa | 13:42 | |
dims | sdague : i see some here - http://status.openstack.org/openstack-health/#/g/build_queue/periodic?groupKey=build_queue&resolutionKey=hour&searchJob= | 13:42 |
*** ihrachys has quit IRC | 13:43 | |
dims | sdague : background - i'd like somewhere for oslo folks to go look what they broke - https://etherpad.openstack.org/p/dims-periodic-jobs | 13:44 |
openstackrecheck | Console logs not available after 13:22s for gate-nova-pep8 276191,1,7ff09bc | 13:44 |
*** gamado has quit IRC | 13:46 | |
*** dave-mccowan has joined #openstack-qa | 13:51 | |
sdague | dims: right, I understand, I just think there remain limitations. There are only 7 jobs in there | 13:51 |
dims | sdague : agree (trying to replace https://travis-ci.org/dims/) | 13:52 |
*** lucas-hungry is now known as lucasagomes | 13:53 | |
openstackgerrit | Jordan Pittier proposed openstack/tempest: Introduce new helper: call_and_ignore_notfound_exc() https://review.openstack.org/277907 | 13:55 |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python27 269624,20,5f3eb96 | 13:58 |
*** ngoracke has joined #openstack-qa | 13:58 | |
*** akshai has joined #openstack-qa | 13:59 | |
*** Serlex has left #openstack-qa | 14:00 | |
*** dimtruck is now known as zz_dimtruck | 14:06 | |
*** weshay_xchat is now known as weshay | 14:07 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-pep8 278079,2,bb987e9 | 14:11 |
*** mtanino has joined #openstack-qa | 14:12 | |
*** Matt4 has quit IRC | 14:13 | |
*** zz_dimtruck is now known as dimtruck | 14:16 | |
*** mhickey has joined #openstack-qa | 14:18 | |
*** yaume has joined #openstack-qa | 14:19 | |
*** sabeen has joined #openstack-qa | 14:19 | |
*** mriedem has joined #openstack-qa | 14:22 | |
*** sabeen3 has joined #openstack-qa | 14:22 | |
*** jordanP has joined #openstack-qa | 14:22 | |
*** sabeen has quit IRC | 14:24 | |
*** yfried_ has joined #openstack-qa | 14:24 | |
*** Sparyx has quit IRC | 14:24 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-pep8 278078,2,3186d69 | 14:24 |
*** krtaylor has quit IRC | 14:25 | |
openstackgerrit | Arx Cruz proposed openstack/tempest: Split roles_client for keystone v3 client https://review.openstack.org/278399 | 14:33 |
*** itzikb has quit IRC | 14:33 | |
*** akshai has quit IRC | 14:34 | |
openstackrecheck | Console logs not available after 13:24s for gate-horizon-dsvm-integration 246625,22,60d56ba | 14:38 |
*** dimtruck is now known as zz_dimtruck | 14:38 | |
openstackgerrit | Matt Riedemann proposed openstack-dev/devstack: Install libosinfo on n-cpu nodes https://review.openstack.org/278142 | 14:39 |
openstackgerrit | David Moreau Simard proposed openstack/tempest: Revert "Remove setup_credentials from orchestration tests" https://review.openstack.org/278068 | 14:39 |
*** akshai has joined #openstack-qa | 14:39 | |
*** Swami has joined #openstack-qa | 14:41 | |
openstackgerrit | Jordan Pittier proposed openstack/tempest: Remove some dead code https://review.openstack.org/278406 | 14:42 |
openstackgerrit | Matt Riedemann proposed openstack-infra/elastic-recheck: Add query for tempest verify-config cliff bug 1543841 https://review.openstack.org/278409 | 14:48 |
openstack | bug 1543841 in devstack "Invocation error: tempest verify-config: error: unrecognized arguments: -uro ../../../../tmp/tmp.FR5OHabb3Y" [Undecided,In progress] https://launchpad.net/bugs/1543841 - Assigned to Matthew Treinish (treinish) | 14:48 |
openstackrecheck | Console logs not available after 13:22s for gate-swift-python27 278283,2,ef91f2a | 14:51 |
*** achanda has joined #openstack-qa | 14:52 | |
*** rbak has joined #openstack-qa | 14:54 | |
jordanP | sdague, hi. Why are we running gate-tempest-dsvm-ceilometer-mysql-neutron-full on each tempest commit since this exact job also runs on each ceilometer commit ? It looks like a waste of resources | 14:54 |
*** itzikb has joined #openstack-qa | 14:55 | |
jordanP | especially now that ceilometer adoptes the "plugin" approach | 14:55 |
*** jecarey has joined #openstack-qa | 14:56 | |
*** jecarey has quit IRC | 14:56 | |
*** jecarey has joined #openstack-qa | 14:56 | |
sdague | jordanP: don't know, ask mtreinish | 14:56 |
jordanP | okay | 14:57 |
*** achanda has quit IRC | 14:57 | |
openstackgerrit | Arx Cruz proposed openstack/tempest: Split roles_client for keystone v3 client https://review.openstack.org/278399 | 14:59 |
*** akshai has quit IRC | 14:59 | |
openstackgerrit | Sean M. Collins proposed openstack-infra/devstack-gate: [WIP] Switch to new Neutron devstack https://review.openstack.org/278415 | 14:59 |
*** akshai has joined #openstack-qa | 15:01 | |
openstackgerrit | Sean M. Collins proposed openstack-dev/devstack: Begin new lib/neutron https://review.openstack.org/168438 | 15:02 |
openstackgerrit | Matt Riedemann proposed openstack-infra/elastic-recheck: Remove query for bug 1524418 https://review.openstack.org/278418 | 15:04 |
openstack | bug 1524418 in oslo.messaging "gate-grenade-dsvm-multinode fails with "AttributeError: 'LocalManager' object has no attribute 'l3driver'"" [Undecided,Fix released] https://launchpad.net/bugs/1524418 - Assigned to Mehdi Abaakouk (sileht) | 15:04 |
mriedem | sdague: ^ | 15:04 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 254164,2,203050f | 15:05 |
*** obondarev_ is now known as obondarev | 15:06 | |
*** deva_ has joined #openstack-qa | 15:08 | |
*** vgridnev has quit IRC | 15:09 | |
*** mtanino has quit IRC | 15:09 | |
*** vgridnev has joined #openstack-qa | 15:11 | |
openstackgerrit | Sean M. Collins proposed openstack-infra/devstack-gate: [WIP] Switch to new Neutron devstack https://review.openstack.org/278415 | 15:12 |
*** SridharG has quit IRC | 15:13 | |
*** zz_dimtruck is now known as dimtruck | 15:14 | |
*** deva_ has quit IRC | 15:14 | |
openstackgerrit | Joseph Lanoux proposed openstack/tempest: Add a fallback to ssh checks https://review.openstack.org/259515 | 15:16 |
*** ylobankov has joined #openstack-qa | 15:17 | |
*** pglass has joined #openstack-qa | 15:17 | |
*** vgridnev has quit IRC | 15:17 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full 278298,1,c2b4ecb | 15:18 |
*** sigmavirus24_awa is now known as sigmavirus24 | 15:19 | |
*** dkranz has joined #openstack-qa | 15:20 | |
*** dmsimard has joined #openstack-qa | 15:21 | |
dmsimard | jordanP: o/ | 15:21 |
jordanP | hi | 15:21 |
*** pglass has quit IRC | 15:21 | |
jordanP | so I don't understand the issue | 15:21 |
jordanP | how come the change passed the gate but breaks your CI | 15:21 |
dmsimard | It's not the first time something works with devstack but doesn't work outside of it | 15:22 |
dmsimard | :) | 15:22 |
jordanP | agreed | 15:22 |
jordanP | but maybe you mis-configured your tempest conf file ? | 15:22 |
*** woodster_ has joined #openstack-qa | 15:23 | |
dmsimard | We already discussed the issue with mtreinish yesterday, the details are in both https://bugs.launchpad.net/tempest/+bug/1543785 and https://bugs.launchpad.net/heat/+bug/1543759 | 15:23 |
openstack | Launchpad bug 1543785 in tempest "Role setup is now incorrect for Heat tests" [Undecided,In progress] - Assigned to David Moreau Simard (dmsimard) | 15:23 |
openstack | Launchpad bug 1543759 in tempest "AttributeError: 'NoneType' object has no attribute 'service_types'" [Undecided,In progress] - Assigned to David Moreau Simard (dmsimard) | 15:23 |
dmsimard | I'm neither a heat or a tempest developer so I lack a bit of knowledge around the issue but was told this wasn't our fault | 15:24 |
dmsimard | Perhaps the discussion that took place here can enlighten you http://eavesdrop.openstack.org/irclogs/%23heat/%23heat.2016-02-09.log.html#t2016-02-09T20:18:07 | 15:25 |
dmellado | dmsimard: what are you up to this time? xD | 15:27 |
dmsimard | dmellado: chasing trunk issues, what else | 15:28 |
dmsimard | 4 backwards incompatible changes in the past 2 weeks by various projects recently :( | 15:28 |
dmellado | if you disturb here around I'll punish you with a -2 xD | 15:28 |
*** mvk has quit IRC | 15:29 | |
dmsimard | dmellado: oh noes, my stackalytics stats :( | 15:29 |
dmellado | lol | 15:29 |
dmellado | let me check the issue | 15:29 |
*** mvk has joined #openstack-qa | 15:29 | |
*** mragupat has joined #openstack-qa | 15:30 | |
*** mvk has quit IRC | 15:30 | |
*** regXboi has joined #openstack-qa | 15:30 | |
*** mvk has joined #openstack-qa | 15:31 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full-ceph 259097,7,af664e5 | 15:32 |
sdague | dmsimard: can whatever your system is provide 3rd party CI reporting in to tempest? That would be helpful to sort these things out. | 15:32 |
dmsimard | sdague: We've actually submitted https://review.openstack.org/#/c/278080/ | 15:32 |
dmsimard | which is first party :) | 15:33 |
*** rcernin has quit IRC | 15:33 | |
dmsimard | But we have something for RDO that essentially runs the puppet-openstack integration tests outside of the gate to extend our coverage | 15:33 |
*** vgridnev has joined #openstack-qa | 15:33 | |
dmsimard | We plan to have it provide feedback as third party eventually but we're not ready yet | 15:33 |
sdague | right, well that seems more useful honestly, because first party is going to have other constraints around timing on it which might keep it out of the check queue | 15:34 |
*** e0ne has quit IRC | 15:34 | |
dmsimard | sdague: I'm hopeful we can provide some level of third party feedback by the end of the cycle | 15:35 |
*** e0ne has joined #openstack-qa | 15:35 | |
dmsimard | If trunk stops breaking I suddenly have a bunch of free time to work on that :P | 15:35 |
*** yamamoto has quit IRC | 15:35 | |
sdague | if you provide feedback, then it might :) | 15:36 |
sdague | dmsimard: it was also a red hat person that pushed that other patch, so worth circling with them as well I think | 15:37 |
dmsimard | sdague: yup, all over it | 15:38 |
sdague | anyway, revert approved | 15:38 |
dmsimard | appreciate it, thanks | 15:38 |
*** krtaylor has joined #openstack-qa | 15:38 | |
*** itzikb has quit IRC | 15:40 | |
*** jlwhite has joined #openstack-qa | 15:42 | |
*** malini has joined #openstack-qa | 15:42 | |
*** malini1 has joined #openstack-qa | 15:44 | |
*** vgridnev has quit IRC | 15:45 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 278300,1,9f222f5 | 15:45 |
*** vgridnev has joined #openstack-qa | 15:45 | |
*** malini has quit IRC | 15:47 | |
*** itzikb has joined #openstack-qa | 15:48 | |
*** ihrachys_ is now known as ihrachys | 15:49 | |
*** pglass has joined #openstack-qa | 15:50 | |
*** pglbutt has joined #openstack-qa | 15:51 | |
*** Sparyx has joined #openstack-qa | 15:53 | |
*** pglass has quit IRC | 15:54 | |
*** yamamoto has joined #openstack-qa | 15:54 | |
*** vinc has joined #openstack-qa | 15:55 | |
*** mtanino has joined #openstack-qa | 15:56 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-full-kilo 278270,1,9a7ad27 | 15:58 |
*** rcernin has joined #openstack-qa | 16:01 | |
*** jswarren_ has joined #openstack-qa | 16:01 | |
*** salv-orlando has quit IRC | 16:01 | |
*** samueldmq1 has joined #openstack-qa | 16:04 | |
*** deva_ has joined #openstack-qa | 16:06 | |
*** deva_ has quit IRC | 16:11 | |
*** samueldmq1 has quit IRC | 16:11 | |
openstackrecheck | Console logs not available after 13:23s for gate-nova-pep8 278077,2,b3772ba | 16:12 |
*** ccneill has joined #openstack-qa | 16:12 | |
*** dmsimard has left #openstack-qa | 16:12 | |
*** silos has joined #openstack-qa | 16:15 | |
*** itzikb has quit IRC | 16:18 | |
openstackgerrit | Merged openstack-infra/elastic-recheck: Add query for tempest verify-config cliff bug 1543841 https://review.openstack.org/278409 | 16:21 |
openstack | bug 1543841 in devstack "Invocation error: tempest verify-config: error: unrecognized arguments: -uro ../../../../tmp/tmp.FR5OHabb3Y" [Undecided,In progress] https://launchpad.net/bugs/1543841 - Assigned to Matthew Treinish (treinish) | 16:21 |
*** weshay has quit IRC | 16:21 | |
*** weshay_xchat has joined #openstack-qa | 16:21 | |
*** jlwhite has quit IRC | 16:22 | |
*** Swami_ has joined #openstack-qa | 16:22 | |
*** weshay_xchat has quit IRC | 16:23 | |
*** weshay has joined #openstack-qa | 16:23 | |
*** rcernin has quit IRC | 16:24 | |
openstackgerrit | Arx Cruz proposed openstack/tempest: Split roles_client for keystone v3 client https://review.openstack.org/278399 | 16:24 |
*** jlwhite has joined #openstack-qa | 16:25 | |
*** jlwhite has quit IRC | 16:25 | |
openstackrecheck | Console logs not available after 13:24s for gate-grenade-dsvm 233722,13,0054407 | 16:25 |
*** otherwiseguy has joined #openstack-qa | 16:26 | |
*** Swami has quit IRC | 16:27 | |
*** raildo-afk is now known as raildo | 16:29 | |
openstackgerrit | Arx Cruz proposed openstack/tempest: Split roles_client for keystone v3 client https://review.openstack.org/278399 | 16:30 |
*** Sparyx has quit IRC | 16:31 | |
*** itzikb has joined #openstack-qa | 16:33 | |
*** boris-42 has quit IRC | 16:33 | |
*** itzikb has quit IRC | 16:34 | |
*** vgridnev has quit IRC | 16:36 | |
*** Guest15890 has quit IRC | 16:36 | |
*** jgriffith_away is now known as jgriffith | 16:37 | |
*** slowrie has joined #openstack-qa | 16:37 | |
*** openstackrecheck has quit IRC | 16:38 | |
*** openstackrecheck has joined #openstack-qa | 16:39 | |
*** salv-orlando has joined #openstack-qa | 16:50 | |
*** apoorvad has joined #openstack-qa | 16:51 | |
*** jswarren_ has quit IRC | 16:51 | |
*** jlanoux has quit IRC | 16:51 | |
*** asselin has quit IRC | 16:52 | |
*** crobertsrh has joined #openstack-qa | 16:53 | |
*** marcusvrn_ has joined #openstack-qa | 16:53 | |
*** achanda has joined #openstack-qa | 16:55 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 16:55 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 16:56 | |
*** asselin has joined #openstack-qa | 16:57 | |
*** asselin__ has joined #openstack-qa | 16:59 | |
*** achanda has quit IRC | 16:59 | |
*** asselin has quit IRC | 17:01 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 259097,8,3e1c674 | 17:03 |
*** e0ne has quit IRC | 17:08 | |
*** armax has joined #openstack-qa | 17:09 | |
*** ccneill has quit IRC | 17:14 | |
*** vgridnev has joined #openstack-qa | 17:15 | |
*** amotoki has joined #openstack-qa | 17:16 | |
*** amotoki has quit IRC | 17:16 | |
*** silos has quit IRC | 17:17 | |
*** jlwhite has joined #openstack-qa | 17:17 | |
*** jlanoux has joined #openstack-qa | 17:20 | |
*** silos has joined #openstack-qa | 17:22 | |
*** ifarkas has quit IRC | 17:27 | |
*** dtantsur is now known as dtantsur|afk | 17:28 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-pep8 278406,1,dd82170 | 17:30 |
openstackgerrit | Rafael Folco proposed openstack-dev/devstack: Set default properties for Power, detect architecture by substring https://review.openstack.org/278535 | 17:30 |
*** mylu has joined #openstack-qa | 17:31 | |
*** krtaylor has quit IRC | 17:34 | |
mtreinish | dims: so periodic jobs are on openstack-health, but we're only collecting results for jobs that match these filters: https://github.com/openstack-infra/system-config/blob/master/modules/openstack_project/files/logstash/jenkins-log-client.yaml#L14-L25 | 17:35 |
mtreinish | which is basically any gate or periodic tempest or grenade dsvm job | 17:35 |
*** davideagnello has quit IRC | 17:35 | |
mtreinish | dims: I want to expand that to all gate or preiodic jobs, but I need to figure out why the pruning cron job I setup doesn't do anything | 17:36 |
*** davideagnello has joined #openstack-qa | 17:36 | |
mtreinish | http://git.openstack.org/cgit/openstack-infra/puppet-subunit2sql/tree/manifests/server.pp#n64 | 17:36 |
mtreinish | once we start pruning for real to 6 months we can drop the name filter from the client yaml file | 17:37 |
*** mhickey has quit IRC | 17:37 | |
*** nadya has joined #openstack-qa | 17:37 | |
*** nadya is now known as Guest10720 | 17:37 | |
*** boris-42 has joined #openstack-qa | 17:39 | |
mtreinish | jordanP: so that is there to make sure the tempest ceilo tests in tree are executed. If ceilo has migrated to using a plugin and copied all of those tests we can just delete the ceilo tests and delete the job | 17:39 |
*** Swami_ has quit IRC | 17:39 | |
jordanP | mtreinish, I am not sure about the state of ceilo w.r.t plugins and all but that job is currently run twice | 17:40 |
*** fedexo has joined #openstack-qa | 17:40 | |
*** fedexo_ has joined #openstack-qa | 17:41 | |
mtreinish | what do you mean by run twice? | 17:41 |
*** Sparyx has joined #openstack-qa | 17:42 | |
jordanP | mtreinish, it's run for each ceilometer commit and for each tempest commit | 17:43 |
dims | mtreinish : i see. thanks | 17:43 |
*** gszasz has quit IRC | 17:44 | |
openstackrecheck | Console logs not available after 13:22s for gate-grenade-dsvm 278068,3,e347258 | 17:44 |
*** krtaylor has joined #openstack-qa | 17:45 | |
mtreinish | jordanP: that's not running twice, it's co-gating. It's running the tests on ceilometer commits to test ceilometer | 17:45 |
mtreinish | and we run it on tempest to verify the tests work | 17:46 |
jordanP | yeah, got it, it makes sense | 17:46 |
mtreinish | once it's those tests are properly a plugin we can remove the job from the tempest queue | 17:46 |
*** madhu_ak_ has joined #openstack-qa | 17:46 | |
mtreinish | jordanP: cdent told me there are patches up on the ceilo side for that, I haven't seen a removal patch from tempest though | 17:47 |
cdent | what did I tell you? | 17:47 |
jordanP | :D | 17:47 |
cdent | oh yeah, tempest plugin. | 17:48 |
cdent | it's merged for ceilo: https://review.openstack.org/#/c/255710/ but I'm not sure it is doing anything yet | 17:50 |
cdent | and it is in progress for aodh (alarming): https://review.openstack.org/#/c/255191/ | 17:50 |
mtreinish | cdent: well there is a plugin but no tests from what I can see: https://github.com/openstack/ceilometer/tree/master/ceilometer/tests/tempest/api | 17:51 |
cdent | I think there's another review floating around somewhere. I don't really know. I'm not really hanging out with that gang much anymore... | 17:52 |
mtreinish | https://review.openstack.org/#/c/255188/5 I think | 17:52 |
*** rcernin has joined #openstack-qa | 17:52 | |
openstackgerrit | Jordan Pittier proposed openstack/tempest: Introduce new helper: call_and_ignore_notfound_exc() https://review.openstack.org/277907 | 17:52 |
openstackgerrit | Jordan Pittier proposed openstack/tempest: Remove some dead code https://review.openstack.org/278406 | 17:55 |
*** achanda has joined #openstack-qa | 17:57 | |
*** safchain has quit IRC | 17:57 | |
*** Swami has joined #openstack-qa | 17:58 | |
*** mvk has quit IRC | 17:59 | |
openstackgerrit | Sean M. Collins proposed openstack-dev/devstack: DO NOT MERGE: Ugly hack to ram 1450 mtu down to all interfaces https://review.openstack.org/278028 | 18:00 |
*** armax has quit IRC | 18:01 | |
*** achanda has quit IRC | 18:01 | |
openstackgerrit | Sean M. Collins proposed openstack-dev/devstack: DO NOT MERGE: Ugly hack for mtu https://review.openstack.org/278028 | 18:02 |
*** rossella_s has quit IRC | 18:03 | |
*** rossella_s has joined #openstack-qa | 18:03 | |
*** ihrachys has quit IRC | 18:04 | |
*** krtaylor has quit IRC | 18:08 | |
*** dkranz has quit IRC | 18:10 | |
*** achanda has joined #openstack-qa | 18:12 | |
*** achanda has quit IRC | 18:15 | |
*** yaume has quit IRC | 18:16 | |
*** mylu has quit IRC | 18:16 | |
*** mylu has joined #openstack-qa | 18:17 | |
crobertsrh | Any chance this rings a bell for anyone (devstack master on fedora 23): http://paste.openstack.org/show/486581/ Thanks | 18:17 |
*** jlanoux has quit IRC | 18:17 | |
*** yamamoto has quit IRC | 18:19 | |
*** krtaylor has joined #openstack-qa | 18:20 | |
*** e0ne has joined #openstack-qa | 18:20 | |
openstackrecheck | Console logs not available after 13:22s for gate-grenade-dsvm 258912,23,79452b8 | 18:22 |
*** malini1 has quit IRC | 18:23 | |
*** dkranz has joined #openstack-qa | 18:25 | |
*** lucasagomes is now known as lucas-afk | 18:25 | |
*** mylu has quit IRC | 18:28 | |
*** mriedem has quit IRC | 18:28 | |
*** jordanP has quit IRC | 18:29 | |
openstackgerrit | Clark Boylan proposed openstack-infra/devstack-gate: Preallocate swapfile https://review.openstack.org/278557 | 18:31 |
*** silos has quit IRC | 18:32 | |
*** dkranz has quit IRC | 18:32 | |
*** mriedem has joined #openstack-qa | 18:36 | |
mriedem | mtreinish: https://review.openstack.org/#/c/278418/ | 18:39 |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-python27 250220,18,8bf8853 | 18:40 |
mtreinish | mriedem: +A | 18:40 |
*** armax has joined #openstack-qa | 18:44 | |
*** mkovacik has quit IRC | 18:47 | |
openstackgerrit | Merged openstack-infra/elastic-recheck: Remove query for bug 1524418 https://review.openstack.org/278418 | 18:49 |
openstack | bug 1524418 in oslo.messaging "gate-grenade-dsvm-multinode fails with "AttributeError: 'LocalManager' object has no attribute 'l3driver'"" [Undecided,Fix released] https://launchpad.net/bugs/1524418 - Assigned to Mehdi Abaakouk (sileht) | 18:49 |
*** dkranz has joined #openstack-qa | 18:49 | |
sileht | + | 18:50 |
*** yamamoto has joined #openstack-qa | 18:50 | |
*** ngoracke has quit IRC | 18:52 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-docs 269910,4,99dba4e | 18:53 |
*** mylu has joined #openstack-qa | 18:54 | |
*** openstackrecheck has quit IRC | 18:56 | |
*** openstackrecheck has joined #openstack-qa | 18:56 | |
*** pvaneck has joined #openstack-qa | 18:59 | |
*** Guest10720 has quit IRC | 18:59 | |
*** achanda has joined #openstack-qa | 19:00 | |
*** cdent has quit IRC | 19:01 | |
openstackgerrit | Matthew Treinish proposed openstack/qa-specs: Add spec for reintegrating tempest-lib into tempest https://review.openstack.org/275966 | 19:01 |
*** SridharG has joined #openstack-qa | 19:02 | |
*** SridharG has quit IRC | 19:02 | |
*** malini has joined #openstack-qa | 19:03 | |
*** SridharG has joined #openstack-qa | 19:03 | |
*** malini1 has joined #openstack-qa | 19:05 | |
*** Sparyx has quit IRC | 19:06 | |
*** malini has quit IRC | 19:07 | |
openstackgerrit | Matthew Kassawara proposed openstack-dev/devstack: Neutron: Change auth_plugin to auth_type https://review.openstack.org/278569 | 19:07 |
*** mylu_ has joined #openstack-qa | 19:11 | |
*** ngoracke has joined #openstack-qa | 19:12 | |
*** mylu has quit IRC | 19:15 | |
*** dpaterson has joined #openstack-qa | 19:15 | |
*** fedexo_ has quit IRC | 19:17 | |
*** fedexo has quit IRC | 19:17 | |
*** mylu_ has quit IRC | 19:19 | |
*** mylu has joined #openstack-qa | 19:21 | |
*** mylu has quit IRC | 19:23 | |
*** mylu has joined #openstack-qa | 19:24 | |
*** mylu has quit IRC | 19:27 | |
*** jasonsb has quit IRC | 19:28 | |
*** jasonsb has joined #openstack-qa | 19:29 | |
*** mylu has joined #openstack-qa | 19:30 | |
*** mylu has quit IRC | 19:31 | |
openstackrecheck | Console logs not available after 13:27s for gate-glance-python34 278157,1,02898e4 | 19:31 |
*** silos has joined #openstack-qa | 19:32 | |
*** jasonsb has quit IRC | 19:34 | |
*** mylu has joined #openstack-qa | 19:35 | |
*** achanda has quit IRC | 19:36 | |
*** mylu has quit IRC | 19:37 | |
*** mylu has joined #openstack-qa | 19:42 | |
*** mylu has quit IRC | 19:43 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-large-ops 266989,4,cc851e8 | 19:44 |
*** achanda has joined #openstack-qa | 19:45 | |
*** krotscheck is now known as krotscheck_dcm | 19:47 | |
*** yfried_ has quit IRC | 19:50 | |
*** jgriffith is now known as jgriffith_away | 19:57 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-src-os-brick 277224,9,b4d69a4 | 19:58 |
*** eliqiao_ has quit IRC | 19:59 | |
*** tosky has quit IRC | 19:59 | |
*** nadya has joined #openstack-qa | 20:00 | |
*** nadya is now known as Guest6137 | 20:00 | |
*** rfolco has quit IRC | 20:01 | |
*** mylu has joined #openstack-qa | 20:01 | |
*** eliqiao_ has joined #openstack-qa | 20:02 | |
*** itzikb has joined #openstack-qa | 20:03 | |
*** Guest6137 has quit IRC | 20:04 | |
sdague | mtreinish / dtroyer / sc68cal - some cleanups - https://review.openstack.org/#/c/278333/ | 20:11 |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-neutron-full 276861,1,3313cc3 | 20:11 |
*** yfried_ has joined #openstack-qa | 20:12 | |
sc68cal | sdague: awww. I mentioned something to you a week or so ago about the feature and now you killed it - i'm to blame ;_; | 20:14 |
sc68cal | ;) | 20:14 |
sdague | heh | 20:14 |
sdague | jroll / jlvillal - http://logs.openstack.org/33/278333/3/check/gate-tempest-dsvm-ironic-agent_ssh-nv/f882b78/logs/devstacklog.txt.gz#_2016-02-10_17_47_37_129 - looks like ironic cli interface changed? | 20:15 |
sdague | or something else is horribly wrong | 20:15 |
*** achanda has quit IRC | 20:16 | |
*** jgriffith_away is now known as jgriffith | 20:22 | |
*** dave-mcc_ has joined #openstack-qa | 20:22 | |
*** dave-mccowan has quit IRC | 20:22 | |
*** achanda has joined #openstack-qa | 20:23 | |
*** dave-mccowan has joined #openstack-qa | 20:23 | |
*** ngoracke has quit IRC | 20:23 | |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-full-test-accounts 233712,11,e27b3d6 | 20:25 |
*** dave-mcc_ has quit IRC | 20:26 | |
*** Swami has quit IRC | 20:29 | |
*** hemna is now known as hemnafk | 20:30 | |
*** crobertsrh has left #openstack-qa | 20:31 | |
*** e0ne has quit IRC | 20:32 | |
*** dims has quit IRC | 20:34 | |
*** mhickey has joined #openstack-qa | 20:34 | |
*** dims has joined #openstack-qa | 20:35 | |
*** aysyd has quit IRC | 20:36 | |
*** yamahata has joined #openstack-qa | 20:37 | |
jroll | sdague: O_o | 20:37 |
jroll | sdague: I think the real failure is here: http://logs.openstack.org/33/278333/3/check/gate-tempest-dsvm-ironic-agent_ssh-nv/f882b78/logs/devstacklog.txt.gz#_2016-02-10_17_47_36_017 | 20:38 |
jroll | resulting in node-create failing, resulting in no node id to pass in | 20:38 |
openstackrecheck | Console logs not available after 13:26s for gate-keystone-python27 278542,1,920d21d | 20:38 |
*** dkranz has quit IRC | 20:38 | |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: remove keystone templated catalog https://review.openstack.org/278333 | 20:39 |
openstackgerrit | Eric Wehrmeister proposed openstack/tempest-lib: Allows specifying a name for a particular endpoint. https://review.openstack.org/278618 | 20:41 |
jroll | sdague: apparently $KEYSTONE_CATALOG_BACKEND wasn't set there? http://logs.openstack.org/33/278333/3/check/gate-tempest-dsvm-ironic-agent_ssh-nv/f882b78/logs/devstacklog.txt.gz#_2016-02-10_17_43_54_050 | 20:43 |
jroll | relevant ironic code: https://github.com/openstack/ironic/blob/master/devstack/lib/ironic#L439 | 20:43 |
sdague | jroll: yeh, apparently that was a real catch | 20:44 |
sdague | dtroyer actually figured out a thing | 20:44 |
sdague | jroll: the patch was actually trying to remove that entirely | 20:44 |
jroll | sdague: oh cool, I should look at the catalog before I keep digging :) | 20:44 |
jroll | s/catalog/change | 20:44 |
sdague | jroll: yeh, I should have figured out that issue as well | 20:45 |
jroll | is there any reason we need that check or should we just hit the catalog | 20:45 |
sdague | jroll: you should hit it unconditionally, I just sent an email about it | 20:45 |
jroll | sdague: will do, ty | 20:45 |
sdague | http://lists.openstack.org/pipermail/openstack-dev/2016-February/086272.html | 20:45 |
*** jgriffith is now known as jgriffith_away | 20:45 | |
sdague | dtroyer: good catch on that. | 20:46 |
jroll | nice, thanks | 20:46 |
* jroll does it now | 20:46 | |
*** eil397 has joined #openstack-qa | 20:47 | |
sdague | mtreinish / sc68cal https://review.openstack.org/278333 ready to go again, fixing the issue dtroyer found | 20:49 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-postgres-full-kilo 233712,11,b2c0130 | 20:52 |
*** e0ne has joined #openstack-qa | 20:53 | |
jlvillal | sdague: On the ironic client. Any chance that could be cliff issue? | 20:54 |
jlvillal | sdague: never mind. Looks like jroll figured it out. | 20:55 |
jroll | jlvillal: no, it was the thing.. yeah | 20:55 |
* jlvillal should read the backscroll thoroughly when he comes back from lunch... | 20:55 | |
sdague | mtreinish: on the cliff thing, you had a fix for that right, but it would break rally? | 20:57 |
boris-42 | sdague: what patch? | 20:57 |
sdague | removing all the custom venv setup | 20:58 |
*** apoorvad has quit IRC | 20:59 | |
*** Serlex has joined #openstack-qa | 21:00 | |
*** ngoracke has joined #openstack-qa | 21:03 | |
*** hemnafk is now known as hemna | 21:03 | |
*** ngoracke has quit IRC | 21:05 | |
*** jlk has quit IRC | 21:05 | |
openstackrecheck | Console logs not available after 13:32s for gate-tempest-dsvm-full-hdfs 278504,2,3b3d93d | 21:05 |
*** jlk has joined #openstack-qa | 21:05 | |
*** jlk has quit IRC | 21:05 | |
*** yamahata has quit IRC | 21:06 | |
*** pglass has joined #openstack-qa | 21:07 | |
*** pglbutt has quit IRC | 21:08 | |
*** dkranz has joined #openstack-qa | 21:09 | |
*** e0ne has quit IRC | 21:09 | |
*** jlk has joined #openstack-qa | 21:10 | |
*** jlk has quit IRC | 21:10 | |
*** jlk has joined #openstack-qa | 21:10 | |
openstackrecheck | Console logs not available after 13:27s for gate-nova-pep8 277971,2,d952c30 | 21:19 |
*** ngoracke has joined #openstack-qa | 21:23 | |
*** apoorvad has joined #openstack-qa | 21:24 | |
*** ngoracke has quit IRC | 21:26 | |
*** jgriffith_away is now known as jgriffith | 21:29 | |
mtreinish | sdague: nah, those are 2 different things | 21:30 |
mtreinish | sdague: https://review.openstack.org/278206 is the cliff thing, to plug the constraints hole in the job | 21:30 |
mtreinish | sdague: https://review.openstack.org/270564 is to remove the oslo-incubator synced venv creation stuff, which is just good cleanup | 21:31 |
mtreinish | because it's useless | 21:31 |
* mtreinish hopes no one looks at who originally wrote it | 21:31 | |
sdague | why can't 278206 be done inside the tox.ini for tempest? | 21:31 |
openstackrecheck | Console logs not available after 13:26s for gate-nova-python34 266933,15,94bc131 | 21:32 |
*** ngoracke has joined #openstack-qa | 21:39 | |
*** malini1 has quit IRC | 21:39 | |
*** salv-orl_ has joined #openstack-qa | 21:39 | |
*** dave-mcc_ has joined #openstack-qa | 21:39 | |
*** achanda_ has joined #openstack-qa | 21:40 | |
*** bknudson has joined #openstack-qa | 21:40 | |
*** patchbot` has joined #openstack-qa | 21:41 | |
*** patchbot has quit IRC | 21:41 | |
*** erlon_ has joined #openstack-qa | 21:41 | |
*** jordanP has joined #openstack-qa | 21:41 | |
*** gema_ has joined #openstack-qa | 21:41 | |
*** mragupat_ has joined #openstack-qa | 21:41 | |
*** charz_ has joined #openstack-qa | 21:41 | |
*** patchbot` is now known as patchbot | 21:41 | |
*** crinkle_ has joined #openstack-qa | 21:42 | |
*** nadya has joined #openstack-qa | 21:43 | |
*** nadya is now known as Guest18407 | 21:43 | |
mtreinish | sdague: I left a comment on that in the review, mriedem asked the same question | 21:43 |
*** Swami has joined #openstack-qa | 21:44 | |
mriedem | oh right, which constraints do you use since it's branchless | 21:44 |
mriedem | and u-c is per branch | 21:44 |
*** markvan_ has joined #openstack-qa | 21:45 | |
*** mragupat has quit IRC | 21:45 | |
*** nicholas_ has joined #openstack-qa | 21:45 | |
openstackrecheck | Console logs not available after 13:26s for gate-nova-python34 259097,9,a8c4619 | 21:46 |
*** crinkle has quit IRC | 21:47 | |
*** HenryG_ has joined #openstack-qa | 21:47 | |
*** crinkle_ is now known as crinkle | 21:47 | |
*** Guest18407 has quit IRC | 21:47 | |
*** raildo is now known as raildo-afk | 21:47 | |
*** bknudson has quit IRC | 21:48 | |
*** dave-mccowan has quit IRC | 21:48 | |
*** achanda has quit IRC | 21:48 | |
*** salv-orlando has quit IRC | 21:48 | |
*** slowrie has quit IRC | 21:48 | |
*** erlon has quit IRC | 21:48 | |
*** gfidente has quit IRC | 21:48 | |
*** jgriffith has quit IRC | 21:48 | |
*** pkoniszewski has quit IRC | 21:48 | |
*** charz has quit IRC | 21:48 | |
*** bknudson_ has quit IRC | 21:48 | |
*** nicholasgoracke has quit IRC | 21:48 | |
*** betherly has quit IRC | 21:48 | |
*** avico- has quit IRC | 21:48 | |
*** HenryG has quit IRC | 21:48 | |
*** dhellmann has quit IRC | 21:48 | |
*** ramishra has quit IRC | 21:48 | |
*** gmann has quit IRC | 21:48 | |
*** yarkot has quit IRC | 21:48 | |
*** beisner has quit IRC | 21:48 | |
*** hockeynut has quit IRC | 21:48 | |
*** jesusaur has quit IRC | 21:48 | |
*** markvan has quit IRC | 21:48 | |
*** gema has quit IRC | 21:48 | |
*** HenryG_ is now known as HenryG | 21:48 | |
*** bknudson has joined #openstack-qa | 21:49 | |
*** hockeynut has joined #openstack-qa | 21:49 | |
*** slowrie has joined #openstack-qa | 21:49 | |
*** yarkot has joined #openstack-qa | 21:49 | |
*** avico has joined #openstack-qa | 21:49 | |
sdague | mtreinish: ok, I'm still feeling kind of uncomfortable that all these cantrips have to be inline in devstack vs. a verify-tempest command in tempest | 21:49 |
*** dhellmann has joined #openstack-qa | 21:49 | |
sdague | which if UPPER_CONSTRAINTS env is set, we use | 21:49 |
*** erlon_ is now known as erlon | 21:49 | |
*** beisner has joined #openstack-qa | 21:50 | |
*** mhickey has quit IRC | 21:50 | |
*** pkoniszewski has joined #openstack-qa | 21:50 | |
*** gamado has joined #openstack-qa | 21:50 | |
mtreinish | sdague: well we can just system install tempest and then the verify command will be constrained | 21:51 |
mtreinish | we just have to remember to venv isolate it again when we branch | 21:51 |
openstackgerrit | OpenStack Proposal Bot proposed openstack-dev/hacking: Updated from global requirements https://review.openstack.org/278654 | 21:51 |
sdague | sure, we stopped doing that because stable right? | 21:51 |
*** jgriffith has joined #openstack-qa | 21:51 | |
sdague | actually, doesn't this always require master upper constraints? | 21:51 |
sdague | anyway, it's end of day here, so maybe ponder tomorrow | 21:52 |
*** HenryG has quit IRC | 21:52 | |
mtreinish | oh, yeah it does. So we'll ahve to fix that when we branch anyway | 21:52 |
mtreinish | right, we added the venv because of on stable branches | 21:52 |
mtreinish | tempest master has incompatible requirements to stable branches | 21:53 |
*** hemna has quit IRC | 21:55 | |
*** HenryG has joined #openstack-qa | 21:56 | |
*** ramishra has joined #openstack-qa | 21:56 | |
*** jesusaur has joined #openstack-qa | 21:56 | |
*** gmann has joined #openstack-qa | 21:56 | |
*** betherly has joined #openstack-qa | 21:57 | |
*** vgridnev has quit IRC | 21:58 | |
*** Serlex has quit IRC | 21:58 | |
openstackrecheck | Console logs not available after 13:32s for gate-nova-python27 277466,11,4ae8446 | 21:59 |
*** gamado_ has joined #openstack-qa | 22:01 | |
*** SridharG has quit IRC | 22:01 | |
*** rossella_s has quit IRC | 22:03 | |
*** rossella_s has joined #openstack-qa | 22:03 | |
*** gamado has quit IRC | 22:03 | |
*** mylu has quit IRC | 22:06 | |
*** rcernin has quit IRC | 22:07 | |
*** gamado_ has quit IRC | 22:08 | |
*** ylobankov has quit IRC | 22:08 | |
*** jecarey_ has joined #openstack-qa | 22:09 | |
*** jecarey has quit IRC | 22:12 | |
*** jecarey_ has quit IRC | 22:12 | |
openstackrecheck | Console logs not available after 13:26s for gate-cinder-python34 275408,2,5ecae11 | 22:13 |
*** jecarey has joined #openstack-qa | 22:13 | |
*** shardy has quit IRC | 22:14 | |
*** regXboi has quit IRC | 22:15 | |
*** jrcloud has joined #openstack-qa | 22:16 | |
*** boris-42_ has joined #openstack-qa | 22:17 | |
*** armax has quit IRC | 22:19 | |
*** bknudson_ has joined #openstack-qa | 22:19 | |
*** bknudson_ has quit IRC | 22:19 | |
*** bknudson_ has joined #openstack-qa | 22:20 | |
*** woodster__ has joined #openstack-qa | 22:22 | |
*** ianw_ has joined #openstack-qa | 22:22 | |
*** nicholas_ has quit IRC | 22:22 | |
*** boris-42 has quit IRC | 22:22 | |
*** slowrie has quit IRC | 22:22 | |
*** zackf has quit IRC | 22:22 | |
*** dhellmann has quit IRC | 22:22 | |
*** bknudson has quit IRC | 22:22 | |
*** grafuls has quit IRC | 22:22 | |
*** ianw has quit IRC | 22:22 | |
*** woodster_ has quit IRC | 22:22 | |
*** bkopilov has quit IRC | 22:22 | |
*** slowrie has joined #openstack-qa | 22:22 | |
*** ianw_ is now known as ianw | 22:22 | |
*** dhellmann has joined #openstack-qa | 22:23 | |
*** grafuls has joined #openstack-qa | 22:23 | |
*** woodster__ is now known as woodster_ | 22:23 | |
*** boris-42_ is now known as boris-42 | 22:24 | |
openstackrecheck | Console logs not available after 13:41s for gate-keystone-python27 258650,22,dffcf08 | 22:26 |
*** armax has joined #openstack-qa | 22:27 | |
*** bkopilov has joined #openstack-qa | 22:32 | |
*** jordanP has quit IRC | 22:33 | |
*** madhu_ak_ has quit IRC | 22:34 | |
*** nicholasgoracke has joined #openstack-qa | 22:35 | |
silos | Hey QA! I am interested in writing a grenade job and I wanted to see exactly how it works so I pulled down the code from git and ran the "grenade.sh" script and some of the devstack tests failed. Is there any extra configuration I need to do right out of the box to get the grenade script to run successfully? Is it possible to test grenade on a single VM? Which is what im doing right now… | 22:35 |
*** dimtruck is now known as zz_dimtruck | 22:36 | |
*** ylobankov has joined #openstack-qa | 22:37 | |
*** malini has joined #openstack-qa | 22:40 | |
openstackrecheck | Console logs not available after 14:05s for gate-tempest-dsvm-postgres-full 278399,5,1e469f2 | 22:41 |
*** miqui has quit IRC | 22:41 | |
*** salv-orlando has joined #openstack-qa | 22:42 | |
*** mylu has joined #openstack-qa | 22:42 | |
*** dpaterson has quit IRC | 22:44 | |
*** pglbutt has joined #openstack-qa | 22:44 | |
*** salv-orl_ has quit IRC | 22:44 | |
*** zz_dimtruck is now known as dimtruck | 22:45 | |
openstackgerrit | Chirag Shahani proposed openstack/tempest: Unable to pass additional parameters to update_router test case https://review.openstack.org/158005 | 22:46 |
*** jgriffith is now known as jgriffith_away | 22:46 | |
*** pglass has quit IRC | 22:47 | |
openstackgerrit | Eric Wehrmeister proposed openstack/tempest-lib: Allows specifying a name for a particular endpoint. https://review.openstack.org/278618 | 22:47 |
*** mylu has quit IRC | 22:48 | |
*** itzikb has quit IRC | 22:49 | |
*** itzikb has joined #openstack-qa | 22:49 | |
*** achanda_ has quit IRC | 22:49 | |
*** alex_xu has quit IRC | 22:52 | |
*** mriedem has quit IRC | 22:52 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 22:53 | |
*** ylobankov has quit IRC | 22:54 | |
*** alex_xu has joined #openstack-qa | 22:55 | |
*** dpaterson has joined #openstack-qa | 22:56 | |
openstackrecheck | Console logs not available after 13:29s for gate-cinder-pep8 278155,1,6a0e3ea | 22:56 |
*** mylu has joined #openstack-qa | 22:57 | |
openstackgerrit | Arx Cruz proposed openstack/tempest: Split roles_client for keystone v3 client https://review.openstack.org/278399 | 22:58 |
*** eil397 has quit IRC | 22:58 | |
*** eil397 has joined #openstack-qa | 23:01 | |
*** jlwhite has quit IRC | 23:02 | |
*** jgriffith_away is now known as jgriffith | 23:02 | |
*** armax has quit IRC | 23:02 | |
*** silos has left #openstack-qa | 23:04 | |
*** jecarey has quit IRC | 23:09 | |
openstackrecheck | Console logs not available after 13:22s for gate-devstack-bashate 278535,1,43a8e84 | 23:10 |
*** yamahata has joined #openstack-qa | 23:14 | |
*** safchain has joined #openstack-qa | 23:16 | |
*** mylu has quit IRC | 23:16 | |
*** erlon has quit IRC | 23:16 | |
*** malini has quit IRC | 23:17 | |
*** mylu has joined #openstack-qa | 23:19 | |
*** dkranz has quit IRC | 23:19 | |
*** itzikb has quit IRC | 23:20 | |
*** mylu has quit IRC | 23:21 | |
*** mylu has joined #openstack-qa | 23:21 | |
*** mylu has quit IRC | 23:23 | |
*** jaypipes has quit IRC | 23:23 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-pep8 253747,28,f0ce233 | 23:23 |
*** mylu has joined #openstack-qa | 23:24 | |
openstackgerrit | Chris Krelle proposed openstack-dev/devstack: Set unprovision and active timeout to match build_timeout https://review.openstack.org/278792 | 23:27 |
*** sc68cal has quit IRC | 23:28 | |
*** hemna has joined #openstack-qa | 23:29 | |
*** achanda has joined #openstack-qa | 23:31 | |
*** Sparyx has joined #openstack-qa | 23:34 | |
*** edmondsw has joined #openstack-qa | 23:34 | |
*** mragupat_ has quit IRC | 23:35 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-neutron-full 278369,1,e31d664 | 23:36 |
*** sc68cal has joined #openstack-qa | 23:40 | |
*** mylu has quit IRC | 23:47 | |
*** nicholasgoracke has quit IRC | 23:47 | |
*** weshay has quit IRC | 23:49 | |
*** dimtruck is now known as zz_dimtruck | 23:49 | |
openstackrecheck | Console logs not available after 13:22s for gate-horizon-npm-run-test 278581,3,5a81fc5 | 23:50 |
*** devananda has joined #openstack-qa | 23:50 | |
*** jlk has quit IRC | 23:54 | |
*** jlk has joined #openstack-qa | 23:57 | |
*** jlk has quit IRC | 23:57 | |
*** jlk has joined #openstack-qa | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!