Wednesday, 2014-06-25

*** harlowja has quit IRC00:00
*** malini1 has joined #openstack-qa00:11
devanandamtreinish: hi! long reply to your comment on 100989 (move ironic api tests to admin/) just posted.00:15
devanandamtreinish: fwiw, i'm inclined to just copy-paste that to the ML as it seems like this will be useful for a wider audience00:16
openstackgerritA change was merged to openstack/tempest: Added swift CLI test cases  https://review.openstack.org/9638600:19
mtreinishdevananda: so I think the disconnect here is the assumption that your api will only ever be used by other openstack services00:22
mtreinishmy comment was that if you have an api surface that you guarentee to be a stable interface you need really do a full path test using auth and everything00:22
mtreinishand it should work for any ironic deployment00:22
mtreinishit's fair game in an api test to allocate resources from another service if you need them passed into the api call00:23
boris-42mtreinish hey there00:24
boris-42mtreinish could you pls review spec about auto conf generation https://review.openstack.org/#/c/94473/ ?00:25
boris-42mtreinish sorry for big delay was quite busy around tons of other stuff00:25
mtreinishboris-42: yeah, I'll take a look tomorrow (it's getting kind of late here)00:25
mtreinishsure no worries00:25
boris-42mtreinish hm ) here is 4:25 am lol=)00:26
mtreinishboris-42: we just have different schedules I guess :)00:26
boris-42mtreinish 24/7 is my=)00:26
boris-42mtreinish btw I finished work on osprofiler00:27
boris-42mtreinish https://github.com/stackforge/osprofiler it has finally good API00:27
boris-42mtreinish and I released it today, so when it get in we can as well try to integrate it with tempest00:27
mtreinishboris-42: cool I'll take a look00:27
boris-42mtreinish great00:27
boris-42mtreinish seems like I should sleep a bit00:27
boris-42mtreinish see you00:28
devanandamtreinish: "... used by other openstack services" for deployment00:31
mtreinishdevananda: my concern is that just using a fake driver with a limited subset of the api isn't going to cover a wide enough area of the api server00:31
*** Sukhdev has joined #openstack-qa00:31
devanandamtreinish: we assume an operator will do CRUD operations on nodes00:31
devanandamtreinish: so those api tests are exercising what an operator will do00:31
devanandamtreinish: whereas the scenario tests exercise what another service (nova) will do00:32
*** dmorita has joined #openstack-qa00:32
mtreinishdevananda: see the scenario tests are for testing functionality I agree, but what about the api that nova is using for example00:32
mtreinishwhere will that be tested00:32
devanandamtreinish: that is tested in the scenario test00:33
devanandawell, exercised00:33
mtreinishyeah that's the difference00:33
devanandamtreinish: so the only thing nova does which the CRUD tests don't do is "set provision state"00:33
mtreinishthat's why we have the split00:33
devanandawhich is illogical out side of the context of a scenario test, since it requires neutron, keustone, and glance (and, well, nova)00:33
devanandanova also performs a lot of R/U operations, which are tested in the api tests00:34
*** jaypipes has quit IRC00:35
mtreinishdevananda: so ok, it's a small surface. My concern is that since you're using ironicclient (I'm assuming) in nova that you won't neccesarily catch api bugs with just the scenario tests00:35
*** matsuhashi has joined #openstack-qa00:35
mtreinishand it doesn't provide you as good protection against breaking the interface00:35
devanandathe other confusing part is that creating a new resource in ironic - -within a running cloud -- will affect that cloud00:35
devanandathe idea of running C..D operations against ironic's APi with a real driver (eg, pxe_ipmitool) and against a cloud that has users ... well ... i dont see how that could work today00:36
devanandabecause nova will likely see the new resources *too* and start scheduling work on them00:36
devanandaeven while tempest is trying to do API tests00:36
mtreinishdevananda: there is no tenant support, or other binning of nodes?00:37
devanandain the future, IFF ironic were to add tenant<->node mapping (which we dont plan to) then such a test could be possible00:37
devanandacorrect00:37
devanandait's been loosely discussed, but i'm not aware of anyone with an interest in implementing that00:38
*** Sukhdev has quit IRC00:38
devanandait doesn't fit RS or RH or HP use cases00:38
devananda(that I'm aware of)00:38
mtreinishwell you're the one who would know :)00:39
mtreinishso I guess it doesn't really make sense to run tests that directly hit the ironic api in a real deployment. But, I still think it's a useful thing for the gate00:39
devanandadefinitely00:40
devanandahence the fake driver00:40
mtreinishthe only use case I see for a real deployment is validation when you first bring up ironic (before other things are running)00:40
devanandamtreinish: I can see that as well. Without any other services, the only hardware-specific things which one could curerntly test are "set power state" and "set console state"00:42
devanandathe API for those can be tested with a fake driver just the same as with a real one -- the only difference is whether real hardware is going to complain if you input an incorrect password00:43
*** coolsvap is now known as coolsvap|afk00:44
mtreinishdevananda: heh, are we going to be able to test that case in the api tests with the fake driver?00:45
devanandamtreinish: exception paths? we test some already with the fake driver: https://github.com/openstack/ironic/blob/master/ironic/drivers/modules/fake.py00:46
devanandamtreinish: but i'm sure we could test more00:46
devanandamtreinish: woops, meant to link to line 9300:47
mtreinishyeah but I meant the rest api surface when that gets raised00:49
devanandahttps://review.openstack.org/#/c/74065/11/tempest/api/baremetal/test_nodes_negative.py00:50
devanandamtreinish: so we need more tempest api tests to cover those exceptions -- some are proposed, eg ^00:50
devanandamtreinish: but my point is, we can test them without real hardware00:50
mtreinishbecause the api tests have 2 goals ensuring api consitency in a real deployment and making sure the api did what it said it did (which we are a little sloppy/hand wavy about right now)00:50
mtreinishdevananda: that's fine I just need to think about it a bit more because part of tempest's design philosphy is working on any deployment00:51
devanandamtreinish: how would it ensure api consistency in real deployments for admin-only apis?00:52
devanandamtreinish: hmm... so testing exception paths essentially binds the implementation of the fake driver to the API tests. I'm guessing that's not what you would want00:54
devananda*by depending on specific requests to trigger those exceptions00:54
mtreinishyeah that was my point before, that feels very unit test like00:55
devanandabut the same would be true for any other driver00:55
devanandaright ... it does00:55
mtreinishthink of the refstack use case for example. Sure some of the response fields will be deployment specific but it can still check the others00:55
devanandayep. been trying to keep that in mind00:55
devanandabut actually ALL of the fields will be deployment specific00:55
mtreinishheh, ok check response codes and that the keys look right in the json :)00:56
*** morganfainberg is now known as morganfainberg_Z00:57
devanandamtreinish: :)00:57
mtreinishhow hard would it be to figure out the response given a large set of config information00:57
mtreinishis that feasible?00:57
devanandamtreinish: i guess another way to put my concern is that, if you introduce a dependency on real hardware (regardless of which driver is used) then the tests will have non-deterministic properties00:58
devanandabecuase, well, hardware fails non-deterministically00:58
mtreinishdevananda: so does everything in openstack...00:58
devanandalol :)00:58
devanandatouche00:58
mtreinishall I think we need to do is make sure that we can run the tests on real hardware. Not that it's a good idea00:59
devanandamtreinish: given prior knowledge of all the hardware information, management credentials, etc, yes -- i could predict the output of a "node show $UUID" command00:59
mtreinishand we probably should document that because of the nature of what ironic is doing thinks will probably not work00:59
mtreinishdevananda: would those be a reasonable thing to put in config (or some other loadable file)01:00
devanandamtreinish: "the keys to the kingdom" ?01:00
mtreinishand just have it default to the fake driver01:00
mtreinishyeah something like that, like have an option ironic-info.yaml config option. If it's present load it and use it for figuring out the api responses01:01
mtreinishif it's not just use the fake drivers values01:01
devanandamtreinish: so if it were possible to put, in some config file, all the actual hardware info, then run the API tests -- even if they dont actually deploy to that hardware01:01
devanandathat would be acceptable?01:02
mtreinishwhat do you mean by don't actually deploy to that hardware. If ironic is running won't and you send it the api commands won't it do that?01:03
devanandaas i said above, "set provision state" can't be successfully run without other services present (nova, glance, neutron, keustone)01:03
mtreinishahh, ok yeah that would be fine then01:04
devanandamost, if not all, other API end points could be exercised in isolation, i think01:04
mtreinishI guess that will always just be a gap in the api tests01:04
devanandanot that they do anyuthing01:04
devanandato the hardware01:04
devanandai really don't understand the point still :(01:05
mtreinishI think I should take a look at the ironic code too, just to get a better feel for what it's doing. Because I'm just curious what would be required to directly test set provision state01:05
devanandamtreinish: take a look at what the nova.virt.ironic driver does prior to callign set provision state :)01:06
devanandamtreinish: there's interaction with neutron (plugging VIFs based on physical MACs retrieved from Ironic), passing a glance image ref to Ironic, and passing in the instane properties from the nova flavor01:06
devanandathen during provisining, ironic depends on neutron to provide DHCP BOOT response pointing to the right tftp location01:07
devanandaand downloading the images from glance, etc01:07
mtreinishyeah but I still think we could have a test, albeit a long one that does all of that.01:08
devanandaheh, sure01:08
adam_goh man01:08
devanandabut then that test is very heavily dependent upon the nova and glance apis01:09
* adam_g reads scrollback01:09
devanandaadam_g: hi!01:09
devanandayea, long scrolback...01:09
mtreinishyeah, and we test those in tempest too so they should be stable01:09
mtreinishand we can mark the test as requiring all those services01:09
mtreinishmy concern with skipping the thing the api that does the cool stuff is it's basically tying all of ironic to be a nova driver01:09
mtreinishnot that is necessarily a bad thing01:10
adam_gwhy would we be testing what the nova driver is doing internally?01:10
devanandaslightly off topic, but i'll circle back -- if tempest is not able to verify the result of an action externally (eg, via soem other means than the service's API), is that still a valid test?01:11
adam_gRE: testing other drivers with loadable node details, as a next step: could we add a CONF.baremetal.enabled_driver option that defaults to 'fake', skip the API tests if that value is not in $supported_drivers and later add IPMI testing with node details loaded from an external file?01:11
devanandain looking at tempest/api/compute it looks like tempest ssh's into the instance to verify each change01:11
adam_gi think tripleo will be hitting this when they get to the point of running tempest against seed + undercloud. and they already have their kingdom keys in a json file, and i imagine they might be resist enabling the fake driver by default01:12
mtreinishadam_g: because it's a requirement for booting a node which is an exposed part of ironic's api, so at least ideally it should be tested01:12
devanandamtreinish: but most of ironic's api tests just ask ironic for the result and compare to the input01:12
mtreinishdevananda: yeah it's valid test, not the best test but I don't think we'd block it01:12
devanandamtreinish: ack01:12
devanandamtreinish: all of our current api tests do that ^, fwiw01:13
devanandamtreinish: also to note, deploying an instance with ironic in the gate takes ~5 minutes01:13
devanandamtreinish: because nested virt PXE boot is sllooooowww01:13
devanandaso "ssh into isntance to verify $thing" really can't be done in the gate very much for Ironic01:13
devanandaon hardware it's actually *slower* in many cases01:14
devanandabecause there are two POST cycles per deploy01:14
mtreinishoh really 2, heh I could imagine just one being slower01:15
devanandas/because/and/01:15
clarkbdevananda: so slow01:15
devanandaclarkb: hi!01:15
clarkbI ran our puppet in nested virt a couple weeks ago01:15
clarkbtakes like 45 minutes01:15
devanandaheh01:15
adam_gmtreinish, right, i guess its just a weird corner of the API thats really hard to test. having tempest emulate everything thats currently required of the driver kinda seems like we'd be making the test dependent on the stability of the drivers internals, or the other way01:16
devanandamtreinish: oh, and ^ would also tie the tempest test to a specific driver01:17
mtreinishwait the nova driver is dependent on the ironic driver too01:18
devanandas/tempest to/tempest config to/01:19
devanandait's late and i'm typing too fast... sorry01:19
adam_gnova driver == ironic driver01:20
devanandanova.virt.ironic != ironic's node.driver01:20
devanandawords are hard01:20
mtreinishno worries, I think it's a bit too late for me too01:20
adam_gdoh, right01:20
adam_ghaha01:20
mtreinishdevananda: so honestly I'm fine with the current approach, I just don't want to say that will be it. *Long* term I'd like to find away to do all this magic01:21
mtreinishand I just don't want to box us into the corner too hard01:22
mtreinishjust so we can get something gating quickly01:22
adam_gill add a config flag to specify enabled drivers01:22
adam_gi really think we'll extend to real ipmi driver coverage with tripleo01:22
mtreinishadam_g: ok cool01:22
devanandaadam_g: that'll be interesting01:23
devanandaadam_g: power control only? or a full deploy w/o nova?01:23
adam_gdevananda, just the basic API stuff we have now. i know the goal is to have a tempest run against each stage of the ci (seed, undercloud, overcloud)01:23
adam_gi gotta run now. cheers01:25
*** GMann has joined #openstack-qa01:25
devanandaadam_g: cheers, thanks!01:25
*** jyuso has joined #openstack-qa01:27
mtreinishdevananda: so I've got run too, but I want to make sure we've got a direction moving forward01:28
*** harlowja_ has quit IRC01:28
devanandamtreinish: thanks for sticking around to chat01:29
devanandamtreinish: i think we're making progress, though i also think this raised some questions for me about our current tempest coverage01:29
*** oomichi has quit IRC01:29
mtreinishyeah I need to start looking at things a bit more closely too01:29
devanandai think "enable running the api tests o neral hardware" is reasonably achievable01:31
devananda*on real01:32
*** harlowja has joined #openstack-qa01:32
mtreinishyeah I think so too01:32
devanandaeven if not advisable01:32
mtreinishuser beware :)01:32
*** oomichi has joined #openstack-qa01:33
*** nati_ueno has quit IRC01:40
openstackgerritBrant Knudson proposed a change to openstack/tempest: Add test for GET /v3  https://review.openstack.org/10197701:46
*** malini1 has quit IRC01:47
*** nosnos has joined #openstack-qa01:51
*** nosnos has quit IRC01:56
*** nosnos has joined #openstack-qa01:57
*** morganfainberg_Z is now known as morganfainberg02:06
*** jyuso has quit IRC02:18
*** jyuso has joined #openstack-qa02:18
*** jamielennox is now known as jamielennox|away02:22
*** dims__ has quit IRC02:28
*** openstackgerrit has quit IRC02:31
*** mitz_ has joined #openstack-qa02:36
*** malini1 has joined #openstack-qa02:44
*** dims__ has joined #openstack-qa02:54
*** dims__ has quit IRC02:58
*** harlowja is now known as harlowja_away03:04
*** malini1 has quit IRC03:25
*** nati_ueno has joined #openstack-qa03:25
*** GMann has quit IRC03:29
*** weshay has quit IRC03:34
*** GMann has joined #openstack-qa03:37
*** matsuhashi has quit IRC03:42
*** matsuhashi has joined #openstack-qa03:43
*** matsuhashi has quit IRC03:47
*** nosnos has quit IRC03:51
*** dims__ has joined #openstack-qa03:55
*** Poornima has joined #openstack-qa03:55
*** mmaglana has quit IRC03:58
*** mmaglana has joined #openstack-qa03:58
*** dims__ has quit IRC03:59
*** mmaglana has quit IRC04:03
*** beisner has quit IRC04:07
*** nati_ueno has quit IRC04:08
*** nati_ueno has joined #openstack-qa04:09
*** mlavalle has quit IRC04:25
*** yfried has quit IRC04:25
*** beisner has joined #openstack-qa04:27
*** nati_ueno has quit IRC04:29
*** matsuhashi has joined #openstack-qa04:31
*** Manishanker has joined #openstack-qa04:35
*** nosnos has joined #openstack-qa04:37
*** Sukhdev has joined #openstack-qa04:44
*** SridharG has joined #openstack-qa04:52
raiesdevananda: hi04:54
*** dims__ has joined #openstack-qa04:56
*** bkopilov has joined #openstack-qa04:56
*** ajc_ has joined #openstack-qa04:59
*** yfried has joined #openstack-qa04:59
*** dims__ has quit IRC05:00
*** Manishanker has quit IRC05:05
*** morganfainberg is now known as morganfainberg_Z05:14
*** psharma has joined #openstack-qa05:16
*** markmcclain has joined #openstack-qa05:17
*** nati_ueno has joined #openstack-qa05:17
*** markmcclain1 has joined #openstack-qa05:18
*** coolsvap|afk is now known as coolsvap05:19
*** markmcclain has quit IRC05:22
*** rwsu has quit IRC05:24
*** nati_ueno has quit IRC05:26
*** ildikov has quit IRC05:27
*** amitpp has joined #openstack-qa05:31
*** tkammer has joined #openstack-qa05:33
*** markmcclain1 has quit IRC05:39
*** amitpp has quit IRC05:42
*** ildikov has joined #openstack-qa05:54
*** Sukhdev has quit IRC05:56
*** dims__ has joined #openstack-qa05:56
*** mmaglana has joined #openstack-qa05:58
*** chandan_kumar has quit IRC06:00
*** dims__ has quit IRC06:01
*** mmaglana has quit IRC06:03
*** afazekas_ has joined #openstack-qa06:13
*** psharma_ has joined #openstack-qa06:42
*** nati_ueno has joined #openstack-qa06:42
*** Poornima|mtg has joined #openstack-qa06:42
*** catohornet has quit IRC06:42
*** kashyap has quit IRC06:45
*** psharma__ has joined #openstack-qa06:45
*** Poornima|afk has joined #openstack-qa06:45
*** psharma has quit IRC06:45
*** Poornima has quit IRC06:45
*** SridharG has quit IRC06:46
*** kashyap has joined #openstack-qa06:48
*** Poornima|mtg has quit IRC06:48
*** psharma_ has quit IRC06:49
*** kashyap` has joined #openstack-qa06:52
*** psharma_ has joined #openstack-qa06:52
*** Poornima|mtg has joined #openstack-qa06:52
*** yrabl has joined #openstack-qa06:54
*** psharma__ has quit IRC06:55
*** kashyap has quit IRC06:56
*** Poornima|afk has quit IRC06:56
*** dims__ has joined #openstack-qa06:57
*** dims__ has quit IRC07:04
*** kashyap` is now known as kashyap07:05
*** jordanP has joined #openstack-qa07:14
*** gfidente has joined #openstack-qa07:23
*** dkorn has quit IRC07:33
*** SridharG has joined #openstack-qa07:34
*** Longgeek has joined #openstack-qa07:37
*** Longgeek has quit IRC07:37
*** Longgeek has joined #openstack-qa07:37
*** ajo|mac has joined #openstack-qa07:39
*** jpich has joined #openstack-qa07:50
*** zz_johnthetubagu is now known as johnthetubaguy07:53
*** dkorn has joined #openstack-qa07:54
*** ajo|mac has quit IRC07:56
*** ajo|mac has joined #openstack-qa07:57
*** matsuhashi has quit IRC07:57
*** matsuhashi has joined #openstack-qa07:58
*** ajo|mac has quit IRC07:58
*** mmaglana has joined #openstack-qa07:58
*** tosky has joined #openstack-qa07:59
*** evgenyf has joined #openstack-qa08:00
*** mmaglana has quit IRC08:03
*** matsuhashi has quit IRC08:05
*** jlibosva has joined #openstack-qa08:05
kashyapafazekas, afazekas_ When you're around -- are you able to launch DevStack instances w/ today's git on F20?08:06
kashyapDetails here -- http://lists.openstack.org/pipermail/openstack-dev/2014-June/038619.html08:07
* kashyap off to make some lunch08:07
*** kashyap is now known as kashyap_lunch08:07
*** qba73 has joined #openstack-qa08:08
afazekas_kashyap: yes08:09
afazekas_looks like you do not have some yaml dev lib08:10
*** matsuhashi has joined #openstack-qa08:10
yfriedeezhova: here?08:10
*** qba73 has quit IRC08:15
*** qba73 has joined #openstack-qa08:15
afazekas_kashyap: do you know which module does it wanted to rebuild ? Do you have libyaml ?08:16
afazekas_kashyap: did you used a cloud image ?08:17
*** matsuhashi has quit IRC08:17
*** matsuhashi has joined #openstack-qa08:18
kashyap_lunchafazekas_, I'm still making lunch. . .08:24
kashyap_lunchafazekas_, Use cloud image for? As a devstack VM?08:24
kashyap_lunchOr Nova guest?08:24
* afazekas_ some items on my endless todo list: ofagent become broken around 20th; n-cell fails more tests with qpid than with rabbit; the lvm commands prints warnings if you do not start/restart lvmetad (otherwise working08:24
kashyap_lunchI'm using the cloud image as Nova guest.08:24
afazekas_kashyap_lunch: as devstack vm,  it probbaly be default has the libyaml08:25
afazekas_kashyap_lunch: Again did you installed the libyaml ? do you know which package was tried to be compiled08:26
*** qba73 has quit IRC08:26
kashyap_lunchI created the DevStack VM like that:08:27
kashyap_lunch$ virt-builder fedora-20 -o devstack.qcow2 --update --selinux-relabel --format qcow2 --size 60G08:27
kashyap_lunchafazekas, I'll check in a few, otherwise things will burn on the stove :-)08:27
kashyap_lunchafazekas_, Grep for "compile" here -- http://kashyapc.fedorapeople.org/temp/devstacklog-25JUN2014.txt08:29
afazekas_PyYAML-3.10-9.fc20.x86_64 was installed08:30
*** matsuhashi has quit IRC08:31
*** Ju_ has quit IRC08:34
afazekas_PyYAML>=3.1.0 in the global req08:35
afazekas_PyYAML-3.10-9.fc20.x86_64 is on the cloud image08:36
afazekas_kashyap_lunch: you can try to add PyYAML or the build time deps for PyYAML at devstack/files/*/general08:38
*** andreaf has joined #openstack-qa08:39
*** mkollaro has joined #openstack-qa08:45
*** nosnos has quit IRC08:45
*** eezhova has quit IRC08:46
kashyap_lunchThanks for the suggestion.08:48
afazekas_kashyap_lunch: cloud-init depends on PyYAML so it should be installed on every cloud-image at the 0th second, I guess your image is not a cloud image08:49
kashyap_lunchafazekas_, Right, it is not. I don't see PyYAML on the DevStack VM, will manually install and rerun it08:49
*** openstackgerrit has joined #openstack-qa08:53
*** eezhova has joined #openstack-qa08:57
openstackgerritSridhar Gaddam proposed a change to openstack/qa-specs: Spec for IPv6 API testing parity in tempest  https://review.openstack.org/10246808:57
*** dmorita has quit IRC09:02
*** dims has joined #openstack-qa09:02
*** tkammer has quit IRC09:04
*** dims has quit IRC09:08
*** kashyap_lunch is now known as kashyap09:10
kashyapafazekas_, Yes, manually installing & rerunning ./stack.sh of-course removes that compile error09:12
openstackgerritwingwj proposed a change to openstack/tempest: Add negative tests for server_group  https://review.openstack.org/10247209:14
*** jyuso has quit IRC09:18
*** tkammer has joined #openstack-qa09:21
*** amotoki has quit IRC09:24
kashyapI wonder why DevStack install the package if it didn't find it  on the system. /me goes to look at source09:28
*** harikav has joined #openstack-qa09:29
*** evgenyf has quit IRC09:30
*** dANOKELOFF has joined #openstack-qa09:31
dANOKELOFFHi, anyone can help me with this error please ? https://gist.github.com/anonymous/eb6880e973b2baf1206609:31
*** nati_ueno has quit IRC09:31
*** safchain has joined #openstack-qa09:32
*** nosnos has joined #openstack-qa09:36
*** matsuhashi has joined #openstack-qa09:36
*** jlanoux has joined #openstack-qa09:41
*** nihilifer has joined #openstack-qa09:43
*** nihilifer has left #openstack-qa09:44
*** evgenyf has joined #openstack-qa09:45
afazekas_kashyap: similar trick can be used with the f20 image if you would like to use a cloud image outside to a cloud: https://qa.ubuntu.com/2012/06/19/local-ubuntu-vm-provisioning-with-cloud-init/09:46
afazekas_basically you need to create a cdrom image which contains your ssh public key09:47
kashyapafazekas_, Yes, I already use something like -- http://rwmj.wordpress.com/2013/12/10/creating-a-cloud-init-config-disk-for-non-cloud-boots/09:49
kashyapThanks for the URL09:49
afazekas_BTW: now possible to build images inside open-stack, without the kexec trick ..09:49
*** dANOKELO_ has joined #openstack-qa09:52
*** dANOKELOFF has quit IRC09:53
kashyapUsing disk-image-builder?09:54
kashyapafazekas_,  ^09:54
*** matsuhashi has quit IRC09:54
kashyapFor some reason I still find virt-builder  _way_ way cleaner and easier for some reason. All my setups use that09:55
*** matsuhashi has joined #openstack-qa09:55
afazekas_disk-image-builder: no , simply using ks09:55
afazekas_kashyap: I just read in the news ARMv8 is coming.. http://www.cavium.com/newsevents_Cavium_Cavium_Expands_Collaboration_with_Fedora_Project_to_Accelerate_ARMv8_Software_Ecosystem.html09:56
*** matsuhas_ has joined #openstack-qa09:57
kashyapafazekas_, Ah, I use Kickstart-based auto install all the time - https://github.com/kashyapc/virt-scripts/blob/master/create-guest-qcow2.bash09:57
*** matsuhashi has quit IRC09:57
kashyapafazekas, Hm, I'm still yet to find some reasonable use case where I can use ARM (along w/ virt. I also see upstream KVM has tons of patches for ARM). If you're more curious, check out Rich Jone's blog post series on ARM09:58
openstackgerritajay proposed a change to openstack/tempest: Improve neutron CLI existing tests  https://review.openstack.org/10170710:05
openstackgerritajay proposed a change to openstack/tempest: Improve nova CLI existing tests  https://review.openstack.org/10176710:07
*** yamahata has quit IRC10:08
openstackgerritajay proposed a change to openstack/tempest: Improve cinder CLI existing tests  https://review.openstack.org/10169410:10
openstackgerritajay proposed a change to openstack/tempest: Add three new CLI tests of sahara  https://review.openstack.org/10078410:11
*** sabeen has quit IRC10:15
*** jpich has quit IRC10:20
*** jpich has joined #openstack-qa10:20
*** matsuhas_ has quit IRC10:28
*** matsuhashi has joined #openstack-qa10:28
*** amitpp has joined #openstack-qa10:28
openstackgerritSridhar Gaddam proposed a change to openstack/tempest: Improve IPV6 parity in Security Group testcases  https://review.openstack.org/9413010:30
*** matsuhashi has quit IRC10:37
*** matsuhashi has joined #openstack-qa10:37
*** GMann has quit IRC10:41
*** gszasz has joined #openstack-qa10:46
*** Manishanker has joined #openstack-qa10:49
openstackgerritKashyap Chamarthy proposed a change to openstack-dev/devstack: Add PyYAML dependency for Fedora-based distros  https://review.openstack.org/10249010:55
*** malini1 has joined #openstack-qa10:59
*** Manishanker has quit IRC11:01
*** dims has joined #openstack-qa11:03
*** dims has quit IRC11:08
*** coolsvap is now known as coolsvap|afk11:11
*** yamahata has joined #openstack-qa11:15
*** dANOKELO_ has quit IRC11:18
*** dims_ has joined #openstack-qa11:19
openstackgerritnayna-patel proposed a change to openstack/tempest: Adds new v3 projects tests to Keystone  https://review.openstack.org/9387711:21
afazekas_eezhova: ping11:21
eezhovaafazekas: pong11:22
*** dims__ has joined #openstack-qa11:22
afazekas_eezhova: can you change the nc command usage to a similar way as I mentioned ?11:23
eezhovaafazekas: sure, I'm working on it right now11:23
afazekas_cool11:24
*** dims_ has quit IRC11:25
eezhovaafazekas: I'll update the path as soon as I test it enough times11:25
eezhova*the patch11:26
*** malini1 has quit IRC11:34
*** yfried_ has joined #openstack-qa11:35
*** yfried has quit IRC11:35
*** SridharG has quit IRC11:36
*** raies has quit IRC11:38
*** Manishanker has joined #openstack-qa11:45
kashyapafazekas_, What would be the impact if I see  Jenkins failures for -- "check-tempest-dsvm-neutron-full (non-voting)"11:51
kashyapDo I spend time debugging it?11:51
*** mwagner_lap has quit IRC11:53
afazekas_kashyap: you can, but usually the failures form the voting ones are more import11:53
afazekas_kashyap: I would like to see the full neutron job voting ASAP11:54
kashyapafazekas_, All voting ones are successful. It's a trivial change -- https://review.openstack.org/#/c/102490/11:54
kashyapI was wondering if that's (adding the explicit PyYAML dep) the right thing to do11:55
afazekas_check-tempest-dsvm-full is failed and voting11:55
kashyapafazekas_, Oops, yeah, was already looking at the logs11:55
kashyapRelated to -- "ERROR:   testr-full: commands failed"11:55
kashyapHmm, seems like a pretty_tox.sh invocation error11:56
kashyaphttp://logs.openstack.org/90/102490/1/check/check-tempest-dsvm-neutron-full/bad3225/console.html#_2014-06-25_11_38_57_75311:57
afazekas_kashyap: BTW: you can try to look up the equivalent package name for other distro , python-yaml seams to one used on ubuntu and opensuse11:58
*** adalbas has joined #openstack-qa11:58
afazekas_kashyap: https://bugs.launchpad.net/nova/+bug/132061711:59
kashyapafazekas_, Okay, let me check. .11:59
kashyapafazekas_, What other distros are you referring to? python-yaml it is -- for both Ubuntu & OpenSuse12:02
kashyapafazekas_, And, what about the above bug? I don't see it relevant to the  "pretty_tox.sh" invocation failure that I'm seeing. Or was that just an FYI?12:04
afazekas_http://logs.openstack.org/90/102490/1/check/check-tempest-dsvm-neutron-full/bad3225/console.html#_2014-06-25_11_38_57_71412:05
afazekas_Details: (ListImageFiltersTestJSON:setUpClass) Image 462a64c3-ceb6-4816-a8bc-6788d08eb8c6 failed to reach ACTIVE status within the required time (196 s). Current status: SAVING.12:05
kashyapYep, noticed that12:06
kashyapI'm not sure where to start debugging this -  ERROR: InvocationError: '/bin/bash tools/pretty_tox.sh (?!.*\\[.*\\bslow\\b.*\\])(^tempest\\.(api|scenario|thirdparty|cli)) --concurrency=4'12:06
afazekas_it is #132061712:06
* kashyap goes to read it with more focus12:06
kashyapAha, yes. just grepped it12:08
kashyapafazekas_, You don't mention the tox failures in the bug?12:08
afazekas_kashyap: because it fails if any of the test cases fails12:10
kashyapafazekas_, I see. Still learning debugging Gate stuff.12:11
kashyapOne more -- I wonder if I should revise the patch - https://review.openstack.org/#/c/102490/ and add the python-yaml for other distributions (apt and rpms-suse too)?12:12
*** weshay has joined #openstack-qa12:17
*** dkranz has joined #openstack-qa12:18
*** amitpp has quit IRC12:19
*** amitpp has joined #openstack-qa12:19
*** amitpp has quit IRC12:22
*** ajc_ has quit IRC12:23
*** dkranz has quit IRC12:27
*** yfried_ has quit IRC12:29
*** dims__ has quit IRC12:31
*** dims__ has joined #openstack-qa12:31
openstackgerritElena Ezhova proposed a change to openstack/tempest: Correct nc command in test_load_balancer_basic  https://review.openstack.org/9806512:37
*** dkranz has joined #openstack-qa12:39
*** tkammer has quit IRC12:41
*** dANOKELOFF has joined #openstack-qa12:42
*** yfried has joined #openstack-qa12:43
*** ekhugen has joined #openstack-qa12:50
*** SridharG has joined #openstack-qa12:50
*** dustins has joined #openstack-qa12:54
*** amitpp has joined #openstack-qa12:58
*** matsuhashi has quit IRC12:59
*** matsuhashi has joined #openstack-qa12:59
*** tkammer has joined #openstack-qa12:59
*** enikanorov_ has quit IRC13:00
*** enikanorov_ has joined #openstack-qa13:00
*** yfried has quit IRC13:04
*** matsuhashi has quit IRC13:04
*** safchain has quit IRC13:06
openstackgerritDina Belova proposed a change to openstack/qa-specs: Add spec for the bp:add-ceilometer-scenario-tests  https://review.openstack.org/9725313:06
openstackgerritDina Belova proposed a change to openstack/qa-specs: Add spec for the bp:add-basic-ceilometer-tests  https://review.openstack.org/9725213:06
*** safchain has joined #openstack-qa13:06
openstackgerritSean Dague proposed a change to openstack-infra/elastic-recheck: add fingerprint for Dump was interrupted bug  https://review.openstack.org/10251713:08
*** matsuhashi has joined #openstack-qa13:10
openstackgerritSean Dague proposed a change to openstack-infra/elastic-recheck: add fingerprint for Dump was interrupted bug  https://review.openstack.org/10251713:11
*** Manishanker has quit IRC13:12
*** mriedem has joined #openstack-qa13:15
*** mwagner_lap has joined #openstack-qa13:16
*** salv-orlando_ has joined #openstack-qa13:18
*** salv-orlando has quit IRC13:20
*** salv-orlando_ is now known as salv-orlando13:20
*** harikav has quit IRC13:21
*** malini1 has joined #openstack-qa13:26
*** Obulpathi has joined #openstack-qa13:28
openstackgerritA change was merged to openstack-infra/elastic-recheck: add fingerprint for Dump was interrupted bug  https://review.openstack.org/10251713:30
*** amitpp has quit IRC13:30
openstackgerritBrant Knudson proposed a change to openstack/tempest: Add test for GET /v3  https://review.openstack.org/10197713:30
*** Obulpathi has quit IRC13:32
*** Obulpathi has joined #openstack-qa13:33
*** matsuhashi has quit IRC13:33
*** Obulpathi has quit IRC13:33
*** matsuhashi has joined #openstack-qa13:33
*** Obulpathi has joined #openstack-qa13:35
*** markmcclain has joined #openstack-qa13:36
openstackgerritDina Belova proposed a change to openstack/qa-specs: Add spec for the bp:add-ceilometer-scenario-tests  https://review.openstack.org/9725313:36
*** Obulpathi has quit IRC13:36
*** Obulpathi has joined #openstack-qa13:37
*** markmcclain1 has joined #openstack-qa13:37
*** matsuhashi has quit IRC13:38
*** openstackrecheck has joined #openstack-qa13:38
*** markmcclain1 has quit IRC13:38
*** markmcclain has quit IRC13:40
*** psharma_ has quit IRC13:43
*** nosnos has quit IRC13:43
*** coolsvap|afk is now known as coolsvap13:43
*** matsuhashi has joined #openstack-qa13:44
*** matsuhashi has quit IRC13:44
*** matsuhashi has joined #openstack-qa13:45
malini1dkranz: Can you take a look at https://review.openstack.org/#/c/94944/ when you get a chance?13:49
*** matsuhashi has quit IRC13:49
malini1I have addressed you review comments from the previous patch set13:49
*** yfried has joined #openstack-qa13:53
*** yfried has quit IRC13:54
*** yfried has joined #openstack-qa13:54
openstackrecheckConsole logs not available after 13:35s for check-grenade-dsvm-partial-ncpu 98065,2,0ac0e5913:55
*** nati_ueno has joined #openstack-qa13:55
*** rbak has joined #openstack-qa14:05
*** ildikov has quit IRC14:06
openstackrecheckConsole logs not available after 13:21s for gate-sahara-pep8 101845,3,0732dde14:08
*** nikhil___ has joined #openstack-qa14:10
openstackgerritStanislaw Pitucha proposed a change to openstack-dev/devstack: Don't try to regenerate existing ssl certificates  https://review.openstack.org/10253514:11
nikhil___mtreinish: o/14:11
*** zhiyan has joined #openstack-qa14:12
mtreinishnikhil___: ok, so you want to add glance tests for image data? Is that just uploading a binary data and verifying you get the right thing back?14:12
nikhil___mtreinish: heh, to tell you the truth, I'm not completely sure what needs to happen. However, yes from whatever info was recieved that seems accurate.14:13
nikhil___mtreinish: trying to find the link to the wiki which specifies the requirements14:14
nikhil___was hoping someone here would point me out :)14:14
* nikhil___ googling14:14
mtreinishnikhil___: this one?: https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Glance_Gap_Coverage14:14
nikhil___mtreinish: yeah! Thank you.14:15
*** nati_ueno has quit IRC14:16
mtreinishyeah so it should be pretty simple, we just need to add a couple api tests to tempest.api.image that instead of using random strings for the image just send random binary data14:16
mtreinishbecause in the test we won't have access to real images14:16
mtreinishor at least that's how I interpret it14:17
nikhil___(side-questions for later, so that I don't forget to ask) am assuming high-bit-set refers to high-order bit set14:17
mtreinishyeah I'm assuming so14:17
nikhil___mtreinish: makes sense, so random binary data should be "produced" on the local disk?14:18
nikhil___or download from cirros links?14:18
nikhil___(or something of that order)14:18
mtreinishso I think downloading soemthing locally and uploading that is probably not what we want to do14:19
mtreinishdownloads are prone to failure in gating14:19
mtreinishit doesn't have to be a real image14:19
openstackgerritHenry Gessau proposed a change to openstack-dev/devstack: Don't install openvswitch-datapath-dkms on newer kernels  https://review.openstack.org/10228414:19
mtreinishI think it's more just a test of sending and recieving arbitrary data14:19
mtreinishnikhil___: what we have now: http://git.openstack.org/cgit/openstack/tempest/tree/tempest/api/image/v2/test_images.py#n5514:20
nikhil___mtreinish: makes sense, do we have access to a /*/tmp/ folder where data can be stored? (sorry, for being noobish to gating)14:20
*** Poornima|mtg has quit IRC14:20
*** sileht has quit IRC14:20
* nikhil___ looking14:20
mtreinishyeah you can make a tempfile if needed, but we can just do it in memory I think14:20
*** hemanth_ has joined #openstack-qa14:21
sdaguenikhil___: we actually have a cirros image14:21
mtreinishsdague: isn't it already in glance though?14:21
*** gszasz has quit IRC14:21
nikhil___mtreinish: gotcha, just trying to confirm for performance purposes as the new rally tests keep a stored image for some of the tests14:21
sdaguemtreinish: sure, there is no reason why it couldn't be a second time14:21
sdagueeither pull / push14:21
openstackrecheckConsole logs not available after 13:21s for check-tempest-dsvm-full 89897,39,1f4550314:22
nikhil___sdague: nice, is that /var/lib/images folder like devstack ?14:22
sdagueor just have specifying location for it14:22
mtreinishsdague: yeah I guess that would work too, pull it from glance and upload a new copy of the image14:22
nikhil___hmm, makes sense14:22
sdaguebecause we make you specify a valid image somewhere by id14:22
sdagueso pull / push on it would be good14:23
nikhil___mtreinish: sdague : only thing concerning is that pulling tests failing might lead to pushing failing.14:23
sdaguenikhil___: yeh, but if you can't pull an image from glance... that seems like a problem14:23
sdaguebecause that's kind of it's job14:23
*** Poornima|mtg has joined #openstack-qa14:23
nikhil___:D true that14:23
*** sileht has joined #openstack-qa14:23
zhiyannikhil___: can we use v2 direct url to access that image directly instead of pull it14:23
nikhil___zhiyan: good idea, may be we can separate those tests out for v2 as we would need v1 compliant14:24
sdaguezhiyan: that won't work from outside a cloud though, right14:24
sdaguedon't assume tempest is running on a cloud node, even though we do that in the gate14:24
mtreinishyeah, doing it through the api would probably be for the best14:25
nikhil___mtreinish: sdague: zhiyan : would love it to use existing data from somewhere if it's stored for common use. If that's not the case, will try to see options..14:26
sdaguenikhil___: yeh, we could require specifying the image in the config as well14:26
nikhil___(my failing sincere attempt of keeping things independent)14:26
openstackgerritMatt Riedemann proposed a change to openstack/qa-specs: Check minimum version for CLI tests  https://review.openstack.org/9998414:27
nikhil___sdague: yeah, that would be nice.14:27
zhiyannikhil___: as sdague said probably we can ask tester set a image path in config file?14:27
zhiyanor a image-id? and pull/push14:28
*** mlavalle has joined #openstack-qa14:28
mtreinishzhiyan: we already have 2 image ids in the config14:28
nikhil___zhiyan: assuming you'r referring to tester as a module and not a real person ( ? )14:28
sdaguezhiyan: yeh, honesty, the more I think about it, I think a path is good14:28
nikhil___sdague: +114:29
zhiyansdague: cool. path option+push, and keeping things independent14:29
mtreinishsdague: that is basically what we already do for the image location tests. Specify an http address for a remote image14:29
mtreinishso I think that's fine14:29
nikhil___mtreinish: do we test for all the glance stores, do you know?14:29
mtreinishnikhil___: In the gate?14:30
*** ildikov has joined #openstack-qa14:30
mtreinishnikhil___: the answer is probably no either way14:31
openstackgerritStanislaw Pitucha proposed a change to openstack-dev/devstack: Do a proper tls/ca cleanup in unstack  https://review.openstack.org/10254214:31
nikhil___mtreinish: yeah, if we test filesystem store for glance then it would be easier to get some image data14:31
openstackgerritHenry Gessau proposed a change to openstack-dev/devstack: Don't install openvswitch-datapath-dkms on newer kernels  https://review.openstack.org/10228414:32
* nikhil___ will try to spend some time looking into tempest tests for glance and not bug people here14:32
mtreinishnikhil___: honestly the glance tests are pretty simple/limited in tempest14:34
nikhil___cool14:35
openstackrecheckConsole logs not available after 13:21s for check-tempest-dsvm-full 91011,32,1e74b3114:35
*** gszasz has joined #openstack-qa14:35
nikhil___Thanks mtreinish sdague zhiyan,  appreciate it!14:36
zhiyannikhil___: sdague mtreinish thanks!14:36
mtreinishnikhil___: heh, I'm not sure I'd say having limited testing is cool :)14:37
mtreinishsure, np14:37
*** sabeen has joined #openstack-qa14:40
nikhil___mtreinish: heh, true that. Was just remarking to finally know about the testing status vs. it's coverage :=] Hope to get it better soon.14:41
*** morganfainberg_Z is now known as morganfainberg14:42
*** zhiyan is now known as zhiyan_14:43
openstackgerritAndrey Kurilin proposed a change to openstack/qa-specs: Automate tempest config generation  https://review.openstack.org/9447314:47
openstackrecheckConsole logs not available after 13:23s for gate-cinder-python26 97091,34,c12850a14:48
*** markmcclain has joined #openstack-qa14:48
*** rwsu has joined #openstack-qa14:49
openstackgerritJoseph Lanoux proposed a change to openstack/tempest: Add skip decorators in test_servers_negative  https://review.openstack.org/10254614:50
openstackgerritMorgan Fainberg proposed a change to openstack-dev/devstack: Use the apache 2.4 ErrorLogFormat directive  https://review.openstack.org/10242514:51
openstackgerritMatt Riedemann proposed a change to openstack-infra/elastic-recheck: Remove old queries for fixed bugs  https://review.openstack.org/10254714:52
*** oomichi has quit IRC14:52
mriedemjogo: so heat unit tests seem to be f'ed14:58
*** Obulpathi has quit IRC14:59
*** mwagner_lap has quit IRC15:00
*** Obulpathi has joined #openstack-qa15:00
openstackgerritenikanorov proposed a change to openstack-infra/elastic-recheck: Add query for bug #1332500  https://review.openstack.org/10255115:00
mriedemjogo: nevermind, they fixed it already15:02
*** yrabl has quit IRC15:02
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-postgres-full 95723,8,06afca615:02
*** tkammer has quit IRC15:02
*** Poornima|mtg has quit IRC15:05
*** dkranz has quit IRC15:05
openstackgerritMatt Riedemann proposed a change to openstack-infra/elastic-recheck: Add query for heat bug 1333556  https://review.openstack.org/10255415:09
*** evgenyf has quit IRC15:10
*** malini1 has quit IRC15:11
*** malini1 has joined #openstack-qa15:12
*** malini1 has quit IRC15:12
*** malini1 has joined #openstack-qa15:13
openstackrecheckConsole logs not available after 13:21s for gate-nova-python26 102522,1,632c57615:15
*** mwagner_lap has joined #openstack-qa15:16
*** dkranz has joined #openstack-qa15:18
openstackgerritenikanorov proposed a change to openstack-infra/elastic-recheck: Add query for bug #1332500  https://review.openstack.org/10255115:21
*** andreaf_ has joined #openstack-qa15:27
openstackgerritenikanorov proposed a change to openstack-infra/elastic-recheck: Add query for neutron bug 1334109  https://review.openstack.org/10255815:28
*** andreaf_ has quit IRC15:28
openstackrecheckConsole logs not available after 13:22s for gate-horizon-python26 91118,32,f85cdbd15:28
*** aimon_ has joined #openstack-qa15:31
openstackgerritJoseph Lanoux proposed a change to openstack/tempest: Add skip decorators in test_servers_negative  https://review.openstack.org/10254615:34
*** ajo|mac has joined #openstack-qa15:39
openstackgerritenikanorov proposed a change to openstack-infra/elastic-recheck: Add query for neutron bug 1334109  https://review.openstack.org/10255815:40
openstackgerritenikanorov proposed a change to openstack-infra/elastic-recheck: Add query for bug #1332500  https://review.openstack.org/10255115:41
openstackrecheckConsole logs not available after 13:21s for check-tempest-dsvm-postgres-full 97996,3,41985b515:42
*** Sukhdev has joined #openstack-qa15:42
*** mmaglana has joined #openstack-qa15:42
*** ajo|mac has quit IRC15:46
*** dkranz has quit IRC15:49
openstackgerritMike Perez proposed a change to openstack-dev/devstack: Default cinder enable_v1_api to true  https://review.openstack.org/10256815:53
openstackrecheckConsole logs not available after 13:41s for gate-trove-pep8 102526,1,0389fd015:56
*** Obulpathi has quit IRC15:57
*** yamahata has quit IRC15:58
*** dANOKELOFF has quit IRC15:59
*** dkranz has joined #openstack-qa16:00
openstackgerritMorgan Fainberg proposed a change to openstack-infra/elastic-recheck: Add query for nova bug 1334345  https://review.openstack.org/10257116:05
*** jlanoux has quit IRC16:06
openstackgerritSean Dague proposed a change to openstack-infra/devstack-gate: add network_sanity_check  https://review.openstack.org/10197616:07
*** malini1 has quit IRC16:08
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 95570,1,174570b16:09
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for heat bug 1333556  https://review.openstack.org/10255416:10
openstackgerritAnita Kuno proposed a change to openstack-infra/elastic-recheck: Clarifies documentation about wildcards in queries  https://review.openstack.org/10257316:10
*** malini|afk has joined #openstack-qa16:11
*** malini has quit IRC16:13
*** malini|afk is now known as malini16:13
*** aimon_ has quit IRC16:15
*** cbader has joined #openstack-qa16:16
openstackgerritStanislaw Pitucha proposed a change to openstack-dev/devstack: Always check keystone using http  https://review.openstack.org/9943316:17
openstackgerritStanislaw Pitucha proposed a change to openstack-dev/devstack: Do a proper tls/ca cleanup in unstack  https://review.openstack.org/10254216:17
openstackrecheckConsole logs not available after 13:21s for gate-ceilometer-python26 102492,2,e9acc3716:22
*** openstackrecheck has quit IRC16:23
*** openstackrecheck has joined #openstack-qa16:23
*** dkorn has quit IRC16:24
*** amotoki has joined #openstack-qa16:26
*** afazekas_ has quit IRC16:26
*** mmaglana has quit IRC16:31
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-postgres-full 99276,3,056cad816:37
*** malini is now known as malini|afk16:38
*** aimon_ has joined #openstack-qa16:43
*** aimon_ has quit IRC16:44
*** aimon_ has joined #openstack-qa16:44
openstackgerritSean Dague proposed a change to openstack-infra/devstack-gate: double up [ for safety  https://review.openstack.org/10072816:49
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 89897,39,c5aed9f16:51
*** malini|afk is now known as malini16:51
*** jordanP has quit IRC16:52
*** mmaglana has joined #openstack-qa16:52
*** malini is now known as malini|afk16:53
*** mwagner_lap has quit IRC16:54
*** malini|afk is now known as malini16:55
*** safchain has quit IRC16:56
*** jpich has quit IRC16:59
openstackrecheckConsole logs not available after 13:23s for check-tempest-dsvm-postgres-full 102347,1,4fe6eef17:04
jogomriedem: isn't it nice when that happens17:08
jogomriedem: although it looks like nova is the only unit tests failing in the gate17:08
*** malini is now known as malini|afk17:13
*** harlowja_away is now known as harlowja17:13
*** malini|afk is now known as malini17:15
*** jaypipes has joined #openstack-qa17:17
*** ChanServ sets mode: +o jaypipes17:17
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-postgres-full 100058,2,9992bcc17:17
*** mkollaro has quit IRC17:19
*** gszasz has quit IRC17:19
*** jlibosva has quit IRC17:21
*** mkollaro has joined #openstack-qa17:25
*** danfinch has joined #openstack-qa17:27
openstackrecheckConsole logs not available after 13:23s for check-tempest-dsvm-postgres-full 92124,6,3ed4acd17:31
*** dkorn has joined #openstack-qa17:36
*** johnthetubaguy is now known as zz_johnthetubagu17:41
*** Sukhdev has quit IRC17:42
*** jaypipes has quit IRC17:44
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 92125,6,6c6b5a417:44
*** jaypipes has joined #openstack-qa17:44
*** ChanServ sets mode: +o jaypipes17:44
*** atiwari has joined #openstack-qa17:48
*** dkorn has quit IRC17:53
*** Obulpathi has joined #openstack-qa17:54
openstackrecheckConsole logs not available after 13:21s for check-tempest-dsvm-full 102480,2,ab2d48f17:58
mroddensdague: the bash8 rename is schedule for this sat. at 1500 UTC btw17:59
mroddeni had/have an experimental change for devstack to use tox but it (obviously) doesn't find all the files yet17:59
sdaguemrodden: cool17:59
sdaguemrodden: I actually have tox changes up for all the shell projects18:00
sdaguewell, devstack, d-g, grenade (which I merged)18:00
*** nati_ueno has joined #openstack-qa18:00
*** Sukhdev has joined #openstack-qa18:02
mroddenoh i saw d-g18:02
mroddeni'll look again18:02
openstackrecheckConsole logs not available after 13:21s for gate-nova-pep8 102563,1,2caa05518:11
*** coolsvap is now known as coolsvap|afk18:11
*** afazekas_ has joined #openstack-qa18:13
*** tosky has quit IRC18:17
openstackrecheckConsole logs not available after 13:22s for gate-trove-pep8 102566,1,5e796e618:24
*** dkorn has joined #openstack-qa18:25
*** mwagner_lap has joined #openstack-qa18:27
*** gszasz has joined #openstack-qa18:27
openstackgerritDoug Hellmann proposed a change to openstack-dev/devstack: Add explicit libkrb5-dev dependency for keystone  https://review.openstack.org/10260018:30
*** morganfainberg_L has quit IRC18:31
openstackrecheckConsole logs not available after 13:22s for check-grenade-dsvm-partial-ncpu 102568,1,856ab4518:38
*** afazekas_ has quit IRC18:41
openstackgerritEmily Hugenbruch proposed a change to openstack/tempest: Add tests for wait_for_server_status  https://review.openstack.org/10260518:47
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-postgres-full 102546,2,8a028b518:51
*** harlowja has quit IRC18:52
*** wingwj has quit IRC19:00
*** wingwj has joined #openstack-qa19:00
*** mwagner_lap has quit IRC19:02
openstackgerritMatt Riedemann proposed a change to openstack-infra/elastic-recheck: Add query for nova libvirt connection reset snapshot bug 1334398  https://review.openstack.org/10260819:03
*** afazekas_ has joined #openstack-qa19:03
*** openstackgerrit has quit IRC19:04
*** Longgeek has quit IRC19:04
openstackrecheckConsole logs not available after 13:21s for gate-cinder-pep8 102145,4,77ed7be19:04
*** Obulpathi has quit IRC19:05
*** openstackgerrit has joined #openstack-qa19:05
*** Longgeek has joined #openstack-qa19:08
openstackgerritMatthew Treinish proposed a change to openstack/tempest: Add network service tag to compute tests  https://review.openstack.org/9999219:08
*** tpatil has joined #openstack-qa19:13
mgagneis there a known transient bug with gate-tempest-dsvm-full and gate-tempest-dsvm-postgres-full?19:15
tpatilCan someone please review this patch https://review.openstack.org/#/c/79549/? Thanks19:15
mgagneCheck passed 3 hours earlier but verify failed: https://review.openstack.org/#/c/91727/...19:15
mtreinishmgagne: http://status.openstack.org/elastic-recheck/19:15
mgagnemtreinish: I've been reverifying multiple times and it fails in numerous ways19:16
mgagnemriedem: with different bug numbers as it failed for different reasons19:17
openstackrecheckConsole logs not available after 13:22s for gate-nova-python26 95723,8,1aab50519:18
*** dustins has quit IRC19:18
*** Sukhdev has quit IRC19:18
*** dustins has joined #openstack-qa19:20
mtreinishmgagne: you asked if there were known bugs, that page lists them all. If you hit a failure not caused by a bug on that list you can open a bug and submit a query so we track it.19:21
mgagnemtreinish: I'm well aware of this page. I rechecked/reverified against 4 different transient bugs so far but unfortunately don't have the competence to fix any of them. I was more or less checking if there was a more major issue in the order of: Yha, don't bother reverifying, it's jammed.19:30
*** Sukhdev has joined #openstack-qa19:31
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 101650,2,2fed0e419:31
mriedemmgagne: bug 1320617 and bug 1334398 are active right now19:33
mriedemactive as in hitting a lot19:33
mriedemso yes you'll be rechecking19:33
mriedemhttp://jogo.github.io/gate/19:33
*** eezhova has quit IRC19:34
openstackgerritEmily Hugenbruch proposed a change to openstack/tempest: Add tests for wait_for_server_status  https://review.openstack.org/10260519:35
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for nova libvirt connection reset snapshot bug 1334398  https://review.openstack.org/10260819:35
*** Obulpathi has joined #openstack-qa19:37
openstackgerritA change was merged to openstack-dev/devstack: Build retry loop for screen sessions  https://review.openstack.org/10100419:37
*** openstackrecheck has quit IRC19:38
*** openstackrecheck has joined #openstack-qa19:38
*** pcrews has quit IRC19:39
*** pcrews_ has joined #openstack-qa19:39
sdaguemgagne: also part of the problem ends up being the aggregate effect19:42
*** Obulpathi has quit IRC19:42
sdaguewhen we've got a hundred little bugs like that, the compounding chance of hitting any of them gets pretty high19:42
mgagnesdague: right. What's mildly infuriating is that different transitent bugs have prevented my (trivial?) change to merge for the past weeks =)19:43
*** ajo|mac has joined #openstack-qa19:44
*** ajo|mac has quit IRC19:44
*** ajo|mac has joined #openstack-qa19:47
sdaguemgagne: yeh, I don't know what to say. OpenStack is a complex system. So if we test for regressions, we find race bugs in openstack itself.19:48
sdagueso it's a balancing game between merging code, and preventing the system from being completely unusable for anyone19:48
openstackgerritMatt Riedemann proposed a change to openstack/tempest: Add caller to v1 image_client wait_for_image_status timeout exception  https://review.openstack.org/10261719:49
mriedemmtreinish: sdague: that should help with e-r fingerprints ^19:49
sdaguemriedem: why?19:50
mriedemsdague: because this isn't good: message:"Time Limit Exceeded!" AND message:"while waiting for active, but we got queued"19:50
mriedemtest_create_backup has been failing but it's not the only thing using that waiter19:50
sdagueok, so that will give you the test class that called it19:50
sdaguebut do you think they are really different bugs?19:50
mriedemsdague: not necessarily, but i'm not seeing other reported bugs in lp on that same failure message19:51
mriedembut would like to avoid a blanket 'timed out b/c of x'19:51
*** tpatil has quit IRC19:51
sdagueok, I'm fine with that19:51
mriedemwhen there are no errors in the screen logs19:51
sdague+219:51
*** andreaf_ has joined #openstack-qa19:53
*** Obulpathi has joined #openstack-qa19:55
openstackrecheckConsole logs not available after 13:25s for check-tempest-dsvm-full 102602,1,a0c1a5c19:55
mtreinishmriedem: I'm more concerned that we have 2 wait_for_image_status() methods19:55
mriedemmtreinish: yeah, i know, that's a bigger refactor19:56
mtreinishsigh, actually 4... (although 2 of them use the common one)19:57
*** sabeen1 has joined #openstack-qa19:58
*** sabeen1 has quit IRC19:58
mtreinishmriedem: would it just be easier to refactor that method to call the one in common.waiters19:58
*** sabeen1 has joined #openstack-qa19:58
mtreinisherr I guess not easily, because it's checking for slightly different exceptions19:59
openstackgerritafazekas proposed a change to openstack-dev/devstack: soft-qemu handling with F20 could image  https://review.openstack.org/9618019:59
mriedemmtreinish: it'd take some time to make sure i didn't miss something19:59
*** sabeen has quit IRC19:59
*** gszasz has quit IRC20:00
openstackgerritafazekas proposed a change to openstack-dev/devstack: soft-qemu handling with F20 could image  https://review.openstack.org/9618020:05
*** openstackgerrit has quit IRC20:05
*** Longgeek has quit IRC20:05
*** dustins has quit IRC20:06
*** openstackgerrit has joined #openstack-qa20:06
*** Obulpathi has quit IRC20:08
openstackrecheckConsole logs not available after 13:22s for check-requirements-integration-dsvm 102584,2,968f4ea20:09
*** Obulpathi has joined #openstack-qa20:12
*** Obulpathi has quit IRC20:12
*** Obulpathi has joined #openstack-qa20:13
mriedemthis fixes a bug that's masking other failures, when dumping console output for a server that times out waiting for state transition or goes to active: https://review.openstack.org/#/c/101362/20:13
mriedemi had fixed the nova v3 client for the same issue, this fixes the v2 xml client20:14
*** malini is now known as malini|afk20:14
openstackgerritafazekas proposed a change to openstack-dev/devstack: soft-qemu handling with F20 could image  https://review.openstack.org/9618020:15
openstackgerritafazekas proposed a change to openstack-dev/devstack: soft-qemu handling with F20 could image  https://review.openstack.org/9618020:15
*** mwagner_lap has joined #openstack-qa20:18
sdagueok, is there any in flight patches on the ssh debug bits?20:19
sdaguelike something that actually adds a ping to the path?20:20
mriedemsdague: i'm not aware of any, mtreinish had a patch to cleanup the ping error message but mostly unrelated i think20:20
sdagueyeh, that's actually a different path than I'm seeing die20:21
mriedemsdague: my most recent theories related where in ec2 testing somehow hitting/causing the leaks20:21
sdaguemriedem: yep20:21
mriedemmikal added the logging but didn't dig into anything since that merged20:21
*** afazekas_ has quit IRC20:21
openstackgerritAdam Gandelman proposed a change to openstack/tempest: Skip baremetal tests if driver not supported  https://review.openstack.org/10262820:21
mriedemso would be good to add some ec2 test tracing to see that network related things are cleaned up properly?20:21
mriedemmaybe also in the ec2 api in nova20:22
mriedemwasn't someone saying awhile back that they had done a bunch of out of tree improvements for ec2 tests in tempest and were going to contribute those back?20:22
openstackrecheckConsole logs not available after 13:23s for check-tempest-dsvm-full 101050,3,ddffc2820:22
mriedemwhen jogo or someone mentioned dropping support20:22
dkranzmtreinish: Why does pretty_tox_serial.sh look so different than pretty_tox.sh?20:24
openstackgerritMatt Riedemann proposed a change to openstack-infra/elastic-recheck: Add query for tempest get_console_output bug 1329563  https://review.openstack.org/10262920:26
mriedemheh, bug 1334398 is now at the top of the e-r status list20:28
openstackgerritSean Dague proposed a change to openstack/tempest: ping before we ssh  https://review.openstack.org/10263320:32
sdaguemriedem: so is 1334398 a nova bug in how we talk to libvirt, or a libvirt bug?20:33
mriedemsdague: well it's weird, it spiked yesterday but then falls off20:33
mriedemyesterday infra moved to trusty which has newer libvirt right?20:33
mriedemthere are other libvirt bugs reported for nova with connection resets20:34
mriedembut they were in suspend flows20:34
mriedemand rescue i think20:34
mriedemmy guess would be libvirt bug20:34
sdaguemriedem: no, it spiked yesterday, and then we have a delay in ES data20:35
sdaguethe flatline is just the blind spot20:35
mriedemoh20:35
mriedemwell then i'd guess libvirt bug since we moved to trusty20:35
mriedemor nova bug with newer libvirt :)20:35
mriedemso basically idk20:35
sdagueright, that was my question :)20:35
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 100950,2,c2add3020:35
jogomriedem: yeah that is correct20:38
jogomriedem: actually those patches are stuck right now20:38
jogolet me show you20:38
mtreinishdkranz: because when I first wrote it there wasn't a path available in pbr to run testr in serial20:38
mtreinishso I had to do what pbr was doing for in the script20:38
dkranzmtreinish: ah, ok. Thanks.20:38
mtreinishit could be refactored to pass the flag to setup.py test to run it in serial20:39
mtreinishbut I haven't seen the need to bother20:39
jogomriedem: http://pastebin.com/raw.php?i=jHRe5n9f20:39
dkranzmtreinish: ok, np20:39
*** andreaf_ has quit IRC20:39
jogolist of patches that need to land before ec2 tempest test can land20:39
jogomriedem: if you want to go through some of them20:40
mriedemjogo: noted, thanks - maybe we bring this in the nova meeting tomorrow20:41
mtreinishmriedem: yeah that's different, that fixes the log level on a retry for the remote command ping. (pinging something when ssh'd into the server)20:41
mriedemi.e. if we think ec2 is causing issues in the gate, and people are providing fixes and better testing, let's get attention on those20:42
mtreinishbecause right now it dumps stack traces on every retry20:42
mriedemjogo: i'll add to the agenda20:42
jogomriedem: thanks20:44
*** tpatil has joined #openstack-qa20:45
*** BobBall is now known as BobBall-Away20:46
mtreinishmriedem: we don't have i8ln setup for the tempest logs. So I don't think using _() buys us anything.20:47
mtreinishunless I'm misunderstanding what that's used for20:47
openstackrecheckConsole logs not available after 13:41s for check-tempest-dsvm-full 99992,2,dee239b20:49
mriedemmtreinish: just used to it now given the logging guidelines20:50
mriedemmtreinish: i wasn't -1 for that20:50
mtreinishalthough we probably should set it up for the tempest logs I guess, it's just not a high prio item20:51
mtreinishmriedem: oops, yeah I see that now, the first comment was -1 the second was 020:52
sdaguemriedem: does your bug *always* show up in _live_snapshot?20:53
*** ajo|mac has quit IRC20:53
mriedemsdague: i moved the e-r query to _snapshot_instance20:54
*** ajo|mac has joined #openstack-qa20:54
mriedemsdague: but from the sample traces i looked at in kibana that's where it was happening20:54
sdaguemriedem: right, but I actually think _live_snapshot is the important thing20:54
sdagueI think it's what actually doesn't work20:54
mriedemi originally had it on _live_snapshot20:54
mriedemthe hits might be the same20:54
mriedemsdague: right now it's 195 in 2 days either way20:55
openstackgerritMatthew Treinish proposed a change to openstack/tempest: Add network service tag to compute tests  https://review.openstack.org/9999220:59
*** ajo|mac has quit IRC21:02
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 102378,1,b9d875321:02
mtreinishdims__: on https://review.openstack.org/#/c/101362/1 what is the default console length if one isn't specified? Is it the whole console output?21:03
*** sabeen1 has quit IRC21:05
flwangmaurosr: piing21:07
maurosrflwang: hey, what's up?21:09
flwangmaurosr: would you mind revisiting my swift patch https://review.openstack.org/99514 ? just add some comments for the case per the other review's comments, thanks21:10
maurosrsure21:10
mroddenmtreinish: had some feedback on your latest patch https://review.openstack.org/#/c/99992/321:12
*** Obulpathi has quit IRC21:13
mtreinishmrodden: heh, ok thanks. I'll add those files21:13
mroddenthere was a compute/servers/test_security_groups_negative as well21:13
mroddeni missed in the comment21:13
mtreinishhopefully I won't do a s/network/negative again like I did on the first 2 revs21:13
*** Obulpathi has joined #openstack-qa21:13
mroddenlol21:13
openstackgerritA change was merged to openstack/tempest: Handle backup not found in test_create_backup  https://review.openstack.org/9869321:14
flwangmaurosr: thank you :)21:14
openstackgerritA change was merged to openstack-dev/devstack: Add explicit libkrb5-dev dependency for keystone  https://review.openstack.org/10260021:14
openstackgerritA change was merged to openstack-dev/devstack: Always check keystone using http  https://review.openstack.org/9943321:14
*** ekhugen has quit IRC21:15
flwangcan any Tempest core bless this https://review.openstack.org/#/c/99514 ? thanks21:16
*** sballe has joined #openstack-qa21:16
openstackrecheckConsole logs not available after 13:23s for check-requirements-integration-dsvm 102362,3,a542f0821:16
*** weshay has quit IRC21:17
mtreinishmrodden: I can't find a test_security_groups_negative in compute/servers did you mean a different one?21:18
mroddenuhmmm21:18
mroddenlet me check21:18
mroddenprobably got confused21:18
mrodden  tempest/api/compute/servers/test_server_addresses_negative.py i think it was21:19
mtreinishyep that's it21:19
mroddenk21:19
mroddenserver_addresses and security groups are basically the same right...21:20
mrodden:)21:20
openstackgerritMatthew Treinish proposed a change to openstack/tempest: Add network service tag to compute tests  https://review.openstack.org/9999221:20
mtreinishmrodden: heh, yeah I guess they are21:20
mtreinishmrodden: ^^^21:21
*** dkranz has quit IRC21:22
*** SridharG has quit IRC21:22
mroddenyeah just looked over it quick21:22
mroddenthats all i could find that was missed21:22
mrodden+121:22
*** HenryG has quit IRC21:23
*** SridharG has joined #openstack-qa21:24
mtreinishI'm always just going to assume some are missing, it's more of a best effort thing21:24
*** cbader has quit IRC21:25
*** harlowja has joined #openstack-qa21:28
openstackrecheckConsole logs not available after 13:23s for check-tempest-dsvm-postgres-full 99370,10,9f1d83821:29
*** Sukhdev has quit IRC21:31
*** Obulpathi has quit IRC21:31
*** jaypipes has quit IRC21:34
*** SridharG has quit IRC21:37
*** SridharG has joined #openstack-qa21:38
*** SridharG has quit IRC21:39
openstackrecheckConsole logs not available after 13:22s for gate-cinder-pep8 101847,4,31176e421:43
*** mmaglana has quit IRC21:50
sdaguemriedem: we don't do i18n in tempest21:52
mriedemsdague: alright, you can ignore the comment or respond with the same, that wasn't my -121:53
sdaguethe -1 was the unneed e?21:53
mriedemsdague: the missing log message var21:54
sdagueoh, right21:54
mriedemLOG.warning('thing %s')21:54
sdagueI deleted too much21:54
openstackgerritSean Dague proposed a change to openstack/tempest: ping before we ssh  https://review.openstack.org/10263321:55
sdaguemriedem: thanks21:55
openstackrecheckConsole logs not available after 13:23s for gate-ceilometer-python26 96944,3,8e219f521:56
openstackgerritMatthew Treinish proposed a change to openstack/tempest: Make unable to ping log messages appropriate level  https://review.openstack.org/9581521:56
*** ajo|mac has joined #openstack-qa21:59
*** dims__ has quit IRC22:01
mtreinishsdague: do we allow ping in our secgroup for testing? I was about to +2 your patch, but I remembered we could be blocking ping22:02
*** nikhil___ is now known as nikhil___|afk22:04
mtreinishI guess when jenkins comes back that will give the answer22:07
sdagueI'm pretty sure we turn on icmp22:07
*** markmcclain has quit IRC22:08
mtreinishok, that's not surprising I guess22:09
mtreinishsdague: oh, looks like you broke the ssh unit tests...22:09
openstackrecheckConsole logs not available after 13:24s for gate-python-glanceclient-python26 82126,15,a6fe6da22:09
mtreinishsdague: http://logs.openstack.org/33/102633/2/check/gate-tempest-python27/f987161/console.html22:10
sdaguehuh, I thought I ran that locally22:10
sdagueseriously... default tox doesn't run py27?22:11
* sdague scowls at mtreinish 22:11
openstackgerritSean Dague proposed a change to openstack/tempest: ping before we ssh  https://review.openstack.org/10263322:12
openstackgerritSean Dague proposed a change to openstack/tempest: add py27 to default tox  https://review.openstack.org/10266122:12
mtreinishsdague: oops, I'll fix that right now22:12
sdaguemtreinish: just did22:12
mtreinishok you win22:12
sdaguealso, for someone that says we don't support 33... you have unit testing rules for it :)22:13
mtreinishheh, yeah I know. We also have py2622:13
mtreinishbut I know that python3x fails tox when it setups the venv because of boto22:14
mtreinishI can't remember if there is another import issue22:14
mtreinishI'm going to bump that to 34 eventually22:14
*** gszasz has joined #openstack-qa22:15
mriedemmtreinish: i thought py26 was dropped?22:15
mtreinishit's not supported, and we don't test it. But I think it works22:16
mtreinishI never got around to removing the tox py26 unit test job22:16
mriedemmtreinish: yeah it works, we still never got the testr discovery patch thingy going22:16
mriedemso we exclude all of the testscenarios negative tests stuff22:16
mriedemmoving to rhel 7 for juno though so we should be using py27 then22:17
mriedem\o/22:17
mriedemi shouldn't say 'we' since i'm not on that team anymore22:17
*** sabeen1 has joined #openstack-qa22:17
mtreinishheh, they'll keep pulling you back in :)22:17
mriedemit's true22:23
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-large-ops 99340,11,253fe7f22:23
*** dims__ has joined #openstack-qa22:25
dims__mtreinish, yes, default is all the console output22:25
mtreinishdims__: ok cool, then I'm +2 :)22:26
mtreinishfor whatever reason I thought the default was like 25 or something22:27
openstackgerritSean Dague proposed a change to openstack/tempest: ping before we ssh  https://review.openstack.org/10263322:32
sdaguemtreinish: so that still doesn't pass unit tests22:32
sdaguebut I've run out of time tonight to figure out the last break22:33
mtreinishsdague: hmm, ok I'll take a look later22:33
mtreinishbut let's assign blame to jaypipes, he wrote all of that :)22:33
dims__lol +122:33
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for neutron bug 1334109  https://review.openstack.org/10255822:34
sdaguewell mostly, it throws an exception22:34
sdaguebut I don't get how it didn't before22:34
*** openstackgerrit has quit IRC22:35
mtreinishsdague: heh, it passed for me locally...22:36
mtreinishoops nm, ran tox on the wrong dir22:36
*** openstackgerrit has joined #openstack-qa22:36
openstackrecheckConsole logs not available after 13:26s for gate-python-cinderclient-python33 102586,6,ce44d1222:36
*** openstackrecheck has quit IRC22:44
*** openstackrecheck has joined #openstack-qa22:44
*** markmcclain has joined #openstack-qa22:45
*** aimon_ has quit IRC22:47
openstackgerritA change was merged to openstack-infra/elastic-recheck: Add query for tempest get_console_output bug 1329563  https://review.openstack.org/10262922:48
*** markmcclain has quit IRC22:49
mtreinishsdague: I think it was just the extra call path was adding ~1 sec to the execution which was exceeding the timeout set in the client22:49
*** sabeen1 has quit IRC22:50
mtreinishit passed when I bumped the timeout, of course I had to change one of the time checks we were using to verify it attempted the correct number of times22:50
mtreinishI'll push out a rev with the changes22:51
openstackgerritA change was merged to openstack/tempest: Add "create a server" test with server group  https://review.openstack.org/8679222:51
openstackgerritMatthew Treinish proposed a change to openstack/tempest: ping before we ssh  https://review.openstack.org/10263322:52
mtreinishsdague: ^^^22:52
*** openstackrecheck has quit IRC22:52
*** openstackrecheck has joined #openstack-qa22:52
*** mriedem has quit IRC22:54
*** mdenny has quit IRC22:59
*** pcrews_ has quit IRC23:00
*** pcrews has joined #openstack-qa23:00
*** nsaje has quit IRC23:01
*** markmcclain has joined #openstack-qa23:01
*** nsaje has joined #openstack-qa23:05
openstackrecheckConsole logs not available after 13:27s for check-tempest-dsvm-postgres-full 102660,1,bba4f8323:06
*** rbak has quit IRC23:07
*** Sukhdev has joined #openstack-qa23:14
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 102653,3,ff70f7423:19
*** rodrigods_ has joined #openstack-qa23:21
*** atiwari has quit IRC23:27
*** rbak has joined #openstack-qa23:28
*** aimon_ has joined #openstack-qa23:29
*** oomichi has joined #openstack-qa23:30
openstackrecheckConsole logs not available after 13:23s for gate-swift-dsvm-functional 99276,3,89d7dc523:33
*** sballe has quit IRC23:38
*** GMann has joined #openstack-qa23:46
openstackrecheckConsole logs not available after 13:23s for check-tempest-dsvm-full 102595,1,923a29923:46
*** hemna is now known as hemna_23:49
*** ajo|mac has quit IRC23:52

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