Tuesday, 2016-01-05

openstackgerritTim Buckley proposed openstack/stackviz: Add missing DI annotations and enable strictDi.  https://review.openstack.org/26348400:04
gmannddieterly: gerrit link ?00:04
*** aalam has joined #openstack-qa00:05
*** rbak has quit IRC00:06
ddieterlygmann: https://review.openstack.org/#/c/254425/00:08
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 260586,3,019f55400:09
*** ddieterly has quit IRC00:11
*** slowrie has quit IRC00:13
*** tochi has quit IRC00:15
*** asselin_ has joined #openstack-qa00:15
gmannddieterly: seems like no configured credential - username and password. which i cannot see in conf00:16
*** tochi has joined #openstack-qa00:20
openstackgerritmelanie witt proposed openstack-infra/elastic-recheck: Remove query for bug 1501435  https://review.openstack.org/26348800:22
openstackbug 1501435 in python-novaclient "osc 1.7 no longer can boot a server from volume" [Critical,Fix released] https://launchpad.net/bugs/1501435 - Assigned to melanie witt (melwitt)00:22
openstackrecheckConsole logs not available after 13:22s for gate-cinder-pep8 263404,1,5f8232100:22
*** mspreitz_ has quit IRC00:23
*** Swami_ has quit IRC00:26
*** jasonsb has joined #openstack-qa00:28
*** sabeen3 has quit IRC00:30
*** dims has joined #openstack-qa00:33
*** dims_ has quit IRC00:34
openstackrecheckConsole logs not available after 13:24s for gate-grenade-dsvm-multinode 259515,3,3b8550f00:36
*** tosky has quit IRC00:37
gmann ddieterly: you are using deprecated cred which are removed from devstack now.  - https://review.openstack.org/#/c/256164/00:37
*** ccneill has quit IRC00:38
*** rm_work has joined #openstack-qa00:39
*** cdent has quit IRC00:40
rm_workanyone aware of something changing recently that would cause "tempest_lib.exceptions.InvalidCredentials: Invalid Credentials" on every test we run?00:40
rm_work(neutron-lbaas)00:40
jrollrm_work: what I've been seeing today is use of deprecated tempest options, https://review.openstack.org/#/c/256164/00:41
rm_worklooks like none of the values are set, which means I assume it's either looking for a new config we aren't prepared to set up, or else we've somehow stopped setting up the config that used to work00:41
jrollmonasca hit it a little bit ago https://gist.github.com/ddieterly/a05fc3db93c7201c6c1400:41
rm_workhmm00:41
rm_workthat looks different00:42
rm_workhttps://gist.github.com/rm-you/8520340b2f5ef95ba1a2 is what we see00:42
jrollseems like it could be similar thuogh00:42
rm_workwhich is basically "none of these things are set at all"00:43
jrollthe auth configs changed https://review.openstack.org/#/c/256164/3/lib/tempest00:43
rm_workhmmm00:45
gmannjroll: rm_work : yea noe devstack does not set the deprecated cred options00:45
gmannnoe- > now00:45
gmannthose were already deprecated and used by Legacy CredentialsProvider00:45
rm_workbut if those options were just "removed", why would IT still be looking for them?00:45
gmannso those using Legacy CredentialsProvider, will fail like monasca00:46
rm_workah hmmm00:46
rm_workLegacyCredentialsProvider? where is it set which to use, in a config or in the code (probably base test class?)00:46
gmannrm_work: removed from devstack setting, in Tempest those are still in deprecated state00:46
rm_workah00:46
gmannrm_work: while getting the cred which you need to pass in Manager class in base tests00:47
gmannrm_work: you can use either dynamic or pre-provisioned cred now00:48
gmannrm_work: your is Monasca or any other tests ?00:48
*** zz_dimtruck is now known as dimtruck00:49
gmannddieterly: replied on patches about failure00:49
rm_workNeutron-LBaaS00:50
rm_workhttp://logs.openstack.org/10/262910/1/gate/gate-neutron-lbaasv2-dsvm-loadbalancer/5d32043/console.html00:50
openstackrecheckConsole logs not available after 13:25s for gate-grenade-dsvm-neutron 193894,8,48a758500:50
rm_workyeah so that devstack change merged this morning00:54
rm_workand lines up with our issue00:54
rm_workso is probably the cause of all our gates breaking T_T00:54
gmannandreaf: mtreinish : seems like many projects broken with Legacy CredentialsProvider. Should we keep devstack setting till we remove from Tempest ?00:54
rm_workwell, making assumptions about devstack setting values would technically be the real cause :P00:54
rm_workI will be willing to try to merge a gate-fix CR in our project, if someone can tell me what needs to be done00:55
*** hemna is now known as hemnafk00:55
rm_workwhat am I even looking for00:55
gmannrm_work: yea, those options were deprecated long back and other two options can be used here - dynamic cred or pre provisioned00:55
rm_workI'm tracing code paths back and forth trying to find where the provider is actually SET00:56
rm_workthis is like a maze00:56
gmannrm_work: use dynamic cred instead for what failure jobs sets00:56
rm_workerr, not sure I follow00:56
*** eil397 has quit IRC00:57
rm_worklol thee last time this code was touched was 201400:57
gmannhttps://github.com/openstack/tempest/blob/master/tempest/common/credentials_factory.py#L15300:58
rm_workgmann: is there a string I can search for in this project to find the place where I need to actually update code?00:58
gmannrm_work:  this one  - dynamic_creds.DynamicCredentialProvider00:58
rm_workthe string "DynamicCredentialProvider" does not exist in this project00:59
gmannrm_work: search with either using "LegacyCredentialProvider" or "get_configured_credentials"00:59
gmannrm_work: both usage should be replaced00:59
rm_workthe first does not exist, get_configured_credentials does00:59
gmannrm_work: both of those depends on deprecated cred options which are removed now01:00
rm_workok so what do I replace get_configured_credentials with?01:00
rm_workthat method looks like it actually exists *in our codebase*?01:00
rm_workneutron_lbaas/tests/tempest/lib/common/cred_provider.py01:00
rm_workthis is "managed copy/paste" code? lol01:01
*** hoangcx has joined #openstack-qa01:01
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 260587,3,52b3a7401:04
gmannrm_work: heh, thats is funny. and yes neutron has copy paste code of tempest but m surprise they have lib one too :)01:04
rm_workshould I actually replace all of this code with updated lib code from somewhere?01:04
rm_workor ... remove it and actually *include tempest*?01:04
rm_works/include/import/01:05
gmannrm_work: well, import tempest you can do but Tempest interface can be changed removed anytime as it is not lib01:06
rm_workok01:06
gmannrm_work: all stable interfaces  present in lib are stable01:06
rm_workso... should I get an updated copy of this lib code from somewhere?01:06
rm_workwill this fix the problem?01:07
gmannrm_work: and we are in progress of moving all common functionality from Tempest to lib01:07
rm_workget_configured_credentials only appears in the lib code...01:07
gmannrm_work: for this issue just use the dynamic cred instead of configured one01:07
gmannrm_work: let me pull some example one01:07
*** mtanino has quit IRC01:08
rm_workthat would require changing the tempest lib code?01:08
gmannoh, is it?01:08
gmanni thought it is being used in test cases too01:08
rm_workhmm01:08
gmannlet me check lbaas01:08
rm_workmaybe one01:08
rm_workah possibly, it is a very high level class01:08
rm_workso instead of get_configured_credentials() I would use dynamic_creds.DynamicCredentialProvider and then it should "just work"? :P01:09
rm_workan example would be awesome, thanks01:09
gmannrm_work: there lib is something else not tempest-lib :)01:10
rm_workO_o01:11
*** eliqiao has quit IRC01:12
gmannrm_work:  basically problem is with get_configured_credentials('user') or  credential_type='alt_user'01:12
gmannhttps://github.com/openstack/neutron-lbaas/blob/4ef9bb7ccd105bf30a93083b0e13733d6fe70cc6/neutron_lbaas/tests/tempest/lib/manager.py#L4401:13
gmannhttps://github.com/openstack/neutron-lbaas/blob/4ef9bb7ccd105bf30a93083b0e13733d6fe70cc6/neutron_lbaas/tests/tempest/lib/common/accounts.py#L32501:13
rm_workso that code did NOT come from tempest-lib?01:13
*** eliqiao has joined #openstack-qa01:13
gmannrm_work: no that is from tempest and they kept in /lib01:14
openstackgerritAlan proposed openstack/tempest: Fix grammatical mistake, Changed word from "an" to "a" in below file:  https://review.openstack.org/26320401:14
gmannrm_work: they have old class name01:14
rm_workso, do you think this is fixable? or do we need to completely overhaul the tempest code in lbaas?01:14
gmannrm_work: so issue is with get_configured_credentials('user') and  where they use NotLockingAccounts01:14
gmannrm_work: they should always use the tempest-lib interfaces01:15
*** pvaneck has quit IRC01:15
gmannrm_work: it is always issue maintaining the copy paste tempest code which gets changed01:15
gmannrm_work: it is fixable not big issue01:16
gmannrm_work: so where they use  get_configured_credentials('user') or NotLockingAccounts01:16
gmannrm_work: replace those with dynamic cred01:16
rm_workdo you have an example of dynamic cred use?01:17
openstackrecheckConsole logs not available after 13:22s for gate-nova-python34 242626,12,d5943ea01:17
gmannlike - https://github.com/openstack/manila/blob/master/manila_tempest_tests/tests/api/base.py#L12901:17
gmannrm_work: ^^, Manila one01:18
rm_workok01:18
*** jecarey has joined #openstack-qa01:19
rm_workgmann: i see that still passes the get_configured_credentials through?01:19
rm_workor rather, it is used in the call for DynamicCreds01:20
rm_workfrom tempest.common import credentials_factory as common_creds01:21
rm_workommon_creds.get_configured_credentials('user')01:22
rm_workis still used01:22
rm_workhttps://github.com/openstack/manila/blob/master/manila_tempest_tests/clients_share.py#L4401:22
rm_workmaybe I can just use that?01:23
openstackgerritKen'ichi Ohmichi proposed openstack-dev/devstack: Enable SameHostFilter and DifferentHostFilter  https://review.openstack.org/25888201:28
openstackgerritKen'ichi Ohmichi proposed openstack-dev/devstack: Enable SameHostFilter and DifferentHostFilter  https://review.openstack.org/25888201:29
gmannrm_work: but that will give you admin cred, so tests needs to use non admin cred, should use either 'user' or 'alt_user'01:30
rm_workyes01:30
rm_workI think I am going to test bypassing the problem :P01:30
gmannmkoderer: ^^ you need to change Manila not to depends on deprecated cred :)01:30
openstackrecheckConsole logs not available after 13:23s for gate-nova-python27 263434,1,61b297201:31
rm_workgmann: so I am testing this currently to see if using an updated version of the code just "fixes it"01:34
*** dimtruck is now known as zz_dimtruck01:34
rm_workhttps://review.openstack.org/26351601:34
rm_workwill see what happens01:34
*** asselin_ has quit IRC01:34
rm_workah, forgot to ... include tempest. I hope it will be there anyway :P01:34
gmannrm_work: it would not work for credential_type 'user' and 'alt_usr'01:35
rm_workno?01:35
rm_workhmm01:36
gmannrm_work: common_creds.get_configured_credentials() still looks for deprecated options in conf01:36
rm_workeven in tempest/master?01:36
gmannrm_work: which will not be there as devstack does not set now01:36
*** weshay has quit IRC01:36
rm_workwhy wouldn't the interface just be fixed01:36
gmannrm_work: There is no change in tempest, only issue is those cred are not present in tempest conf which used to be set by devstack01:37
gmannrm_work: well tempest still has those as deprecated. those are not removed from tempest01:37
*** Liuqing has joined #openstack-qa01:37
gmannrm_work: only conf setting is being removed01:37
gmannrm_work: so Tempest says to use the other 2 options for cred01:38
rm_workso the conf settings are being deprecated, but the interface is not?01:38
gmannrm_work: https://github.com/openstack/tempest/blob/master/doc/source/configuration.rst#credential-provider-mechanisms01:38
gmannrm_work: interface too. it is documented ^^01:38
rm_workah01:38
gmannrm_work: https://github.com/openstack/tempest/blob/master/doc/source/configuration.rst#legacy-test-accounts-aka-credentials-config-options01:39
gmannrm_work: and m sure mtreinish has idea to remove from devstack so that people stop using deprecated way of cred, otherwise its never gonna happen :)01:40
gmannAnd not just lbaas, Manila, congress, monasca needs to update too01:41
rm_workok, I wonder if we need to remove the entire tempest/lib/ folder01:42
rm_workand just include from tempest01:42
rm_workwhile I am fixing this01:42
openstackrecheckConsole logs not available after 13:21s for gate-tempest-dsvm-full-ceph 231468,2,8f6e86701:44
gmannrm_work: yea, you can do that but still import everything from tempest is not good idea as we can change interfaces01:45
rm_workah01:45
rm_workso that is why this was copy/pasted in probably?01:45
gmannrm_work: another issue is lbaas does not have plugin, they just maintain copy paste code :)01:45
rm_workbut, we do not have the code for the dynamic provider...01:45
gmannrm_work: yes01:45
*** amotoki has quit IRC01:45
gmannrm_work: ohh, yes then you need to wither switch to plugin as good solution or again maintain the latest copy paste code01:46
rm_workswitch to plugin?01:46
gmannwither-> either01:46
rm_worklike, git submodules?01:46
rm_workor01:46
gmannrm_work: tempest provide plugin to write tempest like test01:46
rm_workis that a different project?01:47
gmannrm_work: https://github.com/openstack/tempest/blob/master/doc/source/plugin.rst01:47
gmannrm_work: so same way devstack provides plugin feature01:47
gmannrm_work: Manila, Congress, Sahara, Monasca use the same01:47
rm_workerr01:48
*** dave-mccowan has quit IRC01:48
gmannrm_work: example - https://github.com/openstack/manila/tree/master/manila_tempest_tests01:48
rm_workthe tests in there import directly from tempesrt01:48
rm_work*tempest01:49
rm_workhttps://github.com/openstack/manila/blob/master/manila_tempest_tests/tests/api/base.py#L2301:49
rm_workso far all of the examples i have seen do this :/01:49
rm_workbut you say this is not a good idea?01:49
*** hoangcx has quit IRC01:50
gmannrm_work: yea, because we do nto have all interfaces in lib yet, that is in progress01:52
*** Poornima has quit IRC01:52
rm_workok01:52
rm_workso ... I am still not clear on what to do01:52
gmannrm_work: manila has way to cap the Tempest commit-id so that they do not break with any change in tempest01:52
rm_workit looks like importing directly from tempest is what every other project is doing?01:52
rm_workah01:52
gmannrm_work: you can do and use dynamic cred will fix the issue01:53
rm_workok, that makes sense then01:53
rm_workDynamicCredentialsProvider does not take a credential_type?01:56
openstackrecheckConsole logs not available after 13:24s for gate-horizon-npm-run-lint 72024,22,67d96a601:57
rm_workI don't think this is going to be a quick fix...01:58
rm_workI'm going to have to look at this tomorrow01:58
gmannrm_work: other way you can just use credential_factory->get_credentials_provider which gives the appropriate cred based on conf01:59
rm_workhmm02:00
rm_workI might just add the removed iniset code back to our devstack plugin <_<02:00
gmannrm_work: which gives you credential provider and then you can get primary or alt cred02:01
rm_worknot willing to have our gate broken for the amount of time which it will take to fix this properly :/02:01
*** zz_dimtruck is now known as dimtruck02:04
*** bochi-michael has joined #openstack-qa02:05
openstackrecheckConsole logs not available after 13:24s for gate-devstack-bashate 263463,1,532ba9002:11
*** hoangcx has joined #openstack-qa02:12
*** rfolco_ has joined #openstack-qa02:18
*** rfolco_ has quit IRC02:18
*** Kennan has joined #openstack-qa02:19
*** yangyapeng has joined #openstack-qa02:21
Kennanhi does anyone know when tempest config (tempest.conf) in identity section, not any username and tenant_name02:23
Kennanwhere are they now ?02:23
openstackrecheckConsole logs not available after 13:23s for gate-nova-python27 263368,4,4273e4902:24
*** dims has quit IRC02:25
gmannKennan: those were deprecated option and now devstack does nto set those02:25
gmannKennan: https://review.openstack.org/#/c/256164/02:26
Kennanhi gmann: how to use that and find them ? let me check your link02:26
gmannKennan: which project, you were using?02:26
KennanMagnum, I found tempest failed in that02:26
Kennangmann: here the link02:27
Kennanhttp://logs.openstack.org/98/262898/3/check/gate-functional-dsvm-magnum-api/1ae6446/console.html02:27
gmannKennan: ok, you need to use dynamic cred instead of deprecated one02:28
gmannKennan: let me check there02:28
KennanOk. Thanks let me know how to make that to work02:28
gmannKennan: you are using those deprecated options directly - https://github.com/openstack/magnum/blob/master/magnum/tests/functional/common/config.py#L3202:35
gmannKennan: that way of credential  is not supported from devstack02:36
gmannKennan: you need to use dynamic cred - http://docs.openstack.org/developer/tempest/configuration.html#credential-provider-mechanisms02:36
Kennanyes gmann: one guy worked on that. Then how to use dymanic ways ? how to get dymanic user credential ?02:36
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-postgres-full 256273,37,5a4194602:38
gmannKennan: this is fix for Monasca - https://review.openstack.org/#/c/263529/102:40
gmannKennan: with that you can get the dynamic cred provider and fetch primary, alt or admin cred02:40
gmannKennan: but it is strange for me that magnum using options from tempest conf directly02:41
gmannKennan: either it should have in magnum conf or use tempest functionality using tempest plugin etc02:41
Kennanok. let me check with the guy who worked that before.02:42
Kennangmann: you mentioned in magnum conf,  do you mean such tempest configuration can be put in magnum conf ?02:43
gmannKennan: no necessary, but directly parsing tempest conf is not good idea02:44
Kennanok. seems need much change for make that work. as I not find dynamic in magnum now02:45
*** dims has joined #openstack-qa02:46
gmannKennan: yea it is not there02:47
*** dimtruck is now known as zz_dimtruck02:47
*** zz_dimtruck is now known as dimtruck02:48
openstackrecheckConsole logs not available after 13:22s for gate-nova-pep8 153038,68,768d94802:51
*** dimtruck is now known as zz_dimtruck02:55
*** zz_dimtruck is now known as dimtruck02:56
*** dimtruck is now known as zz_dimtruck03:00
*** artom has joined #openstack-qa03:03
openstackrecheckConsole logs not available after 13:27s for gate-keystone-python34 249958,17,cf672f003:04
*** zz_dimtruck is now known as dimtruck03:06
*** aalam has quit IRC03:07
*** dims has quit IRC03:14
*** yangyapeng has quit IRC03:16
openstackrecheckConsole logs not available after 13:23s for gate-nova-python34 248963,18,25df1a603:18
*** jecarey has quit IRC03:21
openstackgerritJacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory  https://review.openstack.org/26121503:21
*** nicholasgoracke has joined #openstack-qa03:23
*** pcrews has quit IRC03:29
*** pcrews has joined #openstack-qa03:30
openstackrecheckConsole logs not available after 13:29s for gate-nova-pep8 256569,4,e1ad63d03:31
*** yamahata has quit IRC03:33
openstackgerritJohn L. Villalovos proposed openstack-infra/devstack-gate: Update README.rst on how users can reproduce gate issues  https://review.openstack.org/26354803:35
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full 234232,7,3b6f86203:45
*** amotoki has joined #openstack-qa03:54
*** amotoki has quit IRC03:58
openstackrecheckConsole logs not available after 13:26s for gate-nova-pep8 258191,6,0bfdfa903:58
*** amotoki has joined #openstack-qa03:59
*** yamahata has joined #openstack-qa04:01
*** asselin_ has joined #openstack-qa04:03
*** artom has quit IRC04:06
openstackrecheckConsole logs not available after 13:26s for gate-nova-python34 252687,12,925e41c04:12
*** nicholasgoracke has quit IRC04:18
*** jecarey has joined #openstack-qa04:21
*** armax has joined #openstack-qa04:22
*** Poornima has joined #openstack-qa04:25
openstackrecheckConsole logs not available after 13:23s for gate-keystone-python27 231872,10,6d0724e04:25
*** jecarey has quit IRC04:26
*** nicholasgoracke has joined #openstack-qa04:27
openstackrecheckConsole logs not available after 13:22s for gate-nova-python27 253793,14,2c5c34504:38
openstackgerritJacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory  https://review.openstack.org/26121504:43
*** nicholasgoracke has quit IRC04:46
*** nicholasgoracke has joined #openstack-qa04:50
*** nicholasgoracke has quit IRC04:50
*** nicholasgoracke has joined #openstack-qa04:50
openstackrecheckConsole logs not available after 13:25s for gate-nova-pep8 253747,14,d54000804:52
*** jecarey has joined #openstack-qa04:55
openstackgerritMerged openstack-dev/devstack: Fix get_plugin_packages when multiple plugins are in use  https://review.openstack.org/26305704:55
*** asselin_ has quit IRC04:57
*** asselin_ has joined #openstack-qa04:58
*** jecarey has quit IRC04:59
*** Liuqing has quit IRC05:05
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full 263458,1,6db594805:05
*** Liuqing has joined #openstack-qa05:06
*** tochi has quit IRC05:10
openstackrecheckConsole logs not available after 13:22s for gate-grenade-dsvm-multinode 261883,2,eb9f04405:19
openstackrecheckopenstack/nova change: https://review.openstack.org/254196 failed gate-nova-python34 in the gate queue with an unrecognized error05:19
*** nikil89_ has joined #openstack-qa05:31
*** nicholasgoracke has quit IRC05:31
*** nicholasgoracke has joined #openstack-qa05:32
openstackrecheckConsole logs not available after 13:22s for gate-nova-python27 235637,3,394e8ed05:33
*** nikil89_ is now known as naggappan05:39
*** Poornima has quit IRC05:41
openstackrecheckConsole logs not available after 13:26s for gate-keystone-python27 263113,2,5ec759305:46
*** Liuqing has quit IRC05:51
*** SridharG has joined #openstack-qa05:57
*** Poornima has joined #openstack-qa05:58
openstackrecheckConsole logs not available after 13:44s for gate-tempest-dsvm-neutron-full 247395,2,73981db06:00
*** coolsvap|away is now known as coolsvap06:02
*** nicholasgoracke has quit IRC06:02
openstackrecheckopenstack/nova change: https://review.openstack.org/263296 failed gate-nova-python34 in the gate queue with an unrecognized error06:02
openstackrecheckopenstack/nova change: https://review.openstack.org/229574 failed because of: gate-tempest-dsvm-neutron-full: https://bugs.launchpad.net/bugs/134961706:04
openstackLaunchpad bug 1349617 in OpenStack Compute (nova) "SSHException: Error reading SSH protocol banner[Errno 104] Connection reset by peer" [Undecided,Incomplete]06:04
openstackgerritEinst Crazy proposed openstack/tempest: Use assertTrue/False instead of assertEqual(T/F)  https://review.openstack.org/26357106:09
gmannmkoderer: regarding https://bugs.launchpad.net/manila/+bug/153104906:17
openstackLaunchpad bug 1531049 in Monasca "Devstack stop supporting Temepst deprecated cred options" [Undecided,New] - Assigned to Ghanshyam Mann (ghanshyammann)06:17
*** coolsvap is now known as coolsvap|away06:17
gmannmkoderer: looks like Manila needs lot of refactoring for using dynamic cred06:17
*** coolsvap|away is now known as coolsvap06:20
*** yfried_ has quit IRC06:20
*** viktor_nokia has left #openstack-qa06:22
*** shausy has joined #openstack-qa06:24
*** bochi-michael has quit IRC06:30
gmannmkoderer: any specific reason running most of the tests with force_tenant_isolation = False06:31
openstackgerritJacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory  https://review.openstack.org/26121506:37
*** bochi-michael has joined #openstack-qa06:39
openstackgerritMike Spreitzer proposed openstack-dev/devstack: Do not fail with Tox 2.3.1  https://review.openstack.org/26346306:43
*** aopincar has joined #openstack-qa06:46
mkoderergmann: good morning. yeah currently the manila gate is blocked because of that06:48
mkoderervponomaryov: ^^ do you know why we do force_tenant_isolation = False?06:48
gmannmkoderer: yea, as manila needs to use dynamic or pre provisioned cred, I think tests needs to be re-factored to use the force_tenant_isolation as True06:50
*** neeti has joined #openstack-qa06:50
gmannmkoderer: and Manager class can be instantiated in base class and fetch client from them instead of creating Manager obj in each tests class06:51
*** jecarey has joined #openstack-qa06:55
*** tochi has joined #openstack-qa06:56
*** jecarey has quit IRC07:00
*** itzikb_ has joined #openstack-qa07:06
*** yfried has joined #openstack-qa07:13
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-full 201500,23,f3d145107:15
*** oomichi has quit IRC07:24
*** hoangcx_ has joined #openstack-qa07:25
*** hoangcx has quit IRC07:26
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 263249,3,390be6607:29
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-dvr 263571,1,aaf979107:43
*** anshul has joined #openstack-qa07:43
*** e0ne has joined #openstack-qa07:43
mkoderergmann: yep agree07:43
*** salv-orlando has joined #openstack-qa07:44
openstackgerritJacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory  https://review.openstack.org/26121507:46
gmannmkoderer: sdague mtreinish andreaf - please have look on microversion testing patches - https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/api-microversions-testing-support07:50
*** _nadya_ has joined #openstack-qa07:52
*** _nadya_ has quit IRC07:53
*** aopincar has quit IRC07:53
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Add different_host test on multiple nodes  https://review.openstack.org/25766007:56
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-full 261126,2,8fa083107:56
*** gamado has joined #openstack-qa07:56
*** safchain has joined #openstack-qa07:58
*** coolsvap is now known as coolsvap|away08:00
*** salv-orl_ has joined #openstack-qa08:01
*** salv-orlando has quit IRC08:05
*** salv-orl_ has quit IRC08:05
*** ifarkas has joined #openstack-qa08:07
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 259677,18,66a6be108:10
openstackgerritMerged openstack-dev/devstack: Write volume API version into clouds.yaml  https://review.openstack.org/26283108:18
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-neutron-full-kilo 262371,2,c3f3eb008:23
openstackgerritFederico Ressi proposed openstack-dev/devstack: Don't reinstall package just after installing.  https://review.openstack.org/26207408:24
openstackgerritFederico Ressi proposed openstack-dev/devstack: Preserve result returned by apt-get and pip  https://review.openstack.org/24834908:24
openstackgerritFederico Ressi proposed openstack-dev/devstack: Don't die when yum fails.  https://review.openstack.org/26306108:24
*** armax has quit IRC08:28
*** shardy has joined #openstack-qa08:33
*** mpaolino has joined #openstack-qa08:35
chmouelmkoderer: pong08:36
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full 257693,19,83e83e608:37
mkodererchmouel: sdague already took care about my issue :) thanks anyway08:39
openstackgerritYair Fried proposed openstack/tempest: Security Groups multi-node scenario  https://review.openstack.org/25974608:44
*** jlanoux has joined #openstack-qa08:48
*** _nadya_ has joined #openstack-qa08:53
*** jecarey has joined #openstack-qa08:57
*** _nadya_ has quit IRC08:58
*** jecarey has quit IRC09:01
*** jordanP has joined #openstack-qa09:05
*** _nadya_ has joined #openstack-qa09:06
*** _nadya_ has quit IRC09:08
openstackgerritMerged openstack-dev/devstack: Adding cue to plugin registry  https://review.openstack.org/26066109:11
openstackgerritYair Fried proposed openstack/tempest: Security Groups multi-node scenario  https://review.openstack.org/25974609:13
openstackgerritMerged openstack-dev/devstack: Removed starting of nova-ec2-api service  https://review.openstack.org/26318709:13
openstackgerritMerged openstack-dev/devstack: Fix heat config when using keystone v3  https://review.openstack.org/26139809:13
*** bochi-michael has quit IRC09:15
*** jecarey has joined #openstack-qa09:17
openstackgerritYair Fried proposed openstack/tempest: Security Groups multi-node scenario  https://review.openstack.org/25974609:17
*** coolsvap|away is now known as coolsvap09:17
openstackgerritMerged openstack/tempest-lib: Change LOG.warn to LOG.warning  https://review.openstack.org/26312509:19
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-neutron-full 255385,6,eebe4ee09:21
*** jecarey has quit IRC09:22
*** hop has joined #openstack-qa09:23
*** drptbl has joined #openstack-qa09:23
openstackgerritDaniel Mellado proposed openstack/tempest: Split users_client from keystone client v2.  https://review.openstack.org/25538509:24
openstackgerritJoseph Lanoux proposed openstack/tempest: WIP - DO NOT REVIEW  https://review.openstack.org/25951509:26
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-full 263592,1,aa12d1609:35
yfriedgmann: masayukig: afazekas: could you please review https://review.openstack.org/259746 Security Groups multi-node scenario?09:36
yfrieddmellado: ^09:36
openstackgerritYair Fried proposed openstack/tempest: Security Groups multi-node scenario  https://review.openstack.org/25974609:41
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 261215,8,38a7b1a09:49
vponomaryovgmann, mkoderer: Manila does require fixed set of creds10:01
vponomaryovgmann, mkoderer: having only "dynamic" completely not suitable10:01
vponomaryovgmann, mkoderer: Manila uses heavy resources under created tenant, and will b forced to recreate heavy resources all the time.10:02
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 262389,1,71a73ac10:02
vponomaryovgmann, mkoderer: so, key "force_tenant_isolation=False" should be set for most of manila tests10:03
*** boris-42 has quit IRC10:03
vponomaryovgmann, mkoderer: acording to description of https://bugs.launchpad.net/manila/+bug/1531049 manila can not be fixed using latest devstack and tempest10:05
openstackLaunchpad bug 1531049 in Mistral "Devstack stop supporting Temepst deprecated cred options" [Undecided,In progress] - Assigned to hardik (hardik-parekh047)10:05
vponomaryovgmann, mkoderer: because "preprovisioned credentials" does not work yet and "legacy credentials" already removed10:06
vponomaryovgmann, mkoderer: the only workaround I see now - set tempest config opts by manila's devstack hooks10:06
vponomaryovgmann, mkoderer: and continue use legacy code10:07
vponomaryovgmann, mkoderer: until "preprovisioned credentials" starts work10:07
gmannvponomaryov: i see, so until pre provisioned cred works fine you can set configured cred (deprecated one) in devstack from plugin10:07
gmannvponomaryov: which will unblock the issue as of now10:07
*** _nadya_ has joined #openstack-qa10:09
vponomaryovgmann: legacy way should have not been removed in this case, until "preprovisioned credentials"10:09
vponomaryovgmann: so, I think, the correct way is to revert devstack's change with opts removal10:09
*** yamahata has quit IRC10:10
vponomaryovuntil "preprovisioned credentials" are usable10:11
gmannvponomaryov: yea10:11
gmannvponomaryov: not revert, you can set from manila devstack plugin itself10:12
vponomaryovgmann: manila not the only project that suffer10:12
openstackgerritMerged openstack/tempest: Correct wrong message in configuration doc  https://review.openstack.org/26317210:14
*** _nadya_ has quit IRC10:14
*** hoangcx_ has quit IRC10:15
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full-liberty 261408,2,d07181510:15
*** tosky has joined #openstack-qa10:22
*** sshnaidm_ has joined #openstack-qa10:25
*** dtantsur|afk is now known as dtantsur10:28
openstackrecheckConsole logs not available after 13:25s for gate-tempest-dsvm-large-ops 263061,3,42c13e110:29
openstackgerritOpenStack Proposal Bot proposed openstack/tempest: Updated from global requirements  https://review.openstack.org/26292310:31
openstackgerrittanyy proposed openstack/tempest-lib: Remove MANIFEST.in  https://review.openstack.org/26366810:42
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 257660,11,f899a7710:42
*** salv-orlando has joined #openstack-qa10:44
*** dims has joined #openstack-qa10:47
*** yamamoto has joined #openstack-qa10:56
openstackrecheckConsole logs not available after 13:22s for gate-horizon-pep8 245662,2,7bc69c210:56
openstackrecheckopenstack/nova change: https://review.openstack.org/263238 failed because of: gate-grenade-dsvm-multinode: https://bugs.launchpad.net/bugs/144658310:56
openstackLaunchpad bug 1446583 in oslo.service "services no longer reliably stop in stable/liberty / master" [Critical,Fix released] - Assigned to Marian Horban (mhorban)10:56
*** cdent has joined #openstack-qa11:02
*** lucas-dinner is now known as lucasagomes11:03
*** yamamoto has quit IRC11:04
openstackrecheckConsole logs not available after 13:29s for experimental-tempest-dsvm-neutron-full-dibtest 257660,11,b97866b11:09
hopjordanP: hi, could you please review this small patch https://review.openstack.org/#/c/259424/ ?11:09
*** _nadya_ has joined #openstack-qa11:10
*** tochi has quit IRC11:13
*** salv-orlando has quit IRC11:13
*** nicholasgoracke has joined #openstack-qa11:14
*** salv-orlando has joined #openstack-qa11:14
*** _nadya_ has quit IRC11:15
hopjordanP: thank you!11:15
jordanPno probelm11:16
*** salv-orlando has quit IRC11:16
*** salv-orlando has joined #openstack-qa11:17
*** jecarey has joined #openstack-qa11:18
*** salv-orlando has quit IRC11:18
*** nicholasgoracke has quit IRC11:18
*** salv-orlando has joined #openstack-qa11:20
*** salv-orl_ has joined #openstack-qa11:21
*** salv-orlando has quit IRC11:21
*** jecarey has quit IRC11:23
*** salv-orl_ has quit IRC11:23
*** salv-orlando has joined #openstack-qa11:23
*** salv-orlando has quit IRC11:24
openstackrecheckConsole logs not available after 13:31s for gate-nova-python34 258813,4,e199a4311:25
*** aix has quit IRC11:25
*** dimtruck is now known as zz_dimtruck11:25
*** salv-orlando has joined #openstack-qa11:26
openstackgerritSean Dague proposed openstack-dev/devstack: set the validation path to fixed for n-net  https://review.openstack.org/26368511:26
*** salv-orlando has quit IRC11:29
*** salv-orlando has joined #openstack-qa11:29
*** salv-orlando has quit IRC11:30
*** salv-orlando has joined #openstack-qa11:32
*** salv-orlando has quit IRC11:35
*** salv-orlando has joined #openstack-qa11:36
openstackrecheckConsole logs not available after 13:32s for gate-grenade-dsvm 253732,8,43ef0a811:38
*** salv-orlando has quit IRC11:43
*** salv-orl_ has joined #openstack-qa11:43
*** salv-orl_ has quit IRC11:46
*** salv-orlando has joined #openstack-qa11:47
*** salv-orlando has quit IRC11:47
*** salv-orl_ has joined #openstack-qa11:51
openstackrecheckConsole logs not available after 13:22s for gate-grenade-dsvm 263598,1,147b9ee11:51
*** salv-orl_ has quit IRC11:53
*** coolsvap is now known as coolsvap|away11:54
*** salv-orl_ has joined #openstack-qa11:55
*** salv-orl_ has quit IRC11:56
*** salv-orlando has joined #openstack-qa11:57
*** salv-orlando has quit IRC11:58
openstackgerritSean Dague proposed openstack-dev/devstack: Update ssh setup for live migration default config  https://review.openstack.org/22120011:58
*** Poornima has quit IRC11:59
*** mpaolino has quit IRC12:00
kashyapafazekas: Heya, just got back to this again, as you say 'no need', but it doesn't hurt either as it's not relevant anyway, no? - https://review.openstack.org/#/c/251980/1/tools/fixup_stuff.sh12:00
*** salv-orlando has joined #openstack-qa12:04
*** zz_dimtruck is now known as dimtruck12:04
openstackrecheckConsole logs not available after 13:22s for experimental-tempest-dsvm-multinode-full-dibtest 255385,7,7d4cfa112:05
*** salv-orlando has quit IRC12:05
openstackrecheckopenstack/tempest change: https://review.openstack.org/261924 failed gate-grenade-dsvm-multinode in the gate queue with an unrecognized error12:06
*** erlon has joined #openstack-qa12:06
openstackgerritKashyap Chamarthy proposed openstack-dev/devstack: Remove support for Fedora 21 (EOL); add F22 where appropriate  https://review.openstack.org/25198012:08
*** salv-orlando has joined #openstack-qa12:10
sdaguekashyap: thanks for that patch, I was just looking for it12:10
sdaguebecause I was surprised f21 was still in the code12:11
*** salv-orlando has quit IRC12:12
*** salv-orl_ has joined #openstack-qa12:12
*** salv-orl_ has quit IRC12:13
kashyapsdague: Sorry for not getting back to it, missed to notice it.12:15
*** dimtruck is now known as zz_dimtruck12:15
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-neutron-dvr 259746,8,85fc55612:19
afazekaskashyap: np12:31
kashyapafazekas: Thanks for taking a look :-)12:31
afazekasBTW in the elasticsearch.sh we might need to distinguish centos/rhel from fedora12:32
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full-ceph 258984,10,1fd94d112:32
afazekasthe fedora version implicitly  a switch between centos ~ 7 , fedora ~ 2312:33
openstackgerritYair Fried proposed openstack/tempest: Security Groups multi-node scenario  https://review.openstack.org/25974612:37
yfriedbkopilov: ^ tnx. used your fix12:37
*** rfolco has joined #openstack-qa12:39
bkopilovyfried, ok .12:40
*** aopincar has joined #openstack-qa12:42
openstackgerritSean Dague proposed openstack-dev/devstack: Use keystone[ldap] for ldap packages  https://review.openstack.org/20815312:42
openstackgerritSean Dague proposed openstack-dev/devstack: Support extra dependencies when setup_develop  https://review.openstack.org/20858412:42
*** gfidente has joined #openstack-qa12:45
*** gfidente has quit IRC12:45
*** gfidente has joined #openstack-qa12:45
*** bkopilov has quit IRC12:46
openstackrecheckConsole logs not available after 13:23s for gate-horizon-python34 263657,1,b1fda5c12:46
*** salv-orlando has joined #openstack-qa12:47
*** salv-orlando has quit IRC12:48
*** moravec has quit IRC12:54
*** aopincar has quit IRC12:55
*** moravec has joined #openstack-qa12:56
*** bkopilov has joined #openstack-qa12:58
openstackrecheckConsole logs not available after 13:21s for gate-nova-pep8 263353,2,938376712:59
sdaguebknudson_: when you get around, see if you are ok with those respins?13:01
sdagueI know this has been a long time coming, so I want to figure out what everyone's good with to land13:02
*** zz_dimtruck is now known as dimtruck13:07
openstackgerritSean Dague proposed openstack-infra/elastic-recheck: ovh cirros crashing bug  https://review.openstack.org/26372213:11
*** _nadya_ has joined #openstack-qa13:12
openstackrecheckConsole logs not available after 13:22s for experimental-tempest-dsvm-full-dibtest 259746,8,c9525f913:13
*** aix has joined #openstack-qa13:14
kashyapafazekas: Missed your comment, yeah, can look into it as a follow up13:15
*** _nadya_ has quit IRC13:16
*** jecarey has joined #openstack-qa13:19
*** dimtruck is now known as zz_dimtruck13:20
*** moravec has quit IRC13:22
*** jecarey has quit IRC13:23
*** moravec has joined #openstack-qa13:25
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-postgres-full 259515,4,9c26d1d13:27
*** edmondsw has joined #openstack-qa13:27
*** TuanNguyen has joined #openstack-qa13:28
*** weshay_xchat has joined #openstack-qa13:34
*** weshay_xchat is now known as weshay13:34
*** anshul has quit IRC13:35
openstackgerritMerged openstack-infra/elastic-recheck: ovh cirros crashing bug  https://review.openstack.org/26372213:36
*** openstackrecheck has quit IRC13:39
*** openstackrecheck has joined #openstack-qa13:39
openstackgerritSean Dague proposed openstack-dev/devstack: set the validation path to fixed for n-net  https://review.openstack.org/26368513:40
*** moravec has quit IRC13:42
*** gamado has quit IRC13:44
*** TuanNguyen has quit IRC13:45
*** shardy has quit IRC13:47
openstackgerritMauro Rodrigues proposed openstack-dev/devstack: Check for network id before create probe for neutron's network  https://review.openstack.org/25191113:48
*** shardy has joined #openstack-qa13:49
*** mpaolino has joined #openstack-qa13:52
*** dtantsur is now known as dtantsur|brb13:54
openstackgerritMerged openstack/tempest: Add logic to select the request microversion  https://review.openstack.org/24443913:56
*** neeti has quit IRC13:58
*** lucasagomes is now known as lucas-hungry14:00
*** amotoki has quit IRC14:00
openstackgerritMauro Rodrigues proposed openstack-dev/devstack: Check for network id before create probe for neutron's network  https://review.openstack.org/25191114:02
*** dkranz has joined #openstack-qa14:02
bknudson_sdague: I'll check when I get in to the office in a few mins. The keystone code hasn't changed so the old devstack change should still be good.14:03
sdaguebknudson_: yeh, I just tweaked a couple of things14:03
*** zz_dimtruck is now known as dimtruck14:04
sdaguebut I want to make sure you are ok with the changes14:04
openstackgerritDavanum Srinivas (dims) proposed openstack-dev/grenade: [WIP] Remove ec2 during upgrade  https://review.openstack.org/26374114:07
*** krtaylor has joined #openstack-qa14:17
pc_mHi testers! I'm trying to run py34 target (locally) in neutron-vpnaas repo with no changes and see a strange error (that is not seen in gate). Wondering if anyone has ideas on this?14:18
*** woodster_ has joined #openstack-qa14:19
pc_mEssentialy the run says 497 tests pass, no failures, and then shows an invocation error message on pretty_tox.sh (the test used) and indicates failure.14:19
pc_mhttp://paste.openstack.org/show/483030/14:21
pc_mAnyone have an idea how to diagnose this?14:21
*** dimtruck is now known as zz_dimtruck14:29
*** _nadya_ has joined #openstack-qa14:29
hoppc_m: hi, did you try to remove .tox directory and run tox again ?14:34
*** regXboi has joined #openstack-qa14:34
pc_mhop: not recently. Will try...14:34
pc_mhop: I see neutron uses ostestr and not pretty_tox.sh, which uses testr. Is there a preference for one over the other?14:37
pc_mhop: I get the exact same error.14:39
pc_mIt passes and then shows an error.14:39
openstackrecheckConsole logs not available after 13:26s for gate-tempest-dsvm-cells 197569,29,685f5d814:39
*** shausy has quit IRC14:40
*** jecarey has joined #openstack-qa14:41
hoppc_m: hm, it's strange. sorry, I have no idea14:42
*** jecarey has quit IRC14:42
*** jecarey has joined #openstack-qa14:43
*** jecarey_ has joined #openstack-qa14:44
*** dtantsur|brb is now known as dtantsur14:44
*** moravec has joined #openstack-qa14:46
*** erlon has quit IRC14:46
pc_mhop: Thanks. Must be some difference in my local environment, as it works in the gate.14:46
*** jecarey has quit IRC14:47
*** mriedem_away is now known as mriedem14:48
*** nicholasgoracke has joined #openstack-qa14:48
*** malini has joined #openstack-qa14:49
*** dkranz has quit IRC14:49
*** dkranz has joined #openstack-qa14:50
*** obutenko has joined #openstack-qa14:53
openstackrecheckConsole logs not available after 13:22s for experimental-tempest-dsvm-full-dibtest 259746,9,d690f8114:53
*** zz_dimtruck is now known as dimtruck14:53
*** rbak has joined #openstack-qa14:57
*** sbadia has left #openstack-qa14:58
openstackgerritMerged openstack/tempest: Change LOG.warn to LOG.warning  https://review.openstack.org/26313114:59
*** SridharG has quit IRC15:03
*** lucas-hungry is now known as lucasagomes15:05
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-nova-v20-api 257995,11,594583315:06
*** mfisher_ora has joined #openstack-qa15:10
kashyapIs current DevStack Git working fine for folks?  I see it failing saying how '-c' is not an option for 'pip install', which is clearly nonsense as '-c' *is* a valid option that means "Constrain versions using the given constraints file. This option can be used multiple times."15:11
kashyapafazekas: ^15:11
kashyap(Or anyone)15:11
sdaguemriedem: are we tracking this yet - http://logstash.openstack.org/#dashboard/file/logstash.json?query=message%3A%5C%22bash%3A%20install_package%3A%20command%20not%20found%5C%2215:14
sdaguekashyap: you using an old pip?15:14
kashyapOh, likely - I was using Fedora 2215:15
*** yfried has quit IRC15:15
kashyapsdague: I'm using this version python-pip-6.0.8-1.fc22.noarch15:15
mriedemsdague: i haven't seen that15:16
kashyap$ pip help install | grep -i constraint -c, --constraint <file>     Constrain versions using the given constraints file. This option can be used multiple times.15:16
sdaguekashyap: you need 7 I thought15:16
sdaguekashyap: we did just merge the change to not uninstall pip from package15:16
kashyapsdague: Okay, I'll upgrade the darn machine to F2315:16
sdagueso you might have 2 there15:16
kashyapThanks for the detail15:16
mtreinishgmann: so there isn't any need to revert that devstack patch. It's a simple matter to either fix the plugins which break to use the abstracted credential provider (the right way as this will be moved to lib soon) or add the creds back in with a devstack plugin15:18
mtreinishgmann: also force_tenant_isolation doesn't do what you think it does, it's for tests where an cleanly created tenant is required only (like quota testing)15:19
openstackgerritDavanum Srinivas (dims) proposed openstack-dev/grenade: [WIP] Remove ec2 during upgrade  https://review.openstack.org/26374115:19
afazekassdague, kashyap : the do not remove should be applied only on f23 not on f2215:19
openstackrecheckConsole logs not available after 13:21s for gate-nova-python34 263343,2,19a8ab815:20
mtreinishgmann: it's just to avoid code duplication and is different from the configured credentials15:20
*** nicholasgoracke has quit IRC15:20
sdagueafazekas: ok, I guess it didn't merge yet - https://review.openstack.org/#/c/246618/2/tools/install_pip.sh15:21
afazekaskashyap: at the moment I am blind about what is working, I'll check it later, hopefully tomorrow15:21
sdagueif you want to comment there, please do15:21
*** nicholasgoracke has joined #openstack-qa15:21
sdaguehonestly, f21 was all that was running in the gate, that broke, went EOL15:21
sdaguenothing else has ever been made to work in the gate yet15:21
kashyapafazekas: Looking (/me trying to context switching while reading some libvirt code and this)15:22
afazekassdague, The script expected to install the latest pip anyway15:22
afazekaskashyap, is devstack removed python-2.7 from your system ?15:25
openstackgerritSean Dague proposed openstack-infra/elastic-recheck: add bug for subnode failing to come up  https://review.openstack.org/26376915:25
kashyapafazekas: Afraid, I'm at a no point of return -- my multi-node DevStack F22 env is now upgrading to F2315:25
*** pglass has joined #openstack-qa15:32
openstackrecheckConsole logs not available after 13:21s for gate-tempest-dsvm-nova-v20-api 258441,2,db789fb15:33
*** shardy has quit IRC15:35
*** naggappan has quit IRC15:41
*** cdent has quit IRC15:42
*** shardy has joined #openstack-qa15:44
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-postgres-full 263318,1,df3c4db15:46
*** malini has left #openstack-qa15:52
ekarlsohey guys, did you change anything in the tempest lib ? Designate's gate is blowing up15:53
*** Guest20726 has joined #openstack-qa15:53
*** cdent has joined #openstack-qa15:53
*** artom has joined #openstack-qa15:53
*** aix has quit IRC15:55
openstackgerritMerged openstack-infra/elastic-recheck: add bug for subnode failing to come up  https://review.openstack.org/26376915:56
clarkbekarlso: the change is in devstack no longer using deprecated config options15:56
clarkbekarlso: neutron ran into it also, if you want to see how they are dealing with it15:56
vponomaryovekarlso:  https://bugs.launchpad.net/manila/+bug/153104915:57
openstackLaunchpad bug 1531049 in Mistral "Devstack stop supporting Tempest deprecated cred options" [Undecided,In progress] - Assigned to hardik (hardik-parekh047)15:57
vponomaryovekarlso: if you think it is suitable for designate too, then add your project there too15:58
*** weshay_xchat has joined #openstack-qa15:58
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 257956,11,be570f916:00
*** mtanino has joined #openstack-qa16:00
openstackgerritEric Fried proposed openstack/tempest: Typos and consistency in configuration.rst  https://review.openstack.org/25758216:01
*** mragupat has joined #openstack-qa16:01
*** weshay has quit IRC16:01
jswarrenmtreinish: Do you know when the QA code sprint for mitaka will be scheduled?  Not when it'll be (unless you already know), but rather when the decision will be made when and where it'll be.16:02
*** itzikb_ has quit IRC16:03
mtreinishjswarren: so we have things tenatively scheduled already: https://wiki.openstack.org/wiki/QA/CodeSprintMitakaBoston I'm waiting for final confirmation before I announce it and make it official16:04
*** nicholasgoracke has quit IRC16:04
openstackgerritMerged openstack-infra/subunit2sql: Stop using implict joins  https://review.openstack.org/26177116:06
mtreinishI hope to annouce it this week (or early next week at the latest)16:06
mtreinishdavid-lyle: any thoughts on: https://review.openstack.org/#/c/259646/ ?16:07
*** openstackrecheck has quit IRC16:08
*** openstackrecheck has joined #openstack-qa16:08
*** cdent has quit IRC16:09
*** austin81 has joined #openstack-qa16:14
*** dave-mccowan has joined #openstack-qa16:15
ekarlsoso what are dynamic credentials ?16:16
openstackgerritJoe Hakim Rahme proposed openstack/tempest: Silences Javelin UT  https://review.openstack.org/26379116:17
*** hemnafk is now known as hemna16:18
ekarlsoclarkb: / vponomaryov16:18
sdaguemtreinish: why does ostestr vomit out subunit here - http://logs.openstack.org/96/263296/1/gate/gate-nova-python34/c5e5dec/console.html#_2016-01-05_04_16_06_335 ?16:18
mtreinishsdague: I'm not sure, I've not seen that before16:21
ekarlsonoone really ?16:21
ekarlso:p16:21
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full 193135,59,811ea5916:21
sdagueit seems to do it when we've raced on python 34 unit tests16:21
*** nicholasgoracke has joined #openstack-qa16:21
clarkbekarlso: I do not know and would have to look it up myself16:22
clarkbekarlso: google says http://docs.openstack.org/developer/tempest/configuration.html#dynamic-credentials16:22
ekarlsoclarkb: hmmms16:22
mtreinishekarlso: http://docs.openstack.org/developer/tempest/configuration.html#credential-provider-mechanisms16:22
mtreinishsdague: oh, it's actually running subunit discover in the tox.ini16:24
*** slowrie has joined #openstack-qa16:24
mtreinishsdague: https://github.com/openstack/nova/blob/master/tox.ini#L4916:24
*** ccneill has joined #openstack-qa16:25
*** woodster_ has quit IRC16:26
*** hop has quit IRC16:26
*** vgridnev has joined #openstack-qa16:27
mtreinishsdague: so the output should always be there, I'm not sure why you do that (or why it wouldn't be printed in some cases16:27
*** nicholasgoracke has quit IRC16:28
sdaguedims: ^^ ?16:29
*** vgridnev_ has joined #openstack-qa16:32
sdagueI wonder if that was meant to only be a short term issue when discovery wasn't running16:32
*** cdent has joined #openstack-qa16:32
*** vgridnev has quit IRC16:32
mtreinishsdague: the patch that added it seems to indicate that: https://review.openstack.org/#/c/204723/16:34
openstackrecheckConsole logs not available after 13:21s for gate-grenade-dsvm 263756,1,1be640f16:35
sdaguedims: any reason I can't remove that, it does some pretty goofy things to logstash16:35
dimssdague : it was added to make sure that we catch py34 incompat changes in tests we were not running16:37
dimssdague : sure16:37
sdaguedims: actually mtreinish pushed a patch16:39
sdaguenow that we're doing ostestr it should do that for us already16:39
dims+1 sdague16:40
openstackgerritMerged openstack/stackviz: Add missing DI annotations and enable strictDi.  https://review.openstack.org/26348416:41
*** tosky has quit IRC16:42
*** tosky has joined #openstack-qa16:42
*** aix has joined #openstack-qa16:44
*** weshay__xchat has joined #openstack-qa16:44
openstackgerritHenrique Truta proposed openstack-dev/devstack: Adding ENABLE_IDENTITY_V2 on docs  https://review.openstack.org/26380116:45
openstackgerritDavanum Srinivas (dims) proposed openstack/os-testr: Support comments in whitelist files  https://review.openstack.org/26380316:45
dimsmtreinish : sdague : ^^16:46
dimsmtreinish : we need to add comments in nova's whitelist file so folks don't re-add tests that are flaky16:46
mtreinishdims: I'll trade you: https://review.openstack.org/26346516:46
mtreinishdims: sure, that makes sense16:46
dimsmtreinish : cool looking16:46
*** weshay_xchat has quit IRC16:47
mtreinishdims: +216:48
mtreinishdims: the only thing with my patch is I also proposed adding the missing feature to subunit-output upstream16:49
mtreinishso I'm not sure whether we want to add it to os-testr or not16:49
dimsmtreinish : am ok to roll with what you have :) +216:52
mtreinishok cool16:52
mtreinishdims: well hopefully sdague will slam both through soon16:52
dimssounds good mtreinish16:53
mtreinishotherwise I'll just +A them in a day or 216:53
dimsy16:53
*** armax has joined #openstack-qa16:53
sdague+A16:53
mtreinishcool, thanks16:58
mtreinishdims: I can plan to push a release today if we need it16:58
dimsmtreinish : +116:58
openstackgerritMerged openstack/os-testr: Add tool to create a subunit stream  https://review.openstack.org/26346517:00
*** ttx has quit IRC17:00
*** ttx has joined #openstack-qa17:01
*** jlanoux has quit IRC17:05
openstackgerritJames E. Blair proposed openstack-infra/devstack-gate: Use qemu everywhere  https://review.openstack.org/26381017:07
*** nicholasgoracke has joined #openstack-qa17:08
*** e0ne has quit IRC17:11
openstackgerritBrian Haley proposed openstack-dev/devstack: Delete OVS port on unstack to retain system connectivity  https://review.openstack.org/24672517:12
*** safchain has quit IRC17:14
openstackrecheckConsole logs not available after 13:24s for gate-nova-pep8 153038,69,cd218ee17:17
*** drptbl has quit IRC17:17
*** moravec has quit IRC17:18
openstackgerritSean M. Collins proposed openstack-dev/grenade: Call worlddump when SSH verification fails  https://review.openstack.org/26381317:18
sc68calsdague: fyi I just +2+A'd https://review.openstack.org/26361117:22
sc68calsdague: pbr fix for bashate17:22
openstackgerritMerged openstack/os-testr: Support comments in whitelist files  https://review.openstack.org/26380317:24
*** vgridnev_ has quit IRC17:24
*** moravec has joined #openstack-qa17:27
*** moravec has quit IRC17:27
*** dims has quit IRC17:29
openstackgerritMerged openstack/tempest: Fix password not strong enough for identity test_groups  https://review.openstack.org/25942417:31
openstackgerritMerged openstack-dev/devstack: Do not fail with Tox 2.3.1  https://review.openstack.org/26346317:31
openstackrecheckConsole logs not available after 13:34s for gate-nova-tox-functional 245921,18,90e673617:31
openstackgerritMerged openstack-dev/devstack: Add existing devstack plugins to the devstack plugin list  https://review.openstack.org/24799117:32
*** shardy has quit IRC17:34
*** dims has joined #openstack-qa17:36
*** shardy has joined #openstack-qa17:36
*** aix has quit IRC17:38
*** moravec has joined #openstack-qa17:39
*** moravec1 has joined #openstack-qa17:40
*** austin81 has quit IRC17:40
*** austin81 has joined #openstack-qa17:40
mtreinishdims: https://pypi.python.org/pypi/os-testr/0.6.017:41
*** nicholasgoracke has quit IRC17:41
*** dtantsur is now known as dtantsur|afk17:42
dimsmtreinish : should we bump upper-constraints.txt?17:43
*** moravec has quit IRC17:44
mtreinishdims: well the py34 job is unconstrained right so it won't block you :)17:44
mtreinishbut it's probably a good idea17:44
dimstrue17:44
mtreinishit is a blocker for: https://review.openstack.org/#/c/234232/717:44
*** nicholasgoracke has joined #openstack-qa17:44
openstackgerritJohn Warren proposed openstack/tempest: Rename references to compute security group rules client  https://review.openstack.org/26382517:46
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-src-glance_store 253627,2,ddabf4b17:48
*** Swami has joined #openstack-qa17:49
*** yamahata has joined #openstack-qa17:49
openstackgerritJordan Pittier proposed openstack/tempest: Scenario manager: don't access glance_client if Glance is not available  https://review.openstack.org/24207617:52
*** nicholasgoracke has quit IRC17:56
*** mragupat has quit IRC17:56
*** lezbar has quit IRC17:56
sdaguesc68cal: sounds good to me17:56
*** mragupat has joined #openstack-qa17:56
*** nicholasgoracke has joined #openstack-qa17:58
sc68calsdague: for 248255 - is "C" a reasonable locale in 2016?17:58
*** nicholasgoracke has quit IRC17:58
*** nicholasgoracke has joined #openstack-qa17:58
sdagueyeh, should be17:58
sc68calsdague: i'm a little fuzzy on this stuff but I would hope we could at least get a locale that supports UTF817:58
sdaguewell, typically we set it to that so that ascii parsing of commands is a constant17:58
*** jordanP has quit IRC17:59
*** sabeen1 has joined #openstack-qa18:04
*** e0ne has joined #openstack-qa18:05
sc68calsdague: gotcha.18:06
openstackgerritStephen Lowrie proposed openstack/tempest: Add tempest-list-plugins  https://review.openstack.org/25154218:06
slowriemtreinish: put it back up with the fix & a basic unittest. will keep working on making a more complex one but going to take some time18:09
*** armax has quit IRC18:12
*** ccneill has quit IRC18:12
mtreinishslowrie: ok, cool. I'll take a look in a bit18:13
*** mpaolino has quit IRC18:14
openstackrecheckConsole logs not available after 13:21s for gate-nova-pep8 263763,2,214d0f418:14
sc68calsdague: if you get a chance can you take a look at https://review.openstack.org/#/c/263813/ ?18:17
sdaguelooking18:17
sdaguesc68cal: ok, you think if we wait until later we'll have missed a thing?18:18
sdagueI'm fine throwing more info into the pot, I'm personally kind of stumped on what's going on18:18
sc68calsdague: It's odd though because we don't get any output whatsoever - I don't know much about the structure of grenade but it the output just stops after the last SSH18:19
* sc68cal grabs link18:19
sdagueyeh get me a link18:19
*** ccneill has joined #openstack-qa18:19
sc68calsdague: http://logs.openstack.org/35/187235/11/experimental/gate-grenade-dsvm-neutron-multinode/a5af283/logs/grenade.sh.txt.gz#_2015-11-30_20_40_22_74418:20
sc68calI looked around but I didn't even see the error string that is passed in the die call - "SSH to the client did not work, something very wrong"18:21
sc68calin console.log or anything else. it's odd18:21
openstackgerritMatthew Treinish proposed openstack/tempest: Remove legacy credentials provider  https://review.openstack.org/26337618:21
sdaguesc68cal: you got hit be a timeout - http://logs.openstack.org/35/187235/11/experimental/gate-grenade-dsvm-neutron-multinode/a5af283/console.html.gz#_2015-11-30_20_41_40_51518:21
sc68calsdague: oh, LOL. Welp!18:22
sdagueit looks like every ssh call takes 5 minutes to fail18:22
sdaguehttp://logs.openstack.org/35/187235/11/experimental/gate-grenade-dsvm-neutron-multinode/a5af283/logs/grenade.sh.txt.gz#_2015-11-30_19_50_10_58418:23
sdagueso, step 1, we should probably make sure we're counting wall clock time in our count down18:23
sdagueinstead of iterations18:23
*** _nadya_ has quit IRC18:23
*** eil397 has joined #openstack-qa18:25
sc68calyeah. what the heck18:25
sdaguethat would be my next step, then at least you'll fail fast enough to get the dumps18:25
sc68calthat's super weird though18:25
sc68calit SSHs - then 5 minutes later we get a connection closed error18:25
sdagueyeh, so that's networking failing in a funny way I guess?18:27
openstackrecheckConsole logs not available after 13:29s for gate-tempest-dsvm-nova-v20-api-legacy 235398,7,3722ecb18:28
*** _nadya_ has joined #openstack-qa18:30
sc68calsdague: I'm not sure. I mean a connection closed implies that it actually did establish an SSH connection - could it be that it connected, but then never got a shell spawned so we could do that echo?18:31
sc68calsdague: I wonder if I can push a patch to grenade that does 'ssh -v' so we can get more detail18:33
*** aopincar has joined #openstack-qa18:33
sc68calsdague: and just use a Depends-On so it only runs on the experimental job18:33
*** ifarkas has quit IRC18:33
openstackgerritMerged openstack/stackviz: py26/py33 are no longer supported by Infra's CI  https://review.openstack.org/26170018:34
openstackgerritMerged openstack/stackviz: remove python 2.6 trove classifier  https://review.openstack.org/26084218:34
openstackgerritMerged openstack-dev/devstack: Introduce iniget_sections function  https://review.openstack.org/25629418:38
*** sabeen1 has quit IRC18:46
*** tosky has quit IRC18:48
*** nicholasgoracke has quit IRC18:49
*** tosky has joined #openstack-qa18:50
openstackgerritMerged openstack-dev/devstack: Preserve result returned by apt-get and pip  https://review.openstack.org/24834918:56
openstackrecheckopenstack-dev/devstack change: https://review.openstack.org/262074 failed because of: gate-tempest-dsvm-full: https://bugs.launchpad.net/bugs/145150618:56
openstackLaunchpad bug 1451506 in OpenStack Compute (nova) "spawn failed with "libvirtError: internal error: received hangup / error event on socket" in the gate" [Undecided,Confirmed]18:56
*** sshnaidm_ has quit IRC18:58
*** nicholasgoracke has joined #openstack-qa19:00
*** _nadya_ has quit IRC19:02
*** dencaval has joined #openstack-qa19:08
Swamikevinbenton: ping19:16
*** davideagnello has quit IRC19:21
openstackgerritMerged openstack-dev/devstack: Add 5 time measurement points  https://review.openstack.org/25459119:24
*** aopincar has quit IRC19:27
sdagueI expect that the error is just confusing19:31
sdaguehonestly, start with making the loop work as expected19:31
sdaguethen we'll get a lot of dump info19:31
*** salv-orlando has joined #openstack-qa19:33
sdaguesc68cal: do you need some assistance on that loop?19:34
sc68calsdague: I might. Let me take a look19:37
openstackgerritMerged openstack/tempest: Wrong spelling of existing  https://review.openstack.org/26315419:38
openstackrecheckConsole logs not available after 13:28s for gate-tempest-dsvm-full-ceph 263804,1,78377cf19:38
openstackgerritMerged openstack/tempest: Fix grammatical mistake, Changed word from "an" to "a" in below file:  https://review.openstack.org/26320419:38
*** salv-orlando has quit IRC19:38
sc68calsdague: don't we have a retry function in devstack that is time based?19:38
*** gfidente has quit IRC19:38
sc68calsdague: yeah - the test_with_retry function19:39
sdagueyeh, that seems right19:39
sdagueI think that came in after this19:40
openstackgerritSean Dague proposed openstack-dev/grenade: force smaller ssh connect timeout  https://review.openstack.org/26387719:42
sdaguethat will also help19:42
sdagueand there is no reason why we shouldn't do that as well19:42
sc68callgtm19:44
*** sabeen1 has joined #openstack-qa19:46
sc68calsdague: the other thing is the checks between nova and cinder when it comes to creating an instance are different. The nova piece just pings, cinder pings and ssh's19:46
sc68calsdague: might be worth standardizing, and making a function19:46
sdaguesc68cal: yeh, we could add the ssh check to the nova side19:46
sdaguewe need it on the cinder side because we put a file in the volume19:47
*** davideagnello has joined #openstack-qa19:47
*** sabeen3 has joined #openstack-qa19:47
*** sabeen1 has quit IRC19:50
openstackrecheckConsole logs not available after 13:24s for gate-tempest-pep8 262218,1,d5a247819:51
sc68calsdague: gotcha19:52
*** devananda has quit IRC19:54
*** weshay__xchat is now known as weshay19:59
*** lucasagomes is now known as lucas-dinner19:59
*** devananda has joined #openstack-qa20:00
*** pglbutt has joined #openstack-qa20:03
sdagueI also found that if I didn't check the sshability of the host then I tried to ssh in before the ssh server was up.20:03
openstackgerritFederico Ressi proposed openstack-dev/devstack: Don't reinstall package just after installing.  https://review.openstack.org/26207420:03
*** pglass_ has joined #openstack-qa20:04
openstackgerritSean M. Collins proposed openstack-dev/grenade: [WIP] Refactor cinder tests to use test_with_retry  https://review.openstack.org/26388420:04
*** pglass has quit IRC20:04
openstackgerritMerged openstack/tempest: Misspelling in message  https://review.openstack.org/26192420:05
*** pglbutt has quit IRC20:07
sc68calsdague: gotcha. I pushed up a wip patch that adds test_with_retry - I'm a little iffy about the way I quoted the ssh command20:08
sc68calmore likely than not I got it wrong20:08
sdagueok, we'll see how it goes20:08
sc68calstring handling in bash makes me cry20:08
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-full 263812,1,66ce28220:09
sdaguesc68cal: you don't need to copy test_with_retry in20:09
openstackgerritFederico Ressi proposed openstack-dev/devstack: Don't die when yum fails.  https://review.openstack.org/26306120:09
sdaguewe source the devstack new functions20:10
sdagueso we have access to all of those20:10
sc68calahhhhhh20:10
sc68calI was going to say I was also not sure about that20:10
sc68calworks for me, i'll respin20:10
sdagueotherwise we were doing copy/paste sync a lot20:10
sdaguewhich was terrible20:10
sc68calyeah I just didn't know if we were sourcing it - it was a couple more keystrokes to do git grep vs CTL+P ;)20:11
openstackgerritSean M. Collins proposed openstack-dev/grenade: [WIP] Refactor cinder tests to use test_with_retry  https://review.openstack.org/26388420:12
*** krtaylor has quit IRC20:19
*** ddieterly has joined #openstack-qa20:22
openstackrecheckConsole logs not available after 13:22s for gate-horizon-pep8 263817,1,b0f45b020:23
ddieterlyseeing this import error when trying to run tempest tests https://gist.github.com/ddieterly/5b4dd5a020a9dffae61820:23
ddieterlyanyone familiar with why that might be happening?20:23
ddieterlyImportError: No module named floating_ips_client20:24
mtreinishddieterly: that sounds like a stale venv20:24
ddieterlyi just created it about 15 mins ago20:24
ddieterlydid a get pull on tempest20:25
ddieterlythe steps i used were 1) clone tempest, 2) create virtual env, 3) pip install requrements20:26
mtreinishddieterly: well: https://github.com/openstack/tempest-lib/blob/master/tempest_lib/services/compute/floating_ips_client.py has been there for 2 releases20:27
mtreinishcheck the version of tempest-lib installed20:27
ddieterlysure, i believe you20:27
ddieterlynot sure why i don't have it in my env20:27
*** e0ne has quit IRC20:28
mtreinishand tempest has the min version properly set on tempest-lib in requirements (>=0.12.0 which is when that module was added)20:28
ddieterlyi see tempest_lib and tempest_lib-0.12.0.dist-info in site-packages20:28
mtreinishddieterly: inside the venv you just need to do a pip freeze and see which version is installed20:30
ddieterlytempest-lib==0.12.020:31
mtreinishok, well that's the right version20:31
mtreinishhow are you running tempest?20:32
*** rfolco has quit IRC20:32
openstackrecheckConsole logs not available after 13:22s for gate-tempest-dsvm-neutron-full 261034,6,aa5967020:36
*** weshay has quit IRC20:38
ddieterlyi was using sudo20:38
ddieterlythat was pointing to the non virtual env python20:38
openstackgerritMerged openstack/openstack-health: Properly display missing data in run graphs  https://review.openstack.org/25964620:45
mtreinishddieterly: ah, ok20:46
mtreinishthat would do it20:46
*** Guest20726 has quit IRC20:47
mtreinishandreaf, masayukig: if you get a sec: https://review.openstack.org/#/c/253301/ should be pretty straightforward20:48
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-full 234232,7,0f2716420:49
*** pglass_ is now known as pglass20:51
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta  https://review.openstack.org/23176420:52
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta  https://review.openstack.org/23449420:52
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests  https://review.openstack.org/23061120:52
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variance by metadata  https://review.openstack.org/21056920:52
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run  https://review.openstack.org/23176220:52
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph  https://review.openstack.org/23176320:52
*** weshay has joined #openstack-qa20:53
openstackgerritMike Spreitzer proposed openstack-dev/devstack: Ensure link is set to up, when moving IP addresses across interfaces.  https://review.openstack.org/26306520:53
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta  https://review.openstack.org/23176420:56
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta  https://review.openstack.org/23449420:56
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests  https://review.openstack.org/23061120:56
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variance by metadata  https://review.openstack.org/21056920:56
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run  https://review.openstack.org/23176220:56
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph  https://review.openstack.org/23176320:56
*** mragupat has quit IRC20:57
*** mragupat has joined #openstack-qa20:58
*** mragupat has quit IRC20:59
*** mragupat has joined #openstack-qa21:01
*** krtaylor has joined #openstack-qa21:02
ddieterlyi've gotten this far https://gist.github.com/ddieterly/19bf049e3ab6f6d377ae21:03
ddieterly2016-01-05 21:02:08.927 927 CRITICAL tempest [-] IOError: [Errno 2] No such file or directory: '/tmp/tmpXWgdf_'21:04
*** mragupat has quit IRC21:05
*** mragupat has joined #openstack-qa21:05
*** mragupat has quit IRC21:06
*** mragupat has joined #openstack-qa21:06
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta  https://review.openstack.org/23176421:10
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta  https://review.openstack.org/23449421:10
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests  https://review.openstack.org/23061121:10
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run  https://review.openstack.org/23176221:10
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph  https://review.openstack.org/23176321:10
*** mragupat has quit IRC21:11
mtreinishddieterly: hmm, I don't think I've seen that error before. It looks like an issue with testr21:14
*** ajmiller has quit IRC21:14
ddieterlyok, got it working now21:14
*** ajmiller has joined #openstack-qa21:17
*** mragupat has joined #openstack-qa21:20
*** weshay has quit IRC21:26
*** mragupat has quit IRC21:30
*** mragupat has joined #openstack-qa21:30
openstackgerritMerged openstack/tempest: Add set microversion in base compute service client  https://review.openstack.org/25886821:31
*** mragupat_ has joined #openstack-qa21:32
openstackgerritMerged openstack-dev/devstack: Remove support for Fedora 21 (EOL); add F22 where appropriate  https://review.openstack.org/25198021:32
*** mragupat has quit IRC21:35
*** weshay has joined #openstack-qa21:40
*** jpas has joined #openstack-qa21:46
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta  https://review.openstack.org/23176421:46
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta  https://review.openstack.org/23449421:46
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests  https://review.openstack.org/23061121:46
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variance by metadata  https://review.openstack.org/21056921:46
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run  https://review.openstack.org/23176221:46
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph  https://review.openstack.org/23176321:46
openstackrecheckConsole logs not available after 13:21s for gate-nova-python34 257956,11,67da00a21:47
ddieterlyok, it looks like the dynamic creds is running our tests in parallel21:56
timothyb89mtreinish: for https://review.openstack.org/#/c/263402 is a 2 year range for day grouping useful? setting the window multiplier to 24 is pulling data from 201421:56
ddieterlythis is causing collision21:56
ddieterlyis there a way to use dynamic creds serially21:57
ddieterlyis there a setting or option to force serial execution?21:57
timothyb89mtreinish: (which is actually still pretty quick, I'm just not sure if its helpful at all)21:57
openstackrecheckopenstack/nova change: https://review.openstack.org/259832 failed gate-tempest-dsvm-full in the gate queue with an unrecognized error22:06
openstackrecheckopenstack/nova change: https://review.openstack.org/262123 failed gate-nova-python34 in the gate queue with an unrecognized error22:07
*** moravec1 has quit IRC22:09
*** harlowja has quit IRC22:09
*** harlowja has joined #openstack-qa22:10
mtreinishtimothyb89: heh, for all time :)22:10
mtreinishthe db only goes back to the first or second week of nov 201422:10
timothyb89mtreinish: ah, not quite 2 years, but it is going back to nov '1422:10
timothyb89mtreinish: er, oh, yes, that :)22:11
mtreinishheh, yeah that's probably not too useful22:11
timothyb89mtreinish: a multipler of 12 would give probably 10-12 months in most views, maybe that would be better?22:12
mtreinishtimothyb89: yeah, that seems a bit more reasonable. Although probably 6months for a single release is all we need22:13
timothyb89mtreinish: hmm, alright, I'll play around with values a bit to aim for that22:13
*** yfried has joined #openstack-qa22:15
mtreinishtimothyb89: you can just hard code it to 6 months for days :)22:15
mtreinishit doesnt have to be a multiplier22:15
mtreinishalthough we probably don't want to do that for the job page22:15
timothyb89mtreinish: yep, it's a bit odd to handle all the uses. I'm planning to follow up with something more proper that will handle partial days properly as well22:16
*** moravec has joined #openstack-qa22:17
*** moravec has quit IRC22:17
timothyb89mtreinish: I figure the multipler is an okay stopgap for now to make it more useful, but definitely handling proper ranges is a goal22:17
openstackgerritRyan Hsu proposed openstack/tempest: Make glance image creation errors easier to debug  https://review.openstack.org/25323422:19
openstackgerritJohn Warren proposed openstack/tempest: Rename references to compute security group rules client  https://review.openstack.org/26382522:20
*** boris-42 has joined #openstack-qa22:20
*** dims has quit IRC22:20
openstackrecheckConsole logs not available after 13:29s for gate-tempest-dsvm-neutron-full-kilo 263825,1,154744722:22
*** regXboi has quit IRC22:22
*** dims has joined #openstack-qa22:25
openstackgerritTim Buckley proposed openstack/openstack-health: Add window size multipler for resolution options.  https://review.openstack.org/26340222:26
*** pglass has quit IRC22:27
*** pglass has joined #openstack-qa22:27
*** moravec has joined #openstack-qa22:31
*** moravec has quit IRC22:32
*** edmondsw has quit IRC22:33
*** dkranz has quit IRC22:34
jpasmtreinish: Could you please have a look at https://review.openstack.org/262081 (unittest fake config leak issue).22:35
*** edmondsw has joined #openstack-qa22:37
*** dave-mccowan has quit IRC22:37
*** edmondsw has quit IRC22:37
*** mragupat has joined #openstack-qa22:41
*** cdent has quit IRC22:41
*** krtaylor has quit IRC22:43
*** mragupat_ has quit IRC22:44
*** jecarey_ has quit IRC22:45
*** jecarey has joined #openstack-qa22:46
*** jecarey_ has joined #openstack-qa22:49
*** jecarey has quit IRC22:52
*** jecarey_ has quit IRC22:53
openstackgerritJohn L. Villalovos proposed openstack-infra/devstack-gate: Fix misspelling of connectivity  https://review.openstack.org/26393823:01
openstackrecheckConsole logs not available after 13:26s for gate-tempest-dsvm-keystone-eventlet-full 263155,2,bb1eccb23:02
*** woodster_ has joined #openstack-qa23:07
*** nicholasgoracke has quit IRC23:08
*** mragupat has quit IRC23:09
*** pglass has quit IRC23:13
openstackrecheckConsole logs not available after 13:23s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 263376,2,dfa705823:15
*** dims has quit IRC23:20
*** krtaylor has joined #openstack-qa23:23
openstackgerritStephen Lowrie proposed openstack/tempest: Add tempest-list-plugins  https://review.openstack.org/25154223:23
openstackgerritStephen Lowrie proposed openstack/tempest: Add tempest-list-plugins  https://review.openstack.org/25154223:24
*** dims has joined #openstack-qa23:25
*** dimtruck is now known as zz_dimtruck23:29
*** austin81 has left #openstack-qa23:29
*** shardy has quit IRC23:30
*** weshay has quit IRC23:31
*** mriedem has quit IRC23:37
*** oomichi has joined #openstack-qa23:37
gmannmtreinish: yea, i also felt the same way. fix the cred in their tests23:38
*** moravec has joined #openstack-qa23:39
gmannmtreinish: i put a fix in Monasca to use dynamic cred but seems like they have some race condition there23:40
gmannmtreinish: we can run tests in serial with dynamic cred too right? so there should not be any issue23:40
gmannmtreinish: anyways Thanks for reviewing microversion patches :)23:41
*** tochi has joined #openstack-qa23:42
gmannmtreinish: more for you - https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/api-microversions-testing-support23:42
mtreinishgmann: there is no issue running serially with dynamic creds23:45
mtreinishgmann: I'm -1 on the bottom of the stack23:45
*** sabeen3 has quit IRC23:45
mtreinishdynamic creds is independent from the number of workers used23:45
gmannmtreinish: ohk, i will check. Thanks23:46
*** ccneill has quit IRC23:46
gmannmtreinish: yea. Need to check their gate job whether they are running parallel or serial23:48
*** eil397 has quit IRC23:58

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