gmann | mtreinish: also if we make subclass for service clients -1. we need to separately instantiate those in client.py 2. for microversion if changes are in all method(due to schema changes) of that client then it might need to override all methods | 00:00 |
---|---|---|
*** akshai has quit IRC | 00:01 | |
*** markvoelker has quit IRC | 00:01 | |
*** tmatsu has joined #openstack-qa | 00:02 | |
*** mylu has quit IRC | 00:02 | |
*** sabeen1 has quit IRC | 00:02 | |
*** mylu has joined #openstack-qa | 00:02 | |
mtreinish | gmann: ok, you said this was just to test right? I'm saying having a divergent local fork of something we have in tempest-lib isn't the way to test this | 00:03 |
*** bapalm has quit IRC | 00:03 | |
*** russellb has quit IRC | 00:03 | |
mtreinish | we either hack it in with subclassing which will lead to duplication, or we fix it in tempest-lib and wait for a release | 00:04 |
*** bapalm has joined #openstack-qa | 00:04 | |
mtreinish | neither is a good answer, but those are our choices | 00:04 |
*** russellb has joined #openstack-qa | 00:04 | |
*** mylu_ has joined #openstack-qa | 00:04 | |
mtreinish | I think subclassing will be a bit faster, even if the first microversion test is a bit uglier because we're manually instatiating clients in that class | 00:04 |
openstackgerrit | Ramy Asselin proposed openstack-infra/elastic-recheck: Disable InsecurePlatform Warnings https://review.openstack.org/247069 | 00:05 |
mtreinish | gmann: this is a good time to figure out what the client interface needs to look like for a microversioned client though | 00:05 |
*** mylu has quit IRC | 00:05 | |
*** rbrndt has quit IRC | 00:06 | |
*** amotoki has joined #openstack-qa | 00:06 | |
*** amotoki has quit IRC | 00:06 | |
*** ranger81 has quit IRC | 00:07 | |
gmann | mtreinish: but that will be different for each microversion | 00:07 |
mtreinish | what will? | 00:08 |
*** hichihara has quit IRC | 00:08 | |
gmann | mtreinish: client interface. | 00:08 |
gmann | mtreinish: client interface you mean each microversion interface right? | 00:08 |
*** ranger81 has joined #openstack-qa | 00:09 | |
openstackrecheck | Console logs not available after 13:39s for gate-keystone-pep8 242614,10,e1b1621 | 00:09 |
gmann | mtreinish: subclass might be very complex as we might need to select the clients instance for existing tests which might get run for microversion tests etc | 00:11 |
*** tmatsu_ has joined #openstack-qa | 00:11 | |
gmann | mtreinish: thats can be done but i feel its same thing again we sync the code in existing old client in lib | 00:12 |
mtreinish | gmann: we have clients defined in tempest-lib, how are you going to handle using microversions there? | 00:12 |
*** tmatsu__ has joined #openstack-qa | 00:12 | |
mtreinish | we have to do this in a backwards compat manner, which means either adding an optional arg (either to the method or the init) or a seperate class for microversions right? | 00:12 |
*** tmatsu__ has quit IRC | 00:13 | |
gmann | mtreinish: ahh you mean separate class for microversion.. | 00:13 |
*** tmatsu__ has joined #openstack-qa | 00:14 | |
gmann | mtreinish: for no changes in request etc we do like - https://review.openstack.org/#/c/244996/3/tempest/services/compute/json/keypairs_client.py | 00:14 |
*** tmatsu has quit IRC | 00:14 | |
openstackgerrit | Merged openstack/tempest: Fix skip_checks in live_migration https://review.openstack.org/246425 | 00:15 |
*** zhangjn has quit IRC | 00:15 | |
gmann | mtreinish: but yes if there is request interface change then we might adjust in same client. | 00:15 |
*** tmatsu_ has quit IRC | 00:16 | |
gmann | mtreinish: if new interface then we can add new method, if request param change then it should be ok as we use **kwargs for all methods | 00:16 |
openstackgerrit | Merged openstack/tempest: Unbreak test_created_router_interface (heat) https://review.openstack.org/247397 | 00:16 |
openstackgerrit | Merged openstack/tempest: Fix H404/405 violations for api tests(2/3) https://review.openstack.org/247340 | 00:16 |
mtreinish | gmann: this is what I meant by client interface | 00:16 |
mtreinish | gmann: in that link how does the version it sends get determined | 00:17 |
mtreinish | because the request is different we use a different header | 00:17 |
openstackgerrit | Matthew Treinish proposed openstack/openstack-health: Add an additional group_by field for node_region https://review.openstack.org/243866 | 00:18 |
gmann | mtreinish: that will be done by overriding get_headers() of rest_client - https://review.openstack.org/#/c/242346/8/tempest/services/compute/json/base.py | 00:18 |
*** amotoki has joined #openstack-qa | 00:19 | |
gmann | mtreinish: this is how m thinking - https://review.openstack.org/#/q/status:open++branch:master+topic:bp/api-microversions-testing-support,n,z | 00:19 |
openstackgerrit | Merged openstack/tempest: Fix H404/405 violations for api tests(3/3) https://review.openstack.org/247342 | 00:19 |
mtreinish | gmann: ok, well if you have that in mind then just do it in tempest-lib. A release is easy | 00:20 |
*** mylu_ has quit IRC | 00:20 | |
mtreinish | gmann: we really shouldn't assume the clients still live in tempest at this point | 00:20 |
gmann | mtreinish: ok, so first version test we can do in tempest and sync in lib again :) as discussed with you | 00:20 |
*** mylu has joined #openstack-qa | 00:21 | |
openstackgerrit | Ramy Asselin proposed openstack-infra/elastic-recheck: Disable InsecurePlatform Warnings https://review.openstack.org/247069 | 00:21 |
*** oomichi has joined #openstack-qa | 00:21 | |
mtreinish | gmann: I really don't want to be added code to tempest for something that already lives in tempest-lib. I was fine with experimenting with a new framework in tempest first | 00:21 |
gmann | mtreinish: but yes for further microversion tests we can do in lib and release first | 00:21 |
gmann | mtreinish: yes. agree | 00:21 |
gmann | mtreinish: so if we release new interface etc in lib and on testing of tempest we find bug then how we going to handle that ? | 00:22 |
mtreinish | gmann: bug fix release | 00:22 |
mtreinish | gmann: but what are you expecting a bug in? the schema? | 00:23 |
gmann | mtreinish: any way we can mark that interface NOT RELEASED till we tests that ? | 00:23 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-full-juno 247340,1,1279dcd | 00:23 |
gmann | mtreinish: but that might create backward incompatibility | 00:23 |
mtreinish | gmann: you can mark it as private I guess, we don't really have a mechanism in place to say do not use this interface yet | 00:23 |
gmann | mtreinish: not schema that is just internal but like request param type etc | 00:23 |
mtreinish | gmann: also you can test it locally :) | 00:24 |
openstackgerrit | Merged openstack/tempest: Fix H404/405 violations for common code https://review.openstack.org/247350 | 00:24 |
gmann | mtreinish: yea locally we can test but reviewer would not be able to have full confidence :) | 00:24 |
*** mylu_ has joined #openstack-qa | 00:24 | |
openstackgerrit | Merged openstack/tempest: Fix H404/405 violations for unit tests https://review.openstack.org/247351 | 00:24 |
openstackgerrit | Merged openstack/tempest: Fix H404/405 violations for thirdparty and stress https://review.openstack.org/247380 | 00:25 |
gmann | mtreinish: mark it private you mean just in doc string etc '_' only works | 00:25 |
*** mylu has quit IRC | 00:25 | |
gmann | mtreinish: can we use deprecate here ? | 00:25 |
mtreinish | gmann: that's a fair point, but do a depends on commit with a check experimental. We should have have machinery in place to run tempest with tempest-lib from src | 00:25 |
gmann | mtreinish: not sure if that is right thing for new interface till they gets mature | 00:25 |
mtreinish | if we don't we need to fix that | 00:25 |
mtreinish | gmann: I think instead of trying to avoid commiting to something we should just do it | 00:26 |
mtreinish | gmann: your concern is that doing it in tempest-lib won't work on the first go right? | 00:26 |
mtreinish | so we just need a way to run the proposed commit from tempest-lib with a change in tempest | 00:27 |
gmann | mtreinish: yes in case. | 00:27 |
mtreinish | which we should use depends-on and the experimental job | 00:27 |
mtreinish | and if it doesn't work fix that | 00:27 |
mtreinish | that should remove any barrier to experimenting on it in tempest-lib right? | 00:27 |
mtreinish | that's something we should have already | 00:28 |
gmann | mtreinish: ok that works | 00:28 |
gmann | mtreinish: and mark lib patch WIP till tempest one is pass with lib src job | 00:28 |
*** pglass has joined #openstack-qa | 00:29 | |
mtreinish | gmann: yep | 00:29 |
gmann | mtreinish: thanks :) | 00:29 |
gmann | mtreinish: i will remove WIP from those patches | 00:30 |
*** ranger81_ has joined #openstack-qa | 00:30 | |
gmann | mtreinish: if you can please review microversion testing patches - https://review.openstack.org/#/q/status:open++branch:master+topic:bp/api-microversions-testing-support,n,z | 00:30 |
mtreinish | gmann: ok cool, then I'll start going through them | 00:30 |
gmann | mtreinish: i need to update base one as per sdague comments. | 00:30 |
mtreinish | gmann: I'll look at those tomorrow probably, it's getting to be end of the day here. I don't want to think too hard | 00:31 |
*** ranger81 has quit IRC | 00:31 | |
gmann | mtreinish: yea sure, M-1 is very near :) | 00:31 |
mtreinish | gmann: when is it? | 00:31 |
gmann | mtreinish: i think dec 3 | 00:32 |
mtreinish | ahh, that's plenty of time :) | 00:32 |
*** jamielennox|away is now known as jamielennox | 00:32 | |
mtreinish | 2 weeks | 00:32 |
mtreinish | gmann: it's also not a hard deadline... | 00:33 |
*** weshay_xchat has quit IRC | 00:33 | |
mtreinish | it's not like if it's M1 + 2 weeks we'll reject patches | 00:33 |
gmann | mtreinish: all set of patches are up for microversion thing just review (hoping current direction is right :)) and move to lib pending | 00:33 |
gmann | mtreinish: ok :) Thanks | 00:33 |
mtreinish | gmann: well unless you want us to start -2ing microversion patches after dec 3rd :) | 00:34 |
*** ccneill has joined #openstack-qa | 00:34 | |
gmann | mtreinish: no, never :) | 00:34 |
gmann | mtreinish: at least for tempest we are much flexible. | 00:34 |
*** hoangcx has joined #openstack-qa | 00:35 | |
openstackrecheck | Console logs not available after 13:28s for gate-glance-pep8 247819,1,bc25e56 | 00:37 |
*** tmatsu has joined #openstack-qa | 00:39 | |
openstackgerrit | Merged openstack/tempest: Fix H404/405 violations for remaining https://review.openstack.org/247438 | 00:39 |
*** tmatsu__ has quit IRC | 00:39 | |
*** mylu_ has quit IRC | 00:40 | |
*** nicholasgoracke has joined #openstack-qa | 00:48 | |
*** dwalleck has joined #openstack-qa | 00:48 | |
openstackrecheck | Console logs not available after 13:28s for gate-glance_store-pep8 247310,2,d474ed3 | 00:50 |
*** ccneill has quit IRC | 00:50 | |
*** dmorita has joined #openstack-qa | 00:51 | |
*** nicholasgoracke has quit IRC | 00:53 | |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Fix T110 violations for servers_client https://review.openstack.org/247861 | 00:54 |
*** salv-orl_ has joined #openstack-qa | 00:55 | |
*** salv-orlando has quit IRC | 00:58 | |
*** jaypipes has quit IRC | 00:59 | |
*** armax_ has joined #openstack-qa | 01:00 | |
*** apevec has quit IRC | 01:01 | |
*** itsuugo has joined #openstack-qa | 01:02 | |
*** armax_ is now known as armax | 01:02 | |
*** jacky-zhang has quit IRC | 01:03 | |
openstackrecheck | Console logs not available after 13:27s for gate-cinder-pep8 247806,1,fa01de4 | 01:04 |
*** hoangcx has left #openstack-qa | 01:04 | |
*** zhangjn has joined #openstack-qa | 01:05 | |
*** Swami has quit IRC | 01:06 | |
*** rossella_s has quit IRC | 01:07 | |
*** itsuugo has quit IRC | 01:07 | |
*** rossella_s has joined #openstack-qa | 01:08 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add reno release notes to subunit2sql https://review.openstack.org/247737 | 01:08 |
*** mylu has joined #openstack-qa | 01:09 | |
*** markvoelker has joined #openstack-qa | 01:17 | |
openstackrecheck | Console logs not available after 13:28s for gate-tempest-dsvm-lxc 247081,13,a9b152b | 01:17 |
*** ranger81_ has quit IRC | 01:20 | |
*** markvoelker has quit IRC | 01:22 | |
asselin | mtreinish, this is the line that causes pid file to get deleted and process keeps going. Any ideas why? http://git.openstack.org/cgit/openstack-infra/elastic-recheck/tree/elastic_recheck/log.py#n46 | 01:23 |
*** ranger81 has joined #openstack-qa | 01:23 | |
*** tonyb has quit IRC | 01:23 | |
*** tonyb has joined #openstack-qa | 01:23 | |
*** tonyb has quit IRC | 01:24 | |
asselin | I know b/c I debugged with a sleep. Before that line, during sleep, pid file is there. | 01:24 |
asselin | If I pu tthe sleep after that line, pid file is gone. | 01:24 |
*** tonyb has joined #openstack-qa | 01:24 | |
asselin | and when I kill the process, pid file deletes automatically | 01:25 |
*** tonyb has quit IRC | 01:26 | |
*** tonyb has joined #openstack-qa | 01:26 | |
asselin | so I must have a bad configuration or something...?? | 01:26 |
openstackrecheck | Console logs not available after 13:26s for gate-grenade-dsvm-multinode 246718,6,c8fe58c | 01:31 |
*** tonyb has quit IRC | 01:32 | |
*** ranger81 has quit IRC | 01:33 | |
*** tonyb has joined #openstack-qa | 01:33 | |
*** ranger81 has joined #openstack-qa | 01:33 | |
*** tonyb has quit IRC | 01:34 | |
*** tonyb has joined #openstack-qa | 01:34 | |
*** tmatsu has quit IRC | 01:35 | |
*** tmatsu has joined #openstack-qa | 01:37 | |
*** mylu has quit IRC | 01:38 | |
*** mriedem has joined #openstack-qa | 01:41 | |
*** sabeen has joined #openstack-qa | 01:41 | |
*** mylu has joined #openstack-qa | 01:44 | |
*** ranger81 has quit IRC | 01:44 | |
openstackrecheck | Console logs not available after 13:24s for gate-swift-python27 88736,296,5c15584 | 01:44 |
*** ranger81 has joined #openstack-qa | 01:45 | |
openstackgerrit | Matthew Treinish proposed openstack/tempest: Set default value for tempest log file https://review.openstack.org/173581 | 01:49 |
*** markvoelker has joined #openstack-qa | 01:50 | |
mtreinish | asselin: well are you setting the log config file to the pid file? I mean we're giving the logging lib a path so maybe it does something that ends up deleting the file (although that seems really weird | 01:51 |
mtreinish | ) | 01:51 |
asselin | mtreinish, well I did find an error in the logging config. | 01:51 |
mtreinish | asselin: and that was killing the pid file? | 01:52 |
mtreinish | or was it just hanging things there? | 01:52 |
asselin | mtreinish, so now it's failing here: http://git.openstack.org/cgit/openstack-infra/elastic-recheck/tree/elastic_recheck/bot.py#n202 | 01:52 |
asselin | mtreinish, I think the pid file deletes automatically when the deamon-ed process itself ends - but seems like there's something causing it to hang to its deleted by still running sortof | 01:53 |
mtreinish | if fails on import? | 01:54 |
asselin | yes | 01:55 |
lifeless | asselin: did you resolve your pip thing? | 01:56 |
mtreinish | asselin: well that's weird, do you have a traceback? | 01:56 |
asselin | mtreinish, no...tried but not sure how to get it exactly | 01:56 |
mtreinish | asselin: well you could wrap: https://github.com/openstack-infra/elastic-recheck/blob/master/elastic_recheck/bot.py#L328-L330 with a try: | 01:57 |
mtreinish | and then except Exception: | 01:57 |
*** ccneill has joined #openstack-qa | 01:57 | |
mtreinish | and either log the exception or exit with a traceback there | 01:57 |
asselin | lifeless, not sure yet. trying this: http://paste.openstack.org/show/479526/ | 01:57 |
openstackrecheck | Console logs not available after 13:26s for gate-nova-python27 247176,2,e9e08d6 | 01:58 |
mtreinish | asselin: well unless something lower down is catching the exception | 01:58 |
mtreinish | which I don't think would be the case because that's happening pretty early in run() | 01:59 |
asselin | mtreinish, never gets to '2' http://paste.openstack.org/show/479527/ | 01:59 |
asselin | and no exception trace in the log file | 01:59 |
asselin | maybe I can make it sleep before and see if I can connect a debugger | 02:00 |
mtreinish | asselin: L2 or error message 2? | 02:00 |
asselin | starting run 2") | 02:00 |
mtreinish | asselin: hmm, maybe something weird is going on with the threading lib. Does it work if you call run directly instead of start? (well the whole thing won't work because the infinite loop will block the other class from spinning up) | 02:02 |
mtreinish | but you'll at least see the issue | 02:02 |
asselin | good idea | 02:02 |
*** gema has quit IRC | 02:03 | |
asselin | same thing | 02:03 |
*** pglass has quit IRC | 02:07 | |
*** rfolco_ has joined #openstack-qa | 02:07 | |
*** yamamoto_ has quit IRC | 02:10 | |
openstackrecheck | Console logs not available after 13:24s for gate-nova-pep8 247742,3,2c7e648 | 02:11 |
*** mylu has quit IRC | 02:12 | |
asselin | lifeless, ok that worked. thanks for the follow-up | 02:14 |
*** rfolco_ has quit IRC | 02:14 | |
dwalleck | lifeless: I'm not sure if you're still around, but I had some questions re: the Tempest run command that we talked about in Tokyo | 02:17 |
openstackgerrit | liusheng proposed openstack/tempest: Change tests to adapt alarm spliting https://review.openstack.org/202418 | 02:21 |
*** ranger81 has quit IRC | 02:23 | |
asselin | lifeless, btw nice to see familiar names :) https://github.com/pypa/pip/issues/2696 | 02:24 |
*** binbincong has joined #openstack-qa | 02:25 | |
openstackrecheck | Console logs not available after 13:39s for gate-nova-pep8 215917,14,085872c | 02:25 |
lifeless | dwalleck: sure? | 02:25 |
lifeless | asselin: yah :) | 02:25 |
*** ranger81 has joined #openstack-qa | 02:27 | |
*** hoangcx has joined #openstack-qa | 02:27 | |
*** hoangcx has left #openstack-qa | 02:27 | |
dwalleck | lifeless: We were talking during the Tempest CLI discussion about how to properly implement a Tempest runner (https://etherpad.openstack.org/p/mitaka-qa-tempest-run-cli) and you had mentioned using testrepository.ui as the base | 02:28 |
dwalleck | I didn't see how that was totally was possible given that its very generic (but I'm also very new to the code base), but mtreinish said the primary concern was to not subproc out any commands, which I totally agree with | 02:29 |
lifeless | yes, I remember the conversation | 02:30 |
lifeless | just didn't see any questions from you :) | 02:30 |
dwalleck | So I guess my question is if the intent was that the `tempest run` be just built directly on top of testrepository in general, or could it be directly implemented on top of testrepository.ui? | 02:31 |
*** mylu has joined #openstack-qa | 02:31 | |
*** mylu has quit IRC | 02:32 | |
dwalleck | I was leading the convo with Sam, and you were pretty tired so I didn't want to bug you :-) I thought I could figure it out, but I'm wanting to make sure I captured the spirit of the discussion | 02:32 |
*** fedexo has joined #openstack-qa | 02:33 | |
lifeless | dwalleck: so you've got some options | 02:34 |
*** jdandrea has quit IRC | 02:34 | |
lifeless | dwalleck: https://github.com/testing-cabal/testrepository/blob/master/testrepository/commands/__init__.py#L165 | 02:34 |
lifeless | dwalleck: is the entry point to invoke testr without subprocess calls to it | 02:34 |
*** mylu has joined #openstack-qa | 02:35 | |
*** ccneill has quit IRC | 02:35 | |
*** nic has quit IRC | 02:36 | |
*** Wei_Liu_ has quit IRC | 02:36 | |
lifeless | dwalleck: but you could implement a custom UI if you wanted to process things on a semantic level | 02:36 |
*** nithyag_ has joined #openstack-qa | 02:36 | |
lifeless | dwalleck: e.g. one thing a number of projects do is use --subunit and then process the stream | 02:36 |
lifeless | dwalleck: whereas a custom UI (or patches to the existin CLI UI) could just handle events differently | 02:36 |
dwalleck | lifeless: That makes more sense. I just had the note to look at testrepository.ui and I was staring at it until my eyes crossed | 02:37 |
lifeless | if you look at the implementation of run_argv you can see its extremely shallow | 02:37 |
*** nithyag__ has quit IRC | 02:37 | |
*** mylu has quit IRC | 02:38 | |
*** mylu has joined #openstack-qa | 02:38 | |
*** dims_ has quit IRC | 02:39 | |
openstackrecheck | Console logs not available after 13:29s for gate-nova-pep8 232585,17,df59e4f | 02:39 |
dwalleck | Right, so you have to build up whatever you need around it. I think I still need to go back to mtreinish and make sure we're getting value out of building up `tempest run`. There's extra candy in command line args we can create, but that's mostly it. | 02:39 |
*** ajmiller has quit IRC | 02:40 | |
*** ajmiller_ has joined #openstack-qa | 02:40 | |
dwalleck | lifeless: But from everything I've read, is that one of the purposes of testrepository? To be a runner of more specific runners? | 02:40 |
dwalleck | I stalked you back to some PyCon videos :D | 02:40 |
lifeless | dwalleck: it is indeed, I describe it as being twofold - a meta-runner and a datastore | 02:41 |
lifeless | dwalleck: We can always move stuff to testr from tempest-run if it appears generally applicable | 02:41 |
*** mylu has quit IRC | 02:43 | |
dwalleck | lifeless: That makes sense. And if we want some Tempest-friendly args, it would live at that meta-runner level | 02:43 |
lifeless | dwalleck: tempest-run is a domain-specific wrapper | 02:44 |
*** mylu has joined #openstack-qa | 02:44 | |
lifeless | dwalleck: some parts of that domain are only applicable to tempest, like config file setup | 02:44 |
dwalleck | I have a spec partially done, and I'll push it up before I leave for the Thanksgiving holiday. I just wanted to make sure my memory was correct | 02:44 |
*** jacky-zhang has joined #openstack-qa | 02:44 | |
lifeless | dwalleck: or default heuristics | 02:44 |
lifeless | dwalleck: all good, great | 02:44 |
dwalleck | lifeless: Yeah, domain-specific is a better term | 02:44 |
lifeless | dwalleck: when is thanksgiving? | 02:45 |
dwalleck | Next Thursday | 02:45 |
lifeless | dwalleck: the meta-runner bit is because testr runs test runners (like nose/subunit.run/py.test/....) | 02:45 |
lifeless | dwalleck: for 4 days? | 02:45 |
dwalleck | I forget that we're not all from the US :D | 02:45 |
lifeless | :) | 02:45 |
dwalleck | lifeless: yes. I'll be out most of next week traveling, but I'll be back in town the week after | 02:45 |
dwalleck | It's interesting to work with testrepository after working on the opencafe stuff I've worked on before. Different approaches, but it's making sense now | 02:48 |
*** hoangcx has joined #openstack-qa | 02:49 | |
*** hoangcx has left #openstack-qa | 02:49 | |
openstackrecheck | Console logs not available after 13:27s for gate-nova-pep8 247729,2,7ec56d6 | 02:52 |
lifeless | dwalleck: cool; you should blog on the difference at some point | 02:52 |
*** Wei_Liu_ has joined #openstack-qa | 02:56 | |
*** armax has quit IRC | 02:56 | |
*** woodster_ has quit IRC | 02:59 | |
*** yamamoto has joined #openstack-qa | 02:59 | |
*** tonyb has quit IRC | 03:01 | |
*** tonyb has joined #openstack-qa | 03:01 | |
*** yamahata has quit IRC | 03:01 | |
*** cody-somerville has quit IRC | 03:01 | |
openstackrecheck | Console logs not available after 13:32s for gate-nova-pep8 238321,10,c0a2dc7 | 03:06 |
*** binbincong has quit IRC | 03:06 | |
*** jasonsb has joined #openstack-qa | 03:09 | |
*** ranger81 has quit IRC | 03:09 | |
*** cody-somerville has joined #openstack-qa | 03:17 | |
openstackrecheck | Console logs not available after 13:38s for gate-nova-pep8 232554,12,71ee4fe | 03:19 |
*** edmondsw has quit IRC | 03:19 | |
*** dims has joined #openstack-qa | 03:21 | |
*** mylu_ has joined #openstack-qa | 03:22 | |
*** mylu has quit IRC | 03:22 | |
*** tochi has quit IRC | 03:25 | |
*** pglass has joined #openstack-qa | 03:25 | |
*** binbincong has joined #openstack-qa | 03:29 | |
*** ranger81 has joined #openstack-qa | 03:32 | |
openstackrecheck | Console logs not available after 13:28s for gate-keystone-python27 243742,4,25fc6a4 | 03:33 |
*** Wei_Liu_ has quit IRC | 03:35 | |
*** ranger81 has quit IRC | 03:35 | |
*** Wei_Liu_ has joined #openstack-qa | 03:35 | |
*** ranger81 has joined #openstack-qa | 03:39 | |
*** ranger81 has quit IRC | 03:44 | |
openstackrecheck | Console logs not available after 13:46s for gate-nova-pep8 238239,10,fc3203b | 03:47 |
*** weshay_xchat has joined #openstack-qa | 03:54 | |
*** ranger81 has joined #openstack-qa | 03:55 | |
*** ranger81 has quit IRC | 03:56 | |
*** mriedem has quit IRC | 03:59 | |
openstackrecheck | Console logs not available after 13:33s for gate-nova-pep8 238323,11,d4088f5 | 04:00 |
*** tochi has joined #openstack-qa | 04:01 | |
*** pglass has quit IRC | 04:01 | |
*** itsuugo has joined #openstack-qa | 04:02 | |
*** jhesketh has quit IRC | 04:06 | |
*** itsuugo has quit IRC | 04:07 | |
*** dave-mccowan has quit IRC | 04:07 | |
*** jeblair has quit IRC | 04:08 | |
*** josh6627 has joined #openstack-qa | 04:08 | |
*** EmilienM has quit IRC | 04:08 | |
*** jeblair has joined #openstack-qa | 04:09 | |
*** ranger81 has joined #openstack-qa | 04:10 | |
*** EmilienM has joined #openstack-qa | 04:10 | |
*** weshay_xchat has quit IRC | 04:12 | |
*** zhangjn has quit IRC | 04:14 | |
*** ranger81 has quit IRC | 04:15 | |
openstackrecheck | Console logs not available after 13:34s for gate-nova-pep8 232620,15,087998c | 04:15 |
*** lutostag has quit IRC | 04:22 | |
*** lutostag has joined #openstack-qa | 04:23 | |
*** hoangcx has joined #openstack-qa | 04:23 | |
*** achanda has joined #openstack-qa | 04:23 | |
*** hoangcx has left #openstack-qa | 04:23 | |
*** cody-somerville has quit IRC | 04:24 | |
*** lutostag has quit IRC | 04:24 | |
*** lutostag has joined #openstack-qa | 04:25 | |
*** asselin has quit IRC | 04:25 | |
*** asselin has joined #openstack-qa | 04:25 | |
openstackrecheck | Console logs not available after 13:35s for gate-glance-python27 247819,2,f1402dd | 04:29 |
*** zhangjn has joined #openstack-qa | 04:29 | |
*** yamahata has joined #openstack-qa | 04:32 | |
*** ranger81_ has joined #openstack-qa | 04:33 | |
*** ranger81 has joined #openstack-qa | 04:33 | |
*** dims has quit IRC | 04:36 | |
*** armax has joined #openstack-qa | 04:37 | |
*** aopincar has joined #openstack-qa | 04:38 | |
*** cody-somerville has joined #openstack-qa | 04:41 | |
openstackrecheck | Console logs not available after 13:33s for gate-grenade-dsvm 247720,2,69fef89 | 04:44 |
*** zhangjn has quit IRC | 04:45 | |
*** achanda_ has joined #openstack-qa | 04:46 | |
*** Triveni has joined #openstack-qa | 04:46 | |
*** mylu_ has quit IRC | 04:47 | |
*** achanda has quit IRC | 04:50 | |
*** aopincar has quit IRC | 04:56 | |
*** ranger81_ has quit IRC | 04:58 | |
openstackrecheck | Console logs not available after 13:42s for gate-grenade-dsvm 247853,1,098934b | 04:58 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/tempest: Updated from global requirements https://review.openstack.org/247166 | 05:00 |
*** nicholasgoracke has joined #openstack-qa | 05:00 | |
*** armax has quit IRC | 05:00 | |
*** oomichi_ has joined #openstack-qa | 05:01 | |
*** ranger81 has joined #openstack-qa | 05:01 | |
*** oomichi has quit IRC | 05:03 | |
*** nicholasgoracke has quit IRC | 05:05 | |
*** rossella_s has quit IRC | 05:07 | |
*** rossella_s has joined #openstack-qa | 05:07 | |
*** zhangjn has joined #openstack-qa | 05:11 | |
openstackrecheck | Console logs not available after 13:38s for gate-tempest-dsvm-postgres-full 196942,15,25116f5 | 05:12 |
*** mattoliverau has quit IRC | 05:12 | |
*** zhangjn has quit IRC | 05:12 | |
*** mattoliverau has joined #openstack-qa | 05:13 | |
*** zhangjn has joined #openstack-qa | 05:18 | |
*** achanda_ has quit IRC | 05:21 | |
oomichi_ | dmellado: hi | 05:22 |
oomichi_ | dmellado: about service-client dev. | 05:22 |
oomichi_ | dmellado: I'd like to get your help for v2 dentity_client.py. so please check https://etherpad.openstack.org/p/mitaka-tempest-service-clients | 05:23 |
oomichi_ | dmellado: I wrote working item for you :) | 05:23 |
*** mylu has joined #openstack-qa | 05:24 | |
*** mylu has quit IRC | 05:25 | |
*** mylu has joined #openstack-qa | 05:26 | |
*** mylu has quit IRC | 05:27 | |
*** mylu has joined #openstack-qa | 05:28 | |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Fix T110 violations for image_client https://review.openstack.org/247919 | 05:30 |
openstackrecheck | Console logs not available after 13:53s for gate-tempest-dsvm-full-kilo 202418,15,cdf0afd | 05:31 |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack-dev/devstack: Updated HACKING.rst for typos https://review.openstack.org/247920 | 05:31 |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack-dev/devstack: Updated typos in lib/dlm https://review.openstack.org/247921 | 05:31 |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack-dev/devstack: Updated typos in lib/ironic https://review.openstack.org/247922 | 05:31 |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack-dev/devstack: Updated typos in unittest.sh https://review.openstack.org/247923 | 05:32 |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack-dev/devstack: Updated typos in test_meta_config.sh https://review.openstack.org/247924 | 05:32 |
*** stevemar_ has quit IRC | 05:34 | |
*** stevemar_ has joined #openstack-qa | 05:35 | |
*** armax has joined #openstack-qa | 05:35 | |
*** ranger81 has quit IRC | 05:37 | |
*** stevemar_ has quit IRC | 05:38 | |
*** gema has joined #openstack-qa | 05:38 | |
*** mylu has quit IRC | 05:39 | |
*** ranger81 has joined #openstack-qa | 05:39 | |
*** tmatsu has quit IRC | 05:42 | |
*** tmatsu has joined #openstack-qa | 05:44 | |
openstackrecheck | Console logs not available after 13:46s for gate-cinder-python34 246787,1,c7a1554 | 05:45 |
openstackgerrit | Swapnil Kulkarni (coolsvap) proposed openstack-dev/devstack: Updated Typos in devstack https://review.openstack.org/247920 | 05:49 |
*** ranger81 has quit IRC | 05:53 | |
*** dwalleck has quit IRC | 05:54 | |
*** dwalleck has joined #openstack-qa | 05:54 | |
*** itsuugo has joined #openstack-qa | 05:56 | |
*** mylu has joined #openstack-qa | 05:57 | |
openstackrecheck | Console logs not available after 13:36s for gate-cinder-python34 247886,1,25c06a8 | 05:59 |
*** hoangcx has joined #openstack-qa | 06:01 | |
*** shausy has joined #openstack-qa | 06:01 | |
*** hoangcx has left #openstack-qa | 06:01 | |
*** sabeen has quit IRC | 06:03 | |
*** mkumatag has joined #openstack-qa | 06:04 | |
*** oomichi_ has quit IRC | 06:04 | |
*** amotoki_ has joined #openstack-qa | 06:07 | |
*** mylu has quit IRC | 06:12 | |
openstackrecheck | Console logs not available after 13:31s for gate-cinder-python34 227943,6,e60f9ec | 06:12 |
*** mylu has joined #openstack-qa | 06:12 | |
*** jasonsb has quit IRC | 06:14 | |
*** oomichi has joined #openstack-qa | 06:15 | |
*** amotoki_ has quit IRC | 06:17 | |
*** mylu has quit IRC | 06:18 | |
*** jasonsb has joined #openstack-qa | 06:19 | |
*** tochi has quit IRC | 06:19 | |
*** jasonsb has quit IRC | 06:21 | |
*** eliqiao_ has joined #openstack-qa | 06:26 | |
openstackrecheck | Console logs not available after 13:33s for gate-tempest-dsvm-neutron-full 240329,5,1df8688 | 06:26 |
*** achanda has joined #openstack-qa | 06:26 | |
*** eliqiao has quit IRC | 06:28 | |
*** rcernin has joined #openstack-qa | 06:30 | |
*** nadya_ has joined #openstack-qa | 06:31 | |
*** itsuugo has quit IRC | 06:32 | |
*** nadya_ has quit IRC | 06:33 | |
*** dwalleck has quit IRC | 06:36 | |
*** itsuugo has joined #openstack-qa | 06:36 | |
openstackrecheck | Console logs not available after 13:31s for gate-cinder-python34 246861,1,78867c9 | 06:41 |
*** SridharG has joined #openstack-qa | 06:41 | |
*** achanda has quit IRC | 06:42 | |
*** achanda has joined #openstack-qa | 06:43 | |
openstackgerrit | Andrea Frittoli proposed openstack/tempest: Skip test that rely on creds by role https://review.openstack.org/247947 | 06:44 |
*** itsuugo has quit IRC | 06:44 | |
andreaf | mtreinish, sdague, masayukig, oomichi, afazekas: this fix is relatively urgent https://review.openstack.org/247947 it restores non-isolated jobs | 06:45 |
andreaf | mtreinish: I tracked down the issue to the "is_role_available" method raising an exception instead of returning false on the legacy creds provider - by bad :( | 06:46 |
*** achanda has quit IRC | 06:48 | |
*** nadya_ has joined #openstack-qa | 06:53 | |
*** salv-orlando has joined #openstack-qa | 06:54 | |
*** salv-orl_ has quit IRC | 06:58 | |
gmann | andreaf: Thanks. i missed that on that patch :( | 07:03 |
*** tochi has joined #openstack-qa | 07:08 | |
*** eliqiao has joined #openstack-qa | 07:09 | |
*** eliqiao_ has quit IRC | 07:10 | |
*** jasonsb has joined #openstack-qa | 07:10 | |
openstackgerrit | Bin Bin Cong proposed openstack/tempest: Add keystone v3 user negative cases https://review.openstack.org/242392 | 07:14 |
*** eliqiao has quit IRC | 07:18 | |
*** eliqiao has joined #openstack-qa | 07:20 | |
*** itsuugo has joined #openstack-qa | 07:22 | |
*** tmatsu has quit IRC | 07:22 | |
*** tmatsu has joined #openstack-qa | 07:23 | |
*** anshul has joined #openstack-qa | 07:28 | |
*** achanda has joined #openstack-qa | 07:29 | |
*** tmatsu has quit IRC | 07:30 | |
*** tmatsu has joined #openstack-qa | 07:32 | |
*** itsuugo has quit IRC | 07:33 | |
*** armax has quit IRC | 07:34 | |
*** fedexo has quit IRC | 07:34 | |
*** tmatsu has quit IRC | 07:35 | |
*** tmatsu has joined #openstack-qa | 07:36 | |
*** neeti has joined #openstack-qa | 07:38 | |
*** nadya_ has quit IRC | 07:38 | |
*** anshul has quit IRC | 07:40 | |
*** anshul has joined #openstack-qa | 07:40 | |
openstackgerrit | Merged openstack/tempest: Updated from global requirements https://review.openstack.org/247166 | 07:41 |
*** achanda has quit IRC | 07:41 | |
*** safchain has joined #openstack-qa | 07:44 | |
*** zhangjn has quit IRC | 07:47 | |
*** gfidente has joined #openstack-qa | 07:50 | |
*** vgridnev has joined #openstack-qa | 07:52 | |
*** ranger81 has joined #openstack-qa | 07:54 | |
openstackrecheck | Console logs not available after 13:53s for gate-tempest-dsvm-neutron-full-non-isolated 247554,2,ce320b0 | 07:54 |
*** chicxurug has joined #openstack-qa | 07:55 | |
*** ttx has quit IRC | 07:57 | |
*** ttx has joined #openstack-qa | 07:57 | |
*** chicxurug has left #openstack-qa | 07:57 | |
*** hpeter has joined #openstack-qa | 07:58 | |
*** ranger81 has quit IRC | 08:00 | |
dmellado | oomichi: read your message, ack ;) | 08:02 |
oomichi | dmellado: thanks :-) | 08:02 |
dmellado | query oomichi | 08:04 |
openstackgerrit | Merged openstack/tempest: Modify baremetal_basic_ops test https://review.openstack.org/245313 | 08:05 |
*** dpaterson has quit IRC | 08:07 | |
*** dpaterson has joined #openstack-qa | 08:08 | |
openstackrecheck | openstack/tempest change: https://review.openstack.org/247861 failed because of: gate-tempest-dsvm-layer4: https://bugs.launchpad.net/bugs/1400905 | 08:14 |
openstack | Launchpad bug 1400905 in OpenStack-Gate "Hash Sum mismatch on apt mirrors" [Undecided,Confirmed] | 08:14 |
*** achanda has joined #openstack-qa | 08:17 | |
*** zhangjn has joined #openstack-qa | 08:18 | |
openstackgerrit | Yaroslav Lobankov proposed openstack/tempest: Rename get_group to show_group https://review.openstack.org/247965 | 08:24 |
openstackgerrit | Yaroslav Lobankov proposed openstack/tempest: [V3] Rename get_group to show_group https://review.openstack.org/247965 | 08:26 |
*** oomichi has quit IRC | 08:27 | |
*** zhangjn has quit IRC | 08:32 | |
*** amotoki_ has joined #openstack-qa | 08:36 | |
*** zhangjn has joined #openstack-qa | 08:36 | |
*** tmatsu has quit IRC | 08:36 | |
*** tmatsu has joined #openstack-qa | 08:37 | |
*** vgridnev has quit IRC | 08:40 | |
*** dmorita has quit IRC | 08:41 | |
*** shausy has quit IRC | 08:41 | |
*** tmatsu has quit IRC | 08:41 | |
*** shausy has joined #openstack-qa | 08:42 | |
*** jlanoux has joined #openstack-qa | 08:43 | |
*** piyush_ has joined #openstack-qa | 08:47 | |
*** amotoki_ has quit IRC | 08:47 | |
piyush_ | HI Gmann | 08:48 |
*** ifarkas has joined #openstack-qa | 08:48 | |
*** oomichi has joined #openstack-qa | 08:48 | |
*** maht has joined #openstack-qa | 08:49 | |
*** zhangjn has quit IRC | 08:51 | |
openstackrecheck | Console logs not available after 14:36s for gate-tempest-dsvm-large-ops-kilo 242965,1,2ccad73 | 08:54 |
*** yamahata has quit IRC | 08:58 | |
*** bauzas is now known as bauwser | 09:02 | |
*** k4n0 has joined #openstack-qa | 09:06 | |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Refactor T110 rule https://review.openstack.org/247980 | 09:07 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Add T111 hacking rule for consistent DELETE method https://review.openstack.org/247981 | 09:07 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add the base microversions test part https://review.openstack.org/242296 | 09:07 |
*** rossella_s has quit IRC | 09:07 | |
*** rossella_s has joined #openstack-qa | 09:08 | |
*** jecarey has joined #openstack-qa | 09:08 | |
*** nadya_ has joined #openstack-qa | 09:08 | |
*** itsuugo has joined #openstack-qa | 09:10 | |
*** jecarey has quit IRC | 09:13 | |
*** itsuugo has quit IRC | 09:15 | |
gmann | piyush_: hi | 09:15 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Use Tempest-lib's compute images_client https://review.openstack.org/236798 | 09:15 |
*** achanda has quit IRC | 09:17 | |
openstackrecheck | Console logs not available after 13:35s for gate-tempest-dsvm-ironic-agent_ssh 247861,1,e0a8207 | 09:19 |
andreaf | masayukig, afazekas: thanks for your reviews on https://review.openstack.org/#/c/247947/ - the non isolated jobs are back to green now, so it should be ok to +A the change | 09:20 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Use Tempest-lib's compute instance_usage_audit_logs https://review.openstack.org/236803 | 09:21 |
openstackgerrit | Andrea Frittoli proposed openstack/tempest: Remove preprov provider dependencies from CONF https://review.openstack.org/234200 | 09:22 |
afazekas | andreaf, done | 09:22 |
andreaf | afazekas: thanks! | 09:22 |
*** jecarey has joined #openstack-qa | 09:24 | |
*** achanda has joined #openstack-qa | 09:25 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Use Tempest-lib's compute limits_client https://review.openstack.org/238739 | 09:26 |
*** jecarey has quit IRC | 09:28 | |
*** vgridnev has joined #openstack-qa | 09:29 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Use Tempest-lib's compute migrations_client https://review.openstack.org/240416 | 09:30 |
*** markvoelker has quit IRC | 09:30 | |
*** e0ne has joined #openstack-qa | 09:31 | |
*** yamamoto has quit IRC | 09:31 | |
*** zhangjn has joined #openstack-qa | 09:31 | |
openstackgerrit | Yaroslav Lobankov proposed openstack/tempest: Use V3 params when initializing Keystone V3 clients https://review.openstack.org/247988 | 09:32 |
*** pkoniszewski has quit IRC | 09:35 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Use Tempest-lib's compute networks_client https://review.openstack.org/240421 | 09:35 |
gmann | mtreinish: removed WIP - https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:use_lib_service_client,n,z | 09:36 |
*** dtantsur|afk is now known as dtantsur | 09:36 | |
dmellado | gmann: andreaf may I ask you a question regarding service clients? | 09:37 |
*** achanda has quit IRC | 09:37 | |
gmann | dmellado: yea, please | 09:40 |
*** itsuugo has joined #openstack-qa | 09:41 | |
dmellado | gmann: I'm working into splitting the keystone service client, as in https://etherpad.openstack.org/p/mitaka-tempest-service-clients | 09:41 |
dmellado | tempest/services/identity/v2/json/ | 09:41 |
*** pkoniszewski has joined #openstack-qa | 09:41 | |
gmann | dmellado: ok | 09:41 |
dmellado | and I first created a TokenClient, which holds the 2 methods for show token and delete token | 09:42 |
dmellado | which is ok | 09:42 |
piyush_ | Gmann: can you please tell me this check experimental is what for | 09:42 |
piyush_ | ? | 09:42 |
dmellado | then I was going to modify tempest/clients.py | 09:42 |
dmellado | to add the TokenClient | 09:43 |
gmann | piyush_: there are many jobs which run on experimental pipeline, "check experimental" comment trigger those so that we can see their results | 09:43 |
openstackgerrit | Komei Shimamura proposed openstack-dev/devstack: Add official devstack plugins to plugin-registry documentation https://review.openstack.org/247991 | 09:43 |
gmann | piyush_: like keystone v3 API job | 09:43 |
dmellado | but I saw that there was already a TokenClient from tempest-lib | 09:43 |
gmann | dmellado: yes there is one | 09:43 |
dmellado | Does it mean that the token methods for the identityclient were not used anymore? | 09:43 |
dmellado | thus there wasn't really a need for such a TokenClient in tempest? | 09:44 |
piyush_ | Gmann: okies so in my case its failing.. | 09:44 |
dmellado | If so, I'll just delete them for v2/identity_client.py :\ | 09:44 |
*** zhangjn has quit IRC | 09:44 | |
dmellado | afazekas: ^ | 09:44 |
*** maht has quit IRC | 09:44 | |
*** maht has joined #openstack-qa | 09:45 | |
piyush_ | Gmann: with some ssh error, so i need to restart this job again | 09:45 |
dmellado | oomichi: was suggesting this patch as a model https://review.openstack.org/#/c/246520/3 | 09:45 |
gmann | dmellado: both are different and we need both | 09:45 |
dmellado | gmann: then I should just rename the import for the TokenClient so it doesn't collide? | 09:45 |
dmellado | V2TokenClient or something like that? | 09:46 |
* dmellado trying to get this | 09:46 | |
gmann | dmellado: lib one is used to get token for auth during initial cred preparation | 09:46 |
dmellado | gmann: I see, and the other one is used within the tests | 09:48 |
gmann | dmellado: V2TokenClient will be confusing with lib one | 09:48 |
dmellado | gmann: what would you suggest then? | 09:48 |
gmann | dmellado: thinking about this.. | 09:48 |
gmann | piyush_: no exactly till it pass keystone v3 job as your change related to that | 09:49 |
gmann | piyush_: i will check | 09:49 |
*** jordanP has joined #openstack-qa | 09:49 | |
*** amotoki_ has joined #openstack-qa | 09:50 | |
piyush_ | Gmann: okies thanks :-) | 09:51 |
gmann | dmellado: i think we can keep those in identity_client only as v3 client also | 09:51 |
gmann | dmellado: because renaming those in token_something will be confusing | 09:52 |
dmellado | gmann: sounds fine for me, I'll drop this patch and continue with the next one | 09:52 |
dmellado | I'll also add a comment in the identity client about this | 09:52 |
dmellado | oomichi: ^ | 09:52 |
openstackgerrit | Komei Shimamura proposed openstack-dev/devstack: Add existing devstack plugins to the devstack plugin list https://review.openstack.org/247991 | 09:53 |
gmann | dmellado: or another way i was thinking about putting those in lib token_client but that takes different set of arg auth_url | 09:53 |
gmann | so that would not be good | 09:54 |
*** nicholasgoracke has joined #openstack-qa | 09:54 | |
gmann | dmellado: yea but oomichi can suggest if he has some better name for those.. | 09:54 |
openstackgerrit | Merged openstack-dev/devstack: doc: document override_defaults phase https://review.openstack.org/246775 | 09:54 |
dmellado | gmann: I'll create a WIP then so everyone can comment | 09:55 |
gmann | dmellado: yea | 09:55 |
gmann | dmellado: do you have that patch up ? | 09:55 |
dmellado | gmann: up to the point where I was modifying the tempest/client yep | 09:56 |
gmann | dmellado: ohk | 09:56 |
*** Wei_Liu_ has quit IRC | 09:56 | |
dmellado | let me name the commit and I'll post the link | 09:56 |
gmann | dmellado: ok | 09:56 |
*** ranger81 has joined #openstack-qa | 09:56 | |
gmann | dmellado: also ylobankov working on separating v3 client - https://review.openstack.org/#/c/247538/ | 09:57 |
dmellado | I saw that, that's why I asked about the V3TokenClient and thought about using V2TokenClient for this | 09:57 |
gmann | dmellado: I hope you have already coordinated on etherpad | 09:57 |
dmellado | but I do agree that it'd be confusing | 09:57 |
dmellado | gmann: yep | 09:57 |
gmann | dmellado: cool | 09:58 |
*** nicholasgoracke has quit IRC | 09:59 | |
openstackgerrit | Yaroslav Lobankov proposed openstack/tempest: Removing initialization of clients that are not used https://review.openstack.org/248002 | 09:59 |
*** ranger81 has quit IRC | 10:01 | |
openstackgerrit | Daniel Mellado proposed openstack/tempest: [WIP] Split out keystone token client https://review.openstack.org/248005 | 10:04 |
dmellado | gmann: https://review.openstack.org/#/c/248005/ | 10:05 |
*** amotoki_ has quit IRC | 10:06 | |
*** aix has joined #openstack-qa | 10:07 | |
*** hop|2 has joined #openstack-qa | 10:08 | |
*** Wei_Liu_ has joined #openstack-qa | 10:09 | |
*** yamamoto has joined #openstack-qa | 10:17 | |
*** yamamoto_ has joined #openstack-qa | 10:17 | |
*** shardy has joined #openstack-qa | 10:18 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add compute client base class for microversion support https://review.openstack.org/242346 | 10:20 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add logic to select the request microversion https://review.openstack.org/244439 | 10:20 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add support of schema versioning for microversion https://review.openstack.org/244974 | 10:20 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest: Add tests for Nova microversion v2.2 https://review.openstack.org/244996 | 10:20 |
*** yamamoto has quit IRC | 10:21 | |
*** yamamoto_ has quit IRC | 10:28 | |
*** amotoki_ has joined #openstack-qa | 10:29 | |
*** amotoki_ has quit IRC | 10:30 | |
*** markvoelker has joined #openstack-qa | 10:31 | |
*** apevec has joined #openstack-qa | 10:33 | |
*** apevec has quit IRC | 10:33 | |
*** apevec has joined #openstack-qa | 10:33 | |
*** tochi has quit IRC | 10:34 | |
*** markvoelker has quit IRC | 10:36 | |
openstackgerrit | Merged openstack/tempest: Skip test that rely on creds by role https://review.openstack.org/247947 | 10:36 |
*** tochi has joined #openstack-qa | 10:39 | |
*** e0ne has quit IRC | 10:43 | |
*** nicholasgoracke has joined #openstack-qa | 10:45 | |
openstackrecheck | Console logs not available after 13:57s for gate-tempest-dsvm-neutron-full 236798,3,2f4e6d3 | 10:47 |
*** e0ne has joined #openstack-qa | 10:51 | |
apevec | fungi, while checking devstack for possiblity of post-EOL grenade job, I noticed icehouse-eol tag is missing? | 10:52 |
apevec | any chance you could recover and push it? Just for completeness and maybe quick PoC test | 10:53 |
*** gszasz has joined #openstack-qa | 10:56 | |
openstackrecheck | Console logs not available after 14:01s for gate-tempest-dsvm-postgres-full-juno 234200,14,c67f37c | 11:01 |
openstackrecheck | Console logs not available after 14:03s for gate-tempest-dsvm-full 248005,1,8df6bea | 11:20 |
*** neeti has quit IRC | 11:24 | |
*** dims has joined #openstack-qa | 11:24 | |
*** safchain has quit IRC | 11:28 | |
*** salv-orlando has quit IRC | 11:28 | |
*** yamamoto has joined #openstack-qa | 11:28 | |
*** salv-orlando has joined #openstack-qa | 11:29 | |
*** achanda has joined #openstack-qa | 11:31 | |
*** yamamoto has quit IRC | 11:33 | |
*** piyush_ has quit IRC | 11:34 | |
*** yamamoto has joined #openstack-qa | 11:37 | |
*** Triveni has quit IRC | 11:37 | |
*** yamamoto has quit IRC | 11:38 | |
*** safchain has joined #openstack-qa | 11:41 | |
*** yamamoto has joined #openstack-qa | 11:45 | |
*** salv-orlando has quit IRC | 11:45 | |
*** yamamoto has quit IRC | 11:49 | |
*** ranger81 has joined #openstack-qa | 11:57 | |
openstackrecheck | Console logs not available after 14:01s for gate-tempest-dsvm-postgres-full-kilo 238739,3,b147401 | 11:57 |
clarkb | apevec fungi is on vacation but tag exists https://git.openstack.org/cgit/openstack-dev/devstack/tag/?h=icehouse-eol | 11:58 |
*** zhangjn has joined #openstack-qa | 12:02 | |
*** ranger81 has quit IRC | 12:02 | |
*** zhangjn has quit IRC | 12:02 | |
*** zhangjn has joined #openstack-qa | 12:03 | |
apevec | clarkb, thanks - so looks like git fetch is not retrieving tags on dead branches? | 12:03 |
clarkb | do a git remote update? | 12:06 |
clarkb | git fetch knows nothing of "dead" branches. a tag is a tag is a tag | 12:06 |
apevec | git remote update did the trick, thanks | 12:07 |
apevec | interesting that git fetch gerrit icehouse-eol worked w/o local tag, but still didn't retrieve the tag locally | 12:08 |
clarkb | you have to do --tags iirc | 12:08 |
apevec | ah yes, rtfm: "By default, any tag that points into the histories being fetched is also fetched" | 12:09 |
apevec | so for dead branches, --tags is required | 12:09 |
*** TuanNguyen has joined #openstack-qa | 12:12 | |
openstackrecheck | Console logs not available after 14:34s for gate-tempest-dsvm-full-kilo 236803,3,83604d6 | 12:12 |
*** salv-orlando has joined #openstack-qa | 12:17 | |
*** e0ne has quit IRC | 12:19 | |
*** e0ne has joined #openstack-qa | 12:19 | |
openstackrecheck | Console logs not available after 14:29s for gate-tempest-dsvm-neutron-full-non-admin 234200,14,ff15c81 | 12:26 |
*** maht has quit IRC | 12:28 | |
*** tochi has quit IRC | 12:29 | |
openstackgerrit | Vasyl Saienko proposed openstack-dev/devstack: Allow to build user image with DIB https://review.openstack.org/247513 | 12:32 |
openstackgerrit | Vasyl Saienko proposed openstack-dev/devstack: refactor ironic enroll-node code https://review.openstack.org/248048 | 12:32 |
*** markvoelker has joined #openstack-qa | 12:32 | |
*** aix has quit IRC | 12:36 | |
*** markvoelker has quit IRC | 12:37 | |
*** itsuugo has quit IRC | 12:39 | |
openstackrecheck | Console logs not available after 14:05s for gate-tempest-dsvm-full-juno 248002,1,7176f71 | 12:41 |
openstackgerrit | Shinobu KINJO proposed openstack-dev/devstack: Being force into using "FORCE=yes", otherwise "stack.sh" ends up with failing https://review.openstack.org/248056 | 12:48 |
*** weshay_xchat has joined #openstack-qa | 12:51 | |
openstackgerrit | Shinobu KINJO proposed openstack-dev/devstack: Being force into using "FORCE=yes", otherwise "stack.sh" ends up with being failed https://review.openstack.org/248056 | 12:52 |
*** salv-orl_ has joined #openstack-qa | 12:54 | |
*** wuhg has joined #openstack-qa | 12:55 | |
openstackrecheck | Console logs not available after 16:19s for gate-nova-python34 246298,3,b6c124b | 12:57 |
*** salv-orlando has quit IRC | 12:57 | |
*** jaypipes has joined #openstack-qa | 13:00 | |
*** ChanServ sets mode: +o jaypipes | 13:00 | |
*** achanda has quit IRC | 13:01 | |
*** achanda has joined #openstack-qa | 13:02 | |
*** yfried has quit IRC | 13:06 | |
*** rossella_s has quit IRC | 13:07 | |
*** itsuugo has joined #openstack-qa | 13:08 | |
*** rossella_s has joined #openstack-qa | 13:08 | |
*** salv-orl_ has quit IRC | 13:09 | |
*** aojea has joined #openstack-qa | 13:09 | |
*** salv-orlando has joined #openstack-qa | 13:09 | |
*** itsuugo has quit IRC | 13:09 | |
*** binbincong has quit IRC | 13:11 | |
openstackrecheck | Console logs not available after 15:07s for gate-tempest-dsvm-neutron-full-kilo 247861,1,c4ec67e | 13:12 |
*** Wei_Liu_ has quit IRC | 13:13 | |
*** mkumatag has left #openstack-qa | 13:13 | |
*** jacky-zhang has quit IRC | 13:13 | |
*** jacky-zhang has joined #openstack-qa | 13:14 | |
*** salv-orlando has quit IRC | 13:16 | |
openstackgerrit | Alexander Gubanov proposed openstack/tempest: Change comments and description for minimum_basic test https://review.openstack.org/246483 | 13:16 |
*** salv-orlando has joined #openstack-qa | 13:16 | |
*** yamamoto has joined #openstack-qa | 13:17 | |
*** mkoderer has quit IRC | 13:18 | |
*** shausy has quit IRC | 13:21 | |
*** mkoderer has joined #openstack-qa | 13:22 | |
*** yamamoto has quit IRC | 13:22 | |
*** jacky-zhang has quit IRC | 13:23 | |
*** tnguyen1 has joined #openstack-qa | 13:23 | |
*** dpaterson has quit IRC | 13:25 | |
openstackgerrit | Vasyl Saienko proposed openstack-dev/devstack: Add configure_provision_netowrk function https://review.openstack.org/248074 | 13:26 |
openstackrecheck | Console logs not available after 15:01s for gate-tempest-dsvm-postgres-full-juno 242346,9,3f95273 | 13:27 |
*** achanda has quit IRC | 13:28 | |
*** maht has joined #openstack-qa | 13:29 | |
*** aix has joined #openstack-qa | 13:30 | |
*** dave-mccowan has joined #openstack-qa | 13:30 | |
*** Wei_Liu has joined #openstack-qa | 13:30 | |
*** achanda has joined #openstack-qa | 13:31 | |
*** maht has quit IRC | 13:34 | |
*** markvoelker has joined #openstack-qa | 13:35 | |
*** achanda has quit IRC | 13:37 | |
*** achanda has joined #openstack-qa | 13:38 | |
*** Triveni has joined #openstack-qa | 13:40 | |
*** maht has joined #openstack-qa | 13:41 | |
openstackgerrit | Yuriy Yekovenko proposed openstack/tempest: Add new tempest test "RebuildInstanceWithVolume" https://review.openstack.org/182365 | 13:41 |
openstackgerrit | liusheng proposed openstack/tempest: Change tests to adapt alarm spliting https://review.openstack.org/202418 | 13:44 |
*** tmatsu has joined #openstack-qa | 13:49 | |
*** salv-orlando has quit IRC | 13:52 | |
*** salv-orl_ has joined #openstack-qa | 13:52 | |
*** annemccormick has joined #openstack-qa | 13:53 | |
*** regXboi has joined #openstack-qa | 13:53 | |
*** tmatsu has quit IRC | 13:54 | |
*** dkranz has joined #openstack-qa | 13:55 | |
*** ranger81 has joined #openstack-qa | 13:58 | |
*** jaypipes has quit IRC | 13:59 | |
openstackrecheck | Console logs not available after 14:49s for gate-tempest-dsvm-large-ops 238358,30,86194e7 | 14:01 |
*** ranger81 has quit IRC | 14:02 | |
*** nicholasgoracke has quit IRC | 14:04 | |
*** binbincong has joined #openstack-qa | 14:06 | |
*** dpaterson has joined #openstack-qa | 14:11 | |
*** achanda has quit IRC | 14:11 | |
*** stevemar_ has joined #openstack-qa | 14:13 | |
*** aojea has quit IRC | 14:13 | |
*** achanda has joined #openstack-qa | 14:13 | |
*** itsuugo has joined #openstack-qa | 14:16 | |
openstackrecheck | Console logs not available after 14:48s for gate-cinder-pep8 247977,2,598292a | 14:16 |
*** mriedem has joined #openstack-qa | 14:16 | |
*** salv-orl_ has quit IRC | 14:17 | |
*** itsuugo has quit IRC | 14:20 | |
*** salv-orlando has joined #openstack-qa | 14:21 | |
*** dwalleck has joined #openstack-qa | 14:21 | |
*** itsuugo has joined #openstack-qa | 14:22 | |
*** dwalleck has quit IRC | 14:26 | |
*** bauwser has left #openstack-qa | 14:26 | |
*** artom has joined #openstack-qa | 14:26 | |
*** achanda has quit IRC | 14:26 | |
openstackrecheck | Console logs not available after 14:52s for gate-tempest-dsvm-neutron-full 242513,12,ca944bf | 14:31 |
*** itsuugo has quit IRC | 14:33 | |
*** akshai has joined #openstack-qa | 14:35 | |
*** itsuugo has joined #openstack-qa | 14:37 | |
*** grafuls__ has quit IRC | 14:38 | |
*** SridharG has left #openstack-qa | 14:40 | |
*** zz_dimtruck is now known as dimtruck | 14:41 | |
*** dansmith is now known as superdan | 14:41 | |
*** achanda has joined #openstack-qa | 14:44 | |
openstackrecheck | Console logs not available after 14:58s for gate-grenade-dsvm-multinode 202673,32,baa8365 | 14:46 |
*** aix has quit IRC | 14:47 | |
*** aix has joined #openstack-qa | 14:49 | |
openstackgerrit | David Paterson proposed openstack/tempest: Migrate verify-tempest-config to new cliff cli framework https://review.openstack.org/247240 | 14:50 |
openstackgerrit | David Paterson proposed openstack/tempest: Add run_stress to cliff-based cli framework https://review.openstack.org/240399 | 14:50 |
*** itsuugo has quit IRC | 14:55 | |
*** rbak has joined #openstack-qa | 14:56 | |
*** itsuugo has joined #openstack-qa | 14:57 | |
*** _dpaterson has joined #openstack-qa | 14:58 | |
openstackrecheck | Console logs not available after 14:44s for gate-tempest-dsvm-ironic-agent_ssh 247988,1,f056c96 | 15:00 |
*** boris-42 has joined #openstack-qa | 15:01 | |
*** yamamoto has joined #openstack-qa | 15:01 | |
*** dpaterson has quit IRC | 15:02 | |
*** yamamoto has quit IRC | 15:07 | |
*** stevemar_ has quit IRC | 15:10 | |
*** aalam has joined #openstack-qa | 15:10 | |
*** e0ne has quit IRC | 15:11 | |
openstackrecheck | Console logs not available after 14:54s for gate-nova-pep8 248029,1,3271345 | 15:15 |
*** krtaylor has joined #openstack-qa | 15:16 | |
*** yamamoto has joined #openstack-qa | 15:17 | |
*** maht has quit IRC | 15:18 | |
*** ccneill has joined #openstack-qa | 15:19 | |
*** yamamoto has quit IRC | 15:21 | |
openstackgerrit | Vasyl Saienko proposed openstack-dev/devstack: Add configure_provision_netowrk function https://review.openstack.org/248074 | 15:21 |
openstackgerrit | Jordan Pittier proposed openstack/tempest: Scenarios: cleanup class scope variable usage https://review.openstack.org/248136 | 15:23 |
*** aalam has quit IRC | 15:24 | |
*** rbrndt has joined #openstack-qa | 15:25 | |
*** vgridnev has quit IRC | 15:26 | |
openstackgerrit | Ramy Asselin proposed openstack-infra/elastic-recheck: Disable InsecurePlatform Warnings https://review.openstack.org/247069 | 15:30 |
*** k4n0 has quit IRC | 15:32 | |
openstackrecheck | Console logs not available after 16:32s for gate-nova-python27 246299,3,8ee5e7c | 15:32 |
*** ccneill has quit IRC | 15:33 | |
*** e0ne has joined #openstack-qa | 15:33 | |
*** rcernin has quit IRC | 15:34 | |
*** yamahata has joined #openstack-qa | 15:35 | |
*** nithyag_ has quit IRC | 15:36 | |
*** ccneill has joined #openstack-qa | 15:36 | |
openstackgerrit | Martin Hickey proposed openstack-dev/devstack: Neutron: Use generated configuration files if available https://review.openstack.org/204722 | 15:39 |
*** itsuugo has quit IRC | 15:40 | |
*** maht has joined #openstack-qa | 15:52 | |
*** stevemar_ has joined #openstack-qa | 15:52 | |
*** Wei_Liu has quit IRC | 15:53 | |
openstackgerrit | John Warren proposed openstack/tempest: Split out Neutron floating IPs client https://review.openstack.org/246520 | 15:56 |
openstackrecheck | Console logs not available after 14:45s for gate-nova-pep8 246298,4,d1d9cf0 | 15:56 |
*** itsuugo has joined #openstack-qa | 15:57 | |
*** e0ne_ has joined #openstack-qa | 15:57 | |
*** e0ne has quit IRC | 15:58 | |
*** svasheka has quit IRC | 15:58 | |
*** stevemar_ has quit IRC | 15:58 | |
*** ranger81 has joined #openstack-qa | 15:59 | |
*** stevemar_ has joined #openstack-qa | 15:59 | |
*** austin81 has joined #openstack-qa | 15:59 | |
*** rcernin has joined #openstack-qa | 16:00 | |
*** rcernin is now known as rcernin|dinner | 16:00 | |
*** Triveni has quit IRC | 16:00 | |
*** nicholasgoracke has joined #openstack-qa | 16:05 | |
*** svasheka has joined #openstack-qa | 16:05 | |
*** ranger81 has quit IRC | 16:06 | |
*** SridharG has joined #openstack-qa | 16:07 | |
*** binbincong has quit IRC | 16:07 | |
*** nicholasgoracke has quit IRC | 16:09 | |
openstackrecheck | Console logs not available after 14:59s for gate-tempest-dsvm-postgres-full 247692,2,fdb70d5 | 16:11 |
*** kbaikov has quit IRC | 16:15 | |
openstackgerrit | Merged openstack/stackviz: Removed unused settings.py. https://review.openstack.org/247202 | 16:16 |
*** armax has joined #openstack-qa | 16:18 | |
*** ranger81 has joined #openstack-qa | 16:22 | |
*** itsuugo has quit IRC | 16:23 | |
*** itsuugo has joined #openstack-qa | 16:24 | |
openstackgerrit | Joseph Lanoux proposed openstack/tempest: Migrate scenario tests ssh-auth-strategy https://review.openstack.org/225575 | 16:24 |
*** hop|2 has quit IRC | 16:25 | |
openstackrecheck | Console logs not available after 14:58s for gate-devstack-bashate 248048,1,817584b | 16:26 |
*** stevemar_ has quit IRC | 16:26 | |
*** ranger81 has quit IRC | 16:26 | |
openstackgerrit | Merged openstack/stackviz: Switch to eslint. https://review.openstack.org/247220 | 16:28 |
*** woodster_ has joined #openstack-qa | 16:29 | |
glauco___ | mtreinish: do you have an idea of when you will release a newer version of subunit2sql? | 16:32 |
*** glauco___ is now known as glauco | 16:32 | |
mtreinish | glauco: likely next week. I need to do a little prep work in the repo around some of the changes from the new migration (docs and stuff) | 16:33 |
*** armax has quit IRC | 16:34 | |
*** mylu has joined #openstack-qa | 16:34 | |
mtreinish | glauco: we also have to time it well because the migration is very long running. As soon as I push it'll trigger the migration | 16:34 |
mtreinish | and update the version on all the services using it | 16:34 |
*** jlanoux has quit IRC | 16:34 | |
mtreinish | so I've got to coordinate with infra before I push it | 16:34 |
*** nadya_ has quit IRC | 16:37 | |
*** mylu has quit IRC | 16:38 | |
*** itsuugo has quit IRC | 16:38 | |
*** sabeen1 has joined #openstack-qa | 16:39 | |
mtreinish | glauco: I'll likely shoot to do it next friday to let the migration run over the weekend | 16:39 |
*** stevemar_ has joined #openstack-qa | 16:39 | |
*** jecarey has joined #openstack-qa | 16:40 | |
openstackrecheck | Console logs not available after 14:52s for gate-tempest-dsvm-postgres-full-juno 247988,1,2a4f9a4 | 16:41 |
*** jlanoux has joined #openstack-qa | 16:41 | |
*** rcernin|dinner is now known as rcernin | 16:42 | |
*** stevemar_ has quit IRC | 16:44 | |
*** dims_ has joined #openstack-qa | 16:44 | |
openstackgerrit | Daniel Mellado proposed openstack/tempest: [WIP] Split out keystone tenant client https://review.openstack.org/248170 | 16:44 |
*** dims has quit IRC | 16:44 | |
*** mylu has joined #openstack-qa | 16:44 | |
*** yamamoto has joined #openstack-qa | 16:44 | |
*** stevemar_ has joined #openstack-qa | 16:45 | |
*** jecarey has quit IRC | 16:45 | |
*** jecarey has joined #openstack-qa | 16:46 | |
mtreinish | mkoderer: when you get a sec, I'd appreciate your view on this branch: https://review.openstack.org/#/c/216303/4 | 16:47 |
*** mylu has quit IRC | 16:48 | |
*** mylu has joined #openstack-qa | 16:48 | |
*** ranger81 has joined #openstack-qa | 16:49 | |
*** yamamoto has quit IRC | 16:49 | |
*** mylu has quit IRC | 16:50 | |
*** mylu_ has joined #openstack-qa | 16:50 | |
*** jecarey has quit IRC | 16:50 | |
*** itsuugo has joined #openstack-qa | 16:51 | |
openstackgerrit | Merged openstack-dev/devstack: Fedora 23 supported https://review.openstack.org/247384 | 16:57 |
*** dtantsur is now known as dtantsur|afk | 16:57 | |
*** e0ne_ has quit IRC | 16:58 | |
*** stevemar_ has quit IRC | 16:59 | |
*** stevemar_ has joined #openstack-qa | 17:00 | |
*** nic has joined #openstack-qa | 17:01 | |
*** armax has joined #openstack-qa | 17:02 | |
*** ifarkas has quit IRC | 17:04 | |
*** stevemar_ has quit IRC | 17:04 | |
*** jlanoux has quit IRC | 17:05 | |
*** nadya_ has joined #openstack-qa | 17:06 | |
openstackrecheck | Console logs not available after 15:14s for gate-tempest-dsvm-ironic-agent_ssh 248056,2,1c0093a | 17:06 |
*** rossella_s has quit IRC | 17:07 | |
*** rossella_s has joined #openstack-qa | 17:08 | |
*** jordanP has quit IRC | 17:09 | |
*** jordanP has joined #openstack-qa | 17:10 | |
*** rbak has quit IRC | 17:10 | |
*** sabeen3 has joined #openstack-qa | 17:12 | |
*** sabeen1 has quit IRC | 17:12 | |
*** mfalatic has joined #openstack-qa | 17:12 | |
*** mylu_ has quit IRC | 17:16 | |
*** mylu has joined #openstack-qa | 17:16 | |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: remove precise from the supported list https://review.openstack.org/246973 | 17:19 |
*** TuanNguyen has quit IRC | 17:19 | |
*** bnemec has quit IRC | 17:20 | |
sdague | mtreinish: ^^ rebased after colliding with the add fc23 bit | 17:21 |
sdague | we should also land the liberasurecode bit as notmyname would like it in - https://review.openstack.org/#/c/246601/ | 17:21 |
*** Swami has joined #openstack-qa | 17:21 | |
*** luqas__ has quit IRC | 17:22 | |
*** maht has quit IRC | 17:23 | |
openstackrecheck | Console logs not available after 13:29s for gate-tempest-dsvm-postgres-full 248076,1,9d27a51 | 17:23 |
*** luqas has joined #openstack-qa | 17:23 | |
*** rbak has joined #openstack-qa | 17:24 | |
*** gfidente is now known as gfidente|afk | 17:27 | |
*** luqas has quit IRC | 17:28 | |
*** bnemec has joined #openstack-qa | 17:30 | |
*** wuhg has quit IRC | 17:31 | |
*** nic has quit IRC | 17:32 | |
*** nic has joined #openstack-qa | 17:33 | |
*** ajmiller_ is now known as ajmiller | 17:35 | |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-full 215154,4,3de3f26 | 17:36 |
*** devananda has quit IRC | 17:44 | |
*** jasonsb has quit IRC | 17:44 | |
*** devananda has joined #openstack-qa | 17:45 | |
*** mylu has quit IRC | 17:46 | |
*** mylu has joined #openstack-qa | 17:46 | |
openstackrecheck | Console logs not available after 13:24s for gate-grenade-dsvm 248074,1,99eb2c1 | 17:50 |
*** mylu has quit IRC | 17:51 | |
*** dwalleck has joined #openstack-qa | 17:51 | |
*** dwalleck has quit IRC | 17:51 | |
*** zhangjn has quit IRC | 17:51 | |
*** yamahata has quit IRC | 17:52 | |
*** jasonsb has joined #openstack-qa | 17:54 | |
*** hitalia has joined #openstack-qa | 18:00 | |
*** SridharG has left #openstack-qa | 18:00 | |
*** mylu has joined #openstack-qa | 18:00 | |
*** mylu has quit IRC | 18:01 | |
*** achanda has quit IRC | 18:01 | |
*** mylu has joined #openstack-qa | 18:03 | |
*** jordanP has quit IRC | 18:03 | |
openstackrecheck | Console logs not available after 13:29s for gate-tempest-dsvm-full-juno 246483,3,7d75325 | 18:04 |
*** dwalleck has joined #openstack-qa | 18:04 | |
*** dims has joined #openstack-qa | 18:05 | |
*** austin81 has left #openstack-qa | 18:06 | |
*** dims_ has quit IRC | 18:06 | |
*** jordanP has joined #openstack-qa | 18:06 | |
*** jordanP has quit IRC | 18:06 | |
SpamapS | mtreinish: your daily slow migration update: 94 million rows inserted | 18:06 |
SpamapS | mtreinish: are we just going to wait until next week to kick off the prod migration? | 18:07 |
*** shardy has quit IRC | 18:08 | |
*** mylu has quit IRC | 18:09 | |
*** mylu has joined #openstack-qa | 18:09 | |
*** aix has quit IRC | 18:10 | |
*** e0ne has joined #openstack-qa | 18:11 | |
*** mylu has quit IRC | 18:11 | |
*** itsuugo has quit IRC | 18:11 | |
*** mylu has joined #openstack-qa | 18:12 | |
*** mriedem has quit IRC | 18:13 | |
*** mylu has quit IRC | 18:14 | |
*** itsuugo has joined #openstack-qa | 18:14 | |
*** mylu has joined #openstack-qa | 18:15 | |
*** TuanNguyen has joined #openstack-qa | 18:17 | |
*** safchain has quit IRC | 18:17 | |
*** mylu_ has joined #openstack-qa | 18:17 | |
openstackrecheck | Console logs not available after 13:28s for gate-nova-pep8 232554,13,9edebfd | 18:17 |
*** mriedem has joined #openstack-qa | 18:18 | |
*** mylu has quit IRC | 18:18 | |
*** cody-somerville has quit IRC | 18:18 | |
*** cody-somerville has joined #openstack-qa | 18:20 | |
*** TuanNguyen has quit IRC | 18:20 | |
*** e0ne has quit IRC | 18:22 | |
*** achanda has joined #openstack-qa | 18:26 | |
*** dwalleck has quit IRC | 18:27 | |
*** dwalleck has joined #openstack-qa | 18:28 | |
openstackrecheck | Console logs not available after 13:33s for gate-nova-pep8 247729,3,8478b06 | 18:31 |
*** itsuugo has quit IRC | 18:31 | |
*** nadya__ has joined #openstack-qa | 18:32 | |
*** itsuugo has joined #openstack-qa | 18:33 | |
*** rbak has quit IRC | 18:33 | |
*** nadya_ has quit IRC | 18:34 | |
*** e0ne has joined #openstack-qa | 18:34 | |
*** mylu_ has quit IRC | 18:39 | |
*** mylu has joined #openstack-qa | 18:39 | |
*** edmondsw has joined #openstack-qa | 18:39 | |
*** tmatsu has joined #openstack-qa | 18:43 | |
*** rbrndt has quit IRC | 18:44 | |
*** itsuugo has quit IRC | 18:44 | |
*** jbernard has quit IRC | 18:44 | |
openstackrecheck | Console logs not available after 13:23s for gate-grenade-dsvm-multinode 202418,16,7007388 | 18:44 |
*** rbak has joined #openstack-qa | 18:45 | |
*** stevemar_ has joined #openstack-qa | 18:46 | |
*** tmatsu has quit IRC | 18:48 | |
*** stevemar_ has quit IRC | 18:48 | |
*** stevemar_ has joined #openstack-qa | 18:48 | |
*** itsuugo has joined #openstack-qa | 18:49 | |
*** jecarey has joined #openstack-qa | 18:50 | |
*** jecarey has quit IRC | 18:50 | |
*** jecarey has joined #openstack-qa | 18:50 | |
*** jecarey has quit IRC | 18:50 | |
*** jecarey has joined #openstack-qa | 18:51 | |
*** jecarey_ has joined #openstack-qa | 18:51 | |
*** salv-orl_ has joined #openstack-qa | 18:54 | |
*** jecarey has quit IRC | 18:55 | |
*** e0ne has quit IRC | 18:57 | |
*** salv-orlando has quit IRC | 18:57 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-full-juno 182365,17,e1366b2 | 18:58 |
*** sabeen3 has quit IRC | 19:03 | |
*** ranger81 has left #openstack-qa | 19:04 | |
*** jordanP has joined #openstack-qa | 19:11 | |
openstackrecheck | Console logs not available after 13:31s for gate-nova-pep8 215917,15,e1984c4 | 19:11 |
*** jordanP has quit IRC | 19:12 | |
*** stevemar_ has quit IRC | 19:13 | |
*** mylu has quit IRC | 19:13 | |
*** jordanP has joined #openstack-qa | 19:14 | |
*** stevemar_ has joined #openstack-qa | 19:16 | |
*** jacky-zhang has joined #openstack-qa | 19:19 | |
*** jacky has joined #openstack-qa | 19:19 | |
*** jacky is now known as Guest16659 | 19:20 | |
*** sabeen1 has joined #openstack-qa | 19:20 | |
*** mylu has joined #openstack-qa | 19:21 | |
*** Guest16659 has quit IRC | 19:24 | |
*** jacky-zhang has quit IRC | 19:24 | |
openstackrecheck | Console logs not available after 13:27s for gate-swift-pep8 243040,4,212931c | 19:25 |
*** Swami has quit IRC | 19:31 | |
openstackgerrit | Morgan Fainberg proposed openstack-dev/devstack: No longer support configuring keystone under eventlet https://review.openstack.org/229112 | 19:33 |
*** achanda has quit IRC | 19:34 | |
mtreinish | SpamapS: yeah I think so, there are still a few little things that need to land before we can do it | 19:38 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-lxc 240611,1,e216d54 | 19:38 |
mtreinish | SpamapS: if we can get all those bits landed today we can still do it | 19:38 |
mtreinish | but next week seems more feasible | 19:39 |
*** dkranz has quit IRC | 19:40 | |
*** yamahata has joined #openstack-qa | 19:41 | |
*** rbrndt has joined #openstack-qa | 19:42 | |
*** mylu has quit IRC | 19:46 | |
*** mylu has joined #openstack-qa | 19:46 | |
*** regXboi has quit IRC | 19:46 | |
*** regXboi has joined #openstack-qa | 19:47 | |
*** achanda has joined #openstack-qa | 19:48 | |
*** mylu has quit IRC | 19:51 | |
*** gfidente|afk has quit IRC | 19:52 | |
openstackrecheck | Console logs not available after 13:24s for gate-grenade-dsvm-neutron 247678,1,592572e | 19:52 |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: install ebtables locking workaround https://review.openstack.org/248234 | 19:55 |
*** dkranz has joined #openstack-qa | 19:55 | |
openstackgerrit | Matthew Treinish proposed openstack/tempest: Add ostestr tox jobs https://review.openstack.org/170270 | 19:55 |
sdague | mtreinish: so the only fail on ebtables in the last day is tempest on kilo / juno jobs | 19:55 |
sdague | https://review.openstack.org/248234 is the kilo backport of the hack | 19:56 |
mtreinish | sdague: well I'm starting to kill the juno jobs: https://review.openstack.org/247866 | 19:56 |
sdague | juno will get deleted soon enough we don't care | 19:56 |
sdague | mtreinish: +A | 19:56 |
mtreinish | sdague: I fast approved your kilo backport | 19:57 |
*** mylu has joined #openstack-qa | 19:57 | |
mtreinish | sdague: if you're looking at project config changes this fixes a bug mriedem found: https://review.openstack.org/247832 | 19:57 |
*** mylu has quit IRC | 20:02 | |
*** mylu has joined #openstack-qa | 20:02 | |
*** mylu has quit IRC | 20:02 | |
*** mylu has joined #openstack-qa | 20:02 | |
sdague | +A | 20:03 |
*** nadya__ has quit IRC | 20:03 | |
openstackrecheck | Console logs not available after 13:26s for gate-grenade-dsvm 173885,124,651c16e | 20:05 |
*** mylu has quit IRC | 20:05 | |
*** mylu has joined #openstack-qa | 20:07 | |
SpamapS | Oh I just realized with counter-inspection I need to respond to the concerns about putting it in pre/post hooks. Hm | 20:07 |
*** itsuugo has quit IRC | 20:10 | |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-full 221803,5,57f5411 | 20:19 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add reno release notes to subunit2sql https://review.openstack.org/247737 | 20:19 |
mtreinish | SpamapS: ^^^ do you think I need to say anything else in the release notes for the new migration? | 20:20 |
*** dims has quit IRC | 20:23 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-neutron-full 246305,1,d81cf93 | 20:32 |
*** mriedem has quit IRC | 20:33 | |
*** artom has quit IRC | 20:38 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-full-ceph 246476,3,e468a3e | 20:46 |
*** jecarey_ has quit IRC | 20:53 | |
*** achanda has quit IRC | 20:53 | |
*** jasonsb has quit IRC | 20:56 | |
*** achanda has joined #openstack-qa | 20:56 | |
*** itsuugo has joined #openstack-qa | 20:59 | |
openstackrecheck | Console logs not available after 13:29s for gate-horizon-pep8 188134,11,46f0555 | 21:00 |
*** glauco has quit IRC | 21:02 | |
*** openstackstatus has quit IRC | 21:02 | |
*** openstack has joined #openstack-qa | 21:05 | |
-cameron.freenode.net- [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp | 21:05 | |
*** mylu has quit IRC | 21:07 | |
*** rossella_s has quit IRC | 21:07 | |
*** mylu has joined #openstack-qa | 21:07 | |
*** rossella_s has joined #openstack-qa | 21:08 | |
*** mylu has quit IRC | 21:11 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-dsvm-full-juno 248136,1,e69f2ca | 21:13 |
*** mylu has joined #openstack-qa | 21:25 | |
openstackrecheck | Console logs not available after 13:34s for gate-devstack-bashate 248074,2,eb5c70b | 21:27 |
*** gszasz has quit IRC | 21:30 | |
*** jbernard has joined #openstack-qa | 21:31 | |
*** stevemar_ has quit IRC | 21:31 | |
*** mylu has quit IRC | 21:31 | |
*** annemccormick has quit IRC | 21:32 | |
*** mylu has joined #openstack-qa | 21:32 | |
*** mylu_ has joined #openstack-qa | 21:33 | |
*** mylu has quit IRC | 21:33 | |
*** jecarey has joined #openstack-qa | 21:33 | |
*** jecarey has quit IRC | 21:37 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-full-juno 246483,3,8f7ff83 | 21:40 |
*** jordanP has quit IRC | 21:41 | |
SpamapS | mtreinish: I'll check it out shortly. | 21:45 |
*** mriedem has joined #openstack-qa | 21:46 | |
*** rcernin has quit IRC | 21:50 | |
mtreinish | SpamapS: cool, thanks | 21:53 |
openstackrecheck | Console logs not available after 13:26s for gate-glance-python27 238358,30,9564a9a | 21:54 |
*** gabriel has joined #openstack-qa | 21:55 | |
*** _dpaterson has quit IRC | 22:00 | |
SpamapS | mtreinish: reviewed | 22:01 |
SpamapS | mtreinish: the run_id going away seems like an oversight that we should correct | 22:02 |
openstackgerrit | Merged openstack-dev/devstack: Add liberasurecode-dev as a swift dependency https://review.openstack.org/246601 | 22:02 |
SpamapS | mtreinish: even if nobody used it up until now.. these ints should be entirely private. | 22:02 |
*** dave-mccowan has quit IRC | 22:03 | |
*** mylu_ has quit IRC | 22:05 | |
SpamapS | also only 16 million more records | 22:05 |
SpamapS | :-P | 22:05 |
*** mylu has joined #openstack-qa | 22:05 | |
SpamapS | | Innodb_rows_inserted | 105120271 | | 22:06 |
SpamapS | | Innodb_rows_read | 233603750 | | 22:06 |
SpamapS | that has me thinking maybe this insert..select method was not the most efficient. :-P | 22:06 |
*** mylu_ has joined #openstack-qa | 22:07 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-pep8 247729,4,31618c5 | 22:07 |
*** mylu has quit IRC | 22:07 | |
SpamapS | | Innodb_data_read | 1635304132608 | | 22:08 |
SpamapS | | Innodb_data_written | 69638543360 | | 22:08 |
*** itsuugo has joined #openstack-qa | 22:13 | |
*** dimtruck is now known as zz_dimtruck | 22:14 | |
*** regXboi has quit IRC | 22:16 | |
*** yamahata has quit IRC | 22:18 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full 239364,11,ce32c28 | 22:21 |
mtreinish | SpamapS: we're getting there | 22:21 |
mtreinish | SpamapS: sure we can easily change the migration to preserve the uuids as a separate column | 22:21 |
SpamapS | mtreinish: I think renaming the current id to 'uuid' instead of dropping it would suffice. | 22:22 |
mtreinish | I used run.id for sql2subunitbecause it was the only unique identifier in the runs table | 22:22 |
mtreinish | SpamapS: wfm | 22:22 |
SpamapS | mtreinish: I'm just thinking from a user perspective.. that is clearly a feature that is needed. | 22:22 |
SpamapS | mtreinish: so I think I know why this is reading more than I had expected it to | 22:23 |
SpamapS | mtreinish: I forgot that runs_new doesn't have an index on the old id column. | 22:23 |
openstackgerrit | Merged openstack-dev/devstack: install ebtables locking workaround https://review.openstack.org/248234 | 22:23 |
SpamapS | mtreinish: so instead of walking through test_runs sequentially, looking up runs_new.new_id by that, it is going through every run+test unique combo and looking up all the test_runs rows for that. | 22:24 |
SpamapS | mtreinish: so... 8GB instead of 4GB will actually have a marked improvement on that | 22:24 |
SpamapS | as hit rates will be much higher | 22:24 |
mtreinish | SpamapS: cool, maybe it won't be so bad when we do it for real then :) | 22:25 |
SpamapS | mtreinish: as Grandpa says, you can wish in one hand.... | 22:27 |
*** nicholasgoracke has joined #openstack-qa | 22:28 | |
*** dkranz has quit IRC | 22:31 | |
*** yamahata has joined #openstack-qa | 22:32 | |
openstackrecheck | Console logs not available after 13:29s for gate-tempest-dsvm-neutron-full 212102,37,28ba3d3 | 22:34 |
openstackgerrit | Clint 'SpamapS' Byrum proposed openstack-infra/devstack-gate: Use os-collect-counters when appropriate https://review.openstack.org/248275 | 22:40 |
openstackrecheck | Console logs not available after 13:30s for gate-tempest-dsvm-full 248151,1,a76397c | 22:48 |
*** auggy has quit IRC | 22:50 | |
*** josh6627 is now known as jhesketh | 22:51 | |
*** krtaylor has quit IRC | 22:55 | |
openstackrecheck | Console logs not available after 13:32s for gate-tempest-dsvm-postgres-full 248116,1,f5ccff8 | 23:01 |
*** stevemar has joined #openstack-qa | 23:03 | |
*** stevemar_ has joined #openstack-qa | 23:04 | |
*** stevemar_ has quit IRC | 23:04 | |
*** krtaylor has joined #openstack-qa | 23:08 | |
*** sabeen1 has quit IRC | 23:08 | |
*** itsuugo has quit IRC | 23:12 | |
*** jhesketh has quit IRC | 23:13 | |
openstackrecheck | Console logs not available after 13:32s for gate-nova-pep8 215917,16,4daac55 | 23:15 |
*** jhesketh has joined #openstack-qa | 23:15 | |
*** gabriel has left #openstack-qa | 23:20 | |
openstackrecheck | Console logs not available after 13:27s for gate-tempest-dsvm-neutron-full 240399,10,7beaa03 | 23:28 |
*** rbak has quit IRC | 23:33 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add reno release notes to subunit2sql https://review.openstack.org/247737 | 23:34 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add back uuid column for runs table https://review.openstack.org/248289 | 23:34 |
mtreinish | SpamapS: ^^^ I modified the migration to preserve the run uuid | 23:34 |
*** markvoelker has quit IRC | 23:34 | |
mtreinish | I also took care of adding the compat shim into sql2subunit in the same patch | 23:35 |
mtreinish | just seemed easier that way | 23:35 |
SpamapS | mtreinish: I think uuid needs an index | 23:39 |
SpamapS | mtreinish: otherwise, woot | 23:39 |
openstackgerrit | Tim Buckley proposed openstack/stackviz: Allow sharing of selected item by page URL. https://review.openstack.org/248293 | 23:39 |
mtreinish | SpamapS: ok, cool. I wasn't sure about that, but it's a 1 liner (well unless postgres or sqlite gets in the way and makes it 2) | 23:39 |
SpamapS | mtreinish: also, shell should probably make use of that API call for a --run-uuid option | 23:39 |
*** ccneill has quit IRC | 23:41 | |
*** ccneill has joined #openstack-qa | 23:41 | |
mtreinish | SpamapS: to provide a uuid? I'm not sure I get what that opt will do | 23:41 |
SpamapS | mtreinish: or actually, just make --run-id use it | 23:41 |
openstackrecheck | Console logs not available after 13:21s for gate-nova-pep8 232554,14,943ffac | 23:42 |
*** apevec has quit IRC | 23:42 | |
*** mylu_ has quit IRC | 23:43 | |
mtreinish | SpamapS: oh, right I forgot that there was an option to provide it. I'll respin with both fixes | 23:43 |
*** nicholasgoracke has quit IRC | 23:51 | |
openstackrecheck | Console logs not available after 13:26s for gate-grenade-dsvm-neutron 182365,17,b61f9be | 23:55 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add reno release notes to subunit2sql https://review.openstack.org/247737 | 23:59 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add back uuid column for runs table https://review.openstack.org/248289 | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!