*** yamamoto has quit IRC | 00:22 | |
*** yamamoto has joined #openstack-qa | 00:50 | |
*** hongbin has joined #openstack-qa | 01:08 | |
openstackgerrit | zhufl proposed openstack/tempest master: Add response schema validation for encryption types https://review.openstack.org/606809 | 01:32 |
---|---|---|
*** d0ugal has quit IRC | 01:48 | |
*** d0ugal has joined #openstack-qa | 01:51 | |
*** yamamoto has quit IRC | 01:56 | |
*** aojea has joined #openstack-qa | 02:19 | |
*** aojea has quit IRC | 02:21 | |
*** aojea_ has joined #openstack-qa | 02:21 | |
*** aojea_ has quit IRC | 02:22 | |
*** aojea has joined #openstack-qa | 02:22 | |
*** yamamoto has joined #openstack-qa | 02:24 | |
*** aojea has quit IRC | 02:26 | |
*** lbragstad has joined #openstack-qa | 02:43 | |
*** gouthamr has left #openstack-qa | 03:01 | |
*** dave-mccowan has quit IRC | 03:02 | |
*** ramishra has joined #openstack-qa | 03:08 | |
*** samP has joined #openstack-qa | 03:15 | |
*** lbragstad has quit IRC | 03:46 | |
*** lbragstad has joined #openstack-qa | 03:48 | |
*** lbragstad has quit IRC | 03:58 | |
*** hongbin has quit IRC | 04:00 | |
openstackgerrit | Manik Bindlish proposed openstack/tempest master: Correcting confusing name used in account_generator.py https://review.openstack.org/608609 | 04:21 |
*** e0ne has joined #openstack-qa | 04:27 | |
*** pcaruana has joined #openstack-qa | 04:38 | |
*** brinzhang has joined #openstack-qa | 04:53 | |
*** e0ne has joined #openstack-qa | 05:04 | |
*** e0ne has quit IRC | 05:04 | |
*** agurenko has joined #openstack-qa | 05:30 | |
*** Luzi has joined #openstack-qa | 05:48 | |
*** ccamposr has joined #openstack-qa | 06:19 | |
mbindlish | Anybody can help me on this Query: I need to set (--os-username, --os-password) values in my tests for running "tempest account generator" command. So from where I can get these values. Should I collect it from openrc file? | 06:26 |
mbindlish | @gmann ^ ^ | 06:26 |
*** brinzhang has quit IRC | 06:30 | |
*** brinzhang has joined #openstack-qa | 06:31 | |
gmann | mbindlish: it does not matter what value you take because those are going to be used in unit tests and using mock. you can use 'fake_user', 'fake_password' | 06:33 |
gmann | mbindlish: like this -https://github.com/openstack/tempest/blob/d2cb025c5f2e1834334a827359f910ae30ba3fc4/tempest/tests/cmd/test_account_generator.py#L28 | 06:34 |
mbindlish | @gmann : Actually I am trying to run "tempest account-generator" using subprocess.popen | 06:35 |
mbindlish | p = subprocess.Popen(cmd, stdout=subprocess.PIPE, | 06:35 |
mbindlish | stderr=subprocess.PIPE) | 06:35 |
mbindlish | cmd : with different parameters | 06:35 |
mbindlish | So it asks for the credentials | 06:35 |
*** aojea has joined #openstack-qa | 06:35 | |
mbindlish | I have currently set these --os-username', 'admin', '--os-password', 'secret'. So it is running fine | 06:36 |
mbindlish | So my quesion, when ZUUL will be running, it will use devstack. So always it will use such credentials? | 06:36 |
gmann | mbindlish: that is running because your env where u r running the test have 'admin' user. which would not be case everywhere | 06:36 |
gmann | mbindlish: better way is to stub the cred part | 06:37 |
mbindlish | without these cred, command can not be run, event not with fake credentials. So how will it be possible? | 06:38 |
*** kopecmartin|off is now known as kopecmartin|ruck | 06:38 | |
gmann | mbindlish: there is already mock class for all those requirement of account generator - MockHelpersMixin | 06:39 |
gmann | mbindlish: https://github.com/openstack/tempest/blob/d2cb025c5f2e1834334a827359f910ae30ba3fc4/tempest/tests/cmd/test_account_generator.py#L40 | 06:39 |
AJaeger | gmann: could you look at https://review.openstack.org/604631 and tell me what to do with it - happy if somebody else takes it over... I can also split up the pieces that are ok - or abandon completely. Just would like some guideance, please | 06:39 |
mbindlish | I used this but command is failing due to invalid credential | 06:39 |
gmann | mbindlish: you need to mock those. which is what MockHelpersMixin does,. it will give you all stub response from keystone | 06:39 |
gmann | mbindlish: for which param ? | 06:42 |
gmann | AJaeger: checking.. | 06:42 |
mbindlish | @gmann : I have used like below | 06:43 |
mbindlish | https://www.irccloud.com/pastebin/ZyyLS1hv/ | 06:43 |
mbindlish | Output: InvalidCredentials: Invalid Credentials | 06:44 |
mbindlish | Details: {'username': None, 'project_name': None, 'project_domain_id': None, 'user_domain_id': None, 'tenant_id': None, 'user_domain_name': 'Default', 'domain_name': 'Default', 'tenant_name': None, 'user_id': None, 'project_id': None, 'domain_id': None, 'project_domain_name': 'Default'} | 06:44 |
gmann | mbindlish: do you have patch up? there it will be easy to debug. it looks like you need more mocking here | 06:45 |
mbindlish | Not created any patch yet | 06:46 |
mbindlish | I have no clue further to mock | 06:46 |
mbindlish | It was running fine with my env's cred: | 06:48 |
mbindlish | def test_account_generator_exist_accounts_file(self): | 06:48 |
mbindlish | self.assertRunExit( | 06:48 |
mbindlish | ['tempest', 'account-generator', '--os-username', 'admin', | 06:48 |
mbindlish | '--os-password', 'secret', '--os-project-name', 'admin', | 06:48 |
mbindlish | '--os-tenant-name', 'admin', 'accounts.yaml'], 0) | 06:48 |
gmann | mbindlish: that is running because your env where u r running the test have 'admin' user. which would not be case everywhere | 06:52 |
mbindlish | yups, it was just for information | 06:53 |
*** slaweq has joined #openstack-qa | 06:59 | |
*** mvkr has quit IRC | 06:59 | |
*** rcernin has quit IRC | 07:08 | |
AJaeger | gmann: I'll be back later, please comment on 604631 when you have some time. Thanks. | 07:11 |
gmann | mbindlish: if you can give m,e traceback then, i can tell here what to mock | 07:20 |
gmann | AJaeger done. I will say 604631 can remove tempest-cinder-v1-api job and rest of other taken care by https://review.openstack.org/#/c/580364/2 | 07:29 |
openstackgerrit | Andreas Jaeger proposed openstack/tempest master: Remove legacy-tempest-dsvm-cinder-v1 https://review.openstack.org/608863 | 07:33 |
AJaeger | gmann: I'll push a new one instead ^ - will abandon the other one soon. Thanks | 07:33 |
gmann | AJaeger: +2 | 07:34 |
openstackgerrit | Antonio Ojea proposed openstack-dev/devstack master: Add devstack ipv6 jobs https://review.openstack.org/608691 | 07:34 |
AJaeger | thanks, gmann | 07:35 |
gmann | AJaeger: np! thanks for taking care of those. | 07:37 |
AJaeger | np | 07:38 |
openstackgerrit | Ghanshyam Mann proposed openstack-dev/devstack master: Remove setting of unnecessary tempest config options https://review.openstack.org/608869 | 07:44 |
*** tosky has joined #openstack-qa | 07:46 | |
openstackgerrit | zhufl proposed openstack/tempest master: Add response schema validation for volume manage https://review.openstack.org/608875 | 07:53 |
*** gkadam has joined #openstack-qa | 07:57 | |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest master: Run static account tests based on tempest-full-py3 https://review.openstack.org/580364 | 08:04 |
openstackgerrit | Ghanshyam Mann proposed openstack/tempest master: Run static account tests based on tempest-full-py3 https://review.openstack.org/580364 | 08:05 |
*** dtantsur|afk is now known as dtantsur | 08:08 | |
dalvarez | masayukig[m]: ping re. openstack-health | 08:10 |
openstackgerrit | Manik Bindlish proposed openstack/tempest master: [WIP] Test coverage for tempest account-generator https://review.openstack.org/608878 | 08:10 |
*** rossella_s has quit IRC | 08:10 | |
masayukig[m] | hi dalvarez | 08:11 |
dalvarez | masayukig[m]: hey! do you have a min? :) | 08:11 |
*** e0ne has joined #openstack-qa | 08:11 | |
masayukig[m] | dalvarez: yeah, sure | 08:11 |
dalvarez | masayukig[m]: i am trying to test openstack-health locally, so i installed it, i have the api running, the frontend, i created the db, users, etc. and fed a testsubunit.result file into it | 08:11 |
dalvarez | masayukig[m]: when i open the browser i have a job (no name, i guess i need to get some metadata in it) and it says the number of failures which i can see | 08:12 |
dalvarez | masayukig[m]: but i cant see the total number of tests nor passed tests | 08:12 |
dalvarez | masayukig[m]: i cant find the code in openstack-infra where the subunit2sql command is actually run to try to mimick it | 08:13 |
dalvarez | would you pls help me out? :) | 08:14 |
dalvarez | id like to see the tests that are passing too | 08:14 |
*** rossella_s has joined #openstack-qa | 08:14 | |
masayukig[m] | dalvarez: hm, what kind of metadata did you added for subunit2sql? | 08:16 |
dalvarez | masayukig[m]: nothing, i just downlaoded a testubunit.report.gz from gerrit and fed it to subunit2sql with my config file (after gunzip) | 08:16 |
*** e0ne has quit IRC | 08:17 | |
masayukig[m] | dalvarez: ok, I think that's the reason. Let me check the metadata which openstack needs. Just a moment. | 08:18 |
dalvarez | masayukig[m]++ thanks a lot | 08:18 |
*** e0ne has joined #openstack-qa | 08:18 | |
dtantsur | morning folks! can someone please review https://review.openstack.org/#/c/608620/ to unblock ironic-inspector CI? | 08:18 |
dalvarez | masayukig[m]: im trying to spot that code with codesearch but im unable to find it... | 08:19 |
dtantsur | gmann: if you're still around ^^^ | 08:19 |
mbindlish | @gmann I have pushed: https://review.openstack.org/608878 as WIP. So we can discuss the problem on this patch. Already added the problem situation there. If anybody could help | 08:22 |
*** e0ne has quit IRC | 08:26 | |
*** sshnaidm|afk is now known as sshnaidm | 08:29 | |
masayukig[m] | dalvarez: so, you can see some metadata keys in the openstack-health api.py code like this https://git.openstack.org/cgit/openstack/openstack-health/tree/openstack_health/api.py#n768 | 08:32 |
dalvarez | masayukig[m]: right, im trying to figure out where in zuul, openstack-infra or whatever, we are inserting those keys | 08:33 |
dalvarez | masayukig[m]: do you know where is that? | 08:33 |
masayukig[m] | dalvarez: I guess this one https://git.openstack.org/cgit/openstack-infra/puppet-subunit2sql/tree/files/subunit-gearman-worker.py#n71 | 08:34 |
*** agurenko has quit IRC | 08:36 | |
dalvarez | masayukig[m]: so this https://git.openstack.org/cgit/openstack-infra/puppet-subunit2sql/tree/files/subunit-gearman-worker.py#n230 is not only processing the testsubunit.report.gz file but also console logs?? | 08:36 |
*** rossella_s has quit IRC | 08:37 | |
*** rossella_s has joined #openstack-qa | 08:38 | |
masayukig[m] | dalvarez: yeah, it looks like but I'm not sure.. I'm not familiar with the gearman worker.. clarkb mtreinish any comments? | 08:38 |
*** shardy has joined #openstack-qa | 08:40 | |
*** agurenko has joined #openstack-qa | 08:47 | |
gmann | dtantsur: +2. may be dansmith can approve this as first thing in his morning. | 08:50 |
dtantsur | thnx! | 08:50 |
gmann | mbindlish: thanks, ll check that but may be tomorrow | 08:50 |
mbindlish | @gmann fine!! | 08:51 |
openstackgerrit | Merged openstack-dev/devstack master: Convert to openSUSE Leap 15.0 platform testing https://review.openstack.org/576798 | 08:51 |
*** ccamposr__ has joined #openstack-qa | 08:56 | |
*** lbragstad has joined #openstack-qa | 08:56 | |
masayukig[m] | dalvarez: fwiw, I'm using thses metadata keys build_name, build_uuid, project, etc in my local environment. | 08:59 |
*** ccamposr has quit IRC | 08:59 | |
dalvarez | masayukig[m]: oh ok so build_name would be something like 'tempest_whatever', project would be 'openstack-neutron', build_uuid? | 09:00 |
dalvarez | masayukig[m]: you're populating those from where? | 09:00 |
dalvarez | MariaDB [subunit2sql]> insert into run_metadata (key, value, run_id) values ('build_name', 'tempest_test_1', 1); | 09:01 |
dalvarez | ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'key, value, run_id) values ('build_name', 'tempest_test_1', 1)' at line 1 | 09:01 |
dalvarez | im trying this meh | 09:01 |
dalvarez | sry | 09:01 |
masayukig[m] | dalvarez: I actually generate uuids with uuidgen command manually :-p. | 09:04 |
dalvarez | masayukig[m]: but those uuids are linked to the jobs? im confused | 09:04 |
dalvarez | :D | 09:04 |
masayukig[m] | dalvarez: hm, I guess you need to quote with backquotes for inserting with mysql command? | 09:04 |
dalvarez | also masayukig[m] im trying to run the query above and it doesnt work... i guess that the valid metadata keys have to be present somewhere else? | 09:04 |
dalvarez | they are MUL | 09:05 |
dalvarez | oh could be lemme check | 09:05 |
dalvarez | no | 09:05 |
dalvarez | that wasnt | 09:05 |
masayukig[m] | dalvarez: like this? insert into run_metadata (`key`, `value`, `run_id`) values ('build_name', 'tempest_test_1', 1); | 09:06 |
dalvarez | masayukig[m]: im guessing that the keys have to be in some other table defined | 09:06 |
dalvarez | ? | 09:06 |
dalvarez | masayukig[m]: oh that did it | 09:07 |
dalvarez | masayukig[m]++ | 09:07 |
masayukig[m] | :) | 09:07 |
dalvarez | masayukig[m]: that made 'tempest_test1' to show up in the frontend now | 09:07 |
dalvarez | cool thanks! | 09:07 |
dalvarez | i wish those keys would be documented somwhere :P | 09:08 |
masayukig[m] | dalvarez: yeah, we should have that. Any patches are welcome! :-p | 09:08 |
masayukig[m] | Or, I'll push a patch for that, of course. | 09:09 |
dalvarez | masayukig[m]: haha i would love to do it but i have no idea what they mean :P i can confirm that 'project' and 'build_name' worked for me! | 09:10 |
dalvarez | that's great | 09:10 |
dalvarez | thanks a lot man | 09:10 |
dalvarez | \o/ | 09:10 |
masayukig[m] | dalvarez: It's my pleasure :) | 09:12 |
dalvarez | :)) thanks! | 09:13 |
*** ccamposr has joined #openstack-qa | 09:16 | |
*** ccamposr__ has quit IRC | 09:18 | |
*** mvkr has joined #openstack-qa | 09:22 | |
openstackgerrit | zhufl proposed openstack/tempest master: Add response schema validation for volume transfer https://review.openstack.org/608898 | 09:28 |
*** imacdonn has quit IRC | 09:39 | |
*** aojea_ has joined #openstack-qa | 09:46 | |
openstackgerrit | zhufl proposed openstack/tempest master: Add response schema validation for volume manage https://review.openstack.org/608875 | 09:48 |
slaweq | gmann: masayukig[m]: hi, can You take a look at https://review.openstack.org/#/c/607958/ ? | 09:49 |
slaweq | thx in advance | 09:49 |
*** dave-mccowan has joined #openstack-qa | 09:49 | |
*** aojea_ has quit IRC | 09:50 | |
*** imacdonn has joined #openstack-qa | 09:52 | |
openstackgerrit | Arx Cruz proposed openstack-infra/devstack-gate master: Enable process_stackviz function to be optional https://review.openstack.org/475788 | 09:56 |
openstackgerrit | Merged openstack/qa-specs master: fix tox python3 overrides https://review.openstack.org/606704 | 10:04 |
openstackgerrit | Merged openstack/qa-specs master: Update the URL in doc https://review.openstack.org/604723 | 10:04 |
*** tosky has quit IRC | 10:04 | |
*** tosky has joined #openstack-qa | 10:04 | |
*** rossella_s has quit IRC | 10:09 | |
*** rossella_s has joined #openstack-qa | 10:10 | |
*** yamamoto has quit IRC | 10:12 | |
*** yamamoto has joined #openstack-qa | 10:13 | |
*** yamamoto has quit IRC | 10:13 | |
*** yamamoto has joined #openstack-qa | 10:14 | |
*** lbragstad has quit IRC | 10:16 | |
*** markvoelker has joined #openstack-qa | 10:25 | |
*** yamamoto has quit IRC | 10:25 | |
*** yamamoto has joined #openstack-qa | 10:26 | |
*** yamamoto has quit IRC | 10:30 | |
*** mvkr has quit IRC | 10:44 | |
*** rossella_s has quit IRC | 10:46 | |
*** rossella_s has joined #openstack-qa | 10:49 | |
openstackgerrit | Federico Ressi proposed openstack/tempest master: Always requires for a tenant network when creating a VM https://review.openstack.org/604718 | 10:57 |
*** markvoelker has quit IRC | 10:58 | |
*** mvkr has joined #openstack-qa | 11:02 | |
*** rossella_s has quit IRC | 11:04 | |
*** rossella_s has joined #openstack-qa | 11:05 | |
openstackgerrit | Merged openstack/patrole master: Remove extra_attr kwarg from RbacMalformedResponse https://review.openstack.org/604668 | 11:09 |
openstackgerrit | Slawek Kaplonski proposed openstack-dev/grenade master: DNM Some debugging of not reachable FIP issue https://review.openstack.org/602204 | 11:12 |
*** yamamoto has joined #openstack-qa | 11:15 | |
gmann | masayukig[m]: afazelas can u check this to unblock many of the patches- https://review.openstack.org/#/c/608039/3 | 11:15 |
*** agurenko has quit IRC | 11:18 | |
*** agurenko has joined #openstack-qa | 11:20 | |
openstackgerrit | Merged openstack/tempest master: Use show_volume_type to check the result of update_volume_type https://review.openstack.org/606838 | 11:46 |
*** yamamoto has quit IRC | 11:49 | |
*** yamamoto has joined #openstack-qa | 11:50 | |
*** yamamoto has quit IRC | 11:50 | |
*** yamamoto has joined #openstack-qa | 11:50 | |
*** markvoelker has joined #openstack-qa | 11:51 | |
*** rossella_s has quit IRC | 11:56 | |
*** rossella_s has joined #openstack-qa | 12:00 | |
*** jesusaur has quit IRC | 12:01 | |
*** jesusaur has joined #openstack-qa | 12:06 | |
*** rh-jelabarre has joined #openstack-qa | 12:10 | |
*** brinzhang has quit IRC | 12:17 | |
*** chandankumar has joined #openstack-qa | 12:19 | |
*** raildo has joined #openstack-qa | 12:22 | |
*** yamamoto has quit IRC | 12:23 | |
*** yamamoto has joined #openstack-qa | 12:24 | |
*** yamamoto has quit IRC | 12:29 | |
*** yamamoto has joined #openstack-qa | 12:34 | |
*** dustins has joined #openstack-qa | 13:02 | |
*** yamamoto has quit IRC | 13:17 | |
*** yamamoto has joined #openstack-qa | 13:17 | |
*** mriedem has joined #openstack-qa | 13:19 | |
openstackgerrit | Martin Kopec proposed openstack-infra/elastic-recheck master: Add check for bug 1796849 https://review.openstack.org/608968 | 13:21 |
openstack | bug 1796849 in tripleo "Mirror/network issues at mirror.us-west-1.packethost.openstack.org" [Undecided,New] https://launchpad.net/bugs/1796849 | 13:21 |
*** mvkr has quit IRC | 13:23 | |
*** aojeagarcia has joined #openstack-qa | 13:25 | |
openstackgerrit | Antonio Ojea proposed openstack/tempest master: Add ipv6 tempest jobs https://review.openstack.org/608706 | 13:28 |
*** lbragstad has joined #openstack-qa | 13:28 | |
*** aojea has quit IRC | 13:28 | |
dalvarez | masayukig[m]: pign re. openstack-health right now it's registering only results in the gate pipeline? how can i check? | 13:33 |
*** aojea has joined #openstack-qa | 13:38 | |
*** awaugama has joined #openstack-qa | 13:42 | |
dalvarez | http://git.openstack.org/cgit/openstack-infra/project-config/tree/roles/submit-subunit-jobs/tasks/main.yaml#n2 | 13:44 |
dalvarez | masayukig[m]: ^ looks like only gate periodic and post | 13:44 |
*** hongbin has joined #openstack-qa | 13:48 | |
*** michael-beaver has joined #openstack-qa | 13:51 | |
*** felipemonteiro has joined #openstack-qa | 13:58 | |
*** aojea has quit IRC | 14:02 | |
*** aojea has joined #openstack-qa | 14:03 | |
*** aojea has quit IRC | 14:05 | |
*** aojea has joined #openstack-qa | 14:05 | |
*** Luzi has quit IRC | 14:05 | |
*** raildo has quit IRC | 14:06 | |
*** raildo has joined #openstack-qa | 14:07 | |
openstackgerrit | Antonio Ojea proposed openstack-dev/devstack master: Add devstack ipv6 jobs https://review.openstack.org/608691 | 14:07 |
*** aojea has quit IRC | 14:10 | |
*** aojea has joined #openstack-qa | 14:10 | |
*** mugsie has joined #openstack-qa | 14:14 | |
*** aojea has quit IRC | 14:15 | |
openstackgerrit | Antonio Ojea proposed openstack-dev/devstack master: Add devstack ipv6 jobs https://review.openstack.org/608691 | 14:15 |
*** yamamoto has quit IRC | 14:16 | |
*** yamamoto has joined #openstack-qa | 14:17 | |
*** yamamoto has quit IRC | 14:21 | |
openstackgerrit | Merged openstack-dev/grenade master: nova: do not verify standard resource classes when using ironic https://review.openstack.org/608620 | 14:51 |
openstackgerrit | Mykola Yakovliev proposed openstack/patrole master: [WIP] Group based RBAC https://review.openstack.org/606110 | 14:53 |
*** ramishra has quit IRC | 14:55 | |
*** munimeha1 has joined #openstack-qa | 14:55 | |
*** yamamoto has joined #openstack-qa | 14:57 | |
openstackgerrit | Sergey Vilgelm proposed openstack/patrole master: Test list functions of Neutron's API https://review.openstack.org/608484 | 15:15 |
openstackgerrit | Lucas Alvares Gomes proposed openstack/tempest master: Use remote_client from tempest.lib.common instead of tempest.common https://review.openstack.org/609032 | 15:19 |
*** munimeha1 has quit IRC | 15:43 | |
*** aojeagarcia has quit IRC | 15:46 | |
openstackgerrit | Mykola Yakovliev proposed openstack/patrole master: [WIP] Multi role RBAC validation https://review.openstack.org/606110 | 15:51 |
*** agurenko has quit IRC | 16:09 | |
*** felipemonteiro has quit IRC | 16:19 | |
*** ccamposr has quit IRC | 16:21 | |
*** gkadam has quit IRC | 16:25 | |
*** michael-beaver has quit IRC | 16:29 | |
*** Michael_Beaver has joined #openstack-qa | 16:29 | |
*** aojea has joined #openstack-qa | 16:30 | |
*** mriedem is now known as mriedem_stew | 16:43 | |
*** aojea has quit IRC | 16:46 | |
*** gouthamr has joined #openstack-qa | 16:54 | |
*** yamamoto has quit IRC | 17:08 | |
*** yamamoto has joined #openstack-qa | 17:08 | |
*** dtantsur is now known as dtantsur|afk | 17:08 | |
*** aojea has joined #openstack-qa | 17:22 | |
*** agurenko has joined #openstack-qa | 17:27 | |
*** shardy has quit IRC | 17:41 | |
*** aojea has quit IRC | 17:56 | |
*** gkadam has joined #openstack-qa | 18:01 | |
*** michaelbeaver has joined #openstack-qa | 18:04 | |
*** yamamoto has quit IRC | 18:07 | |
*** yamamoto has joined #openstack-qa | 18:07 | |
*** Michael_Beaver has quit IRC | 18:08 | |
*** yamamoto has quit IRC | 18:08 | |
*** yamamoto has joined #openstack-qa | 18:09 | |
*** yamamoto has quit IRC | 18:13 | |
*** mriedem_stew is now known as mriedem | 18:31 | |
openstackgerrit | Sergey Vilgelm proposed openstack/patrole master: Test list functions of Neutron's API https://review.openstack.org/608484 | 18:38 |
*** Michael_Beaver has joined #openstack-qa | 18:38 | |
*** michaelbeaver has quit IRC | 18:42 | |
*** aojea has joined #openstack-qa | 18:49 | |
openstackgerrit | Mykola Yakovliev proposed openstack/patrole master: Add tests to cover network ip availability API https://review.openstack.org/600257 | 18:50 |
*** yamamoto has joined #openstack-qa | 18:51 | |
*** aojea has quit IRC | 18:53 | |
*** aojea has joined #openstack-qa | 18:53 | |
*** aojea has quit IRC | 18:54 | |
*** aojea has joined #openstack-qa | 18:54 | |
*** markvoelker has quit IRC | 19:09 | |
*** markvoelker has joined #openstack-qa | 19:09 | |
*** markvoelker has quit IRC | 19:15 | |
*** markvoelker has joined #openstack-qa | 19:17 | |
*** gkadam has quit IRC | 19:19 | |
*** awaugama has quit IRC | 19:35 | |
*** mvkr has joined #openstack-qa | 19:44 | |
*** AJaeger has left #openstack-qa | 19:56 | |
*** stevebaker has quit IRC | 19:57 | |
*** gouthamr has quit IRC | 19:58 | |
*** dmellado has quit IRC | 19:58 | |
*** michaelbeaver has joined #openstack-qa | 20:02 | |
*** Michael_Beaver has quit IRC | 20:05 | |
*** Michael_Beaver has joined #openstack-qa | 20:15 | |
*** michaelbeaver has quit IRC | 20:19 | |
*** pcaruana has quit IRC | 20:37 | |
*** gouthamr has joined #openstack-qa | 20:50 | |
*** dmellado has joined #openstack-qa | 20:53 | |
openstackgerrit | Sergey Vilgelm proposed openstack/patrole master: Test list functions of Neutron's API https://review.openstack.org/608484 | 21:01 |
openstackgerrit | Sergey Vilgelm proposed openstack/patrole master: Test list functions of Neutron's API https://review.openstack.org/608484 | 21:07 |
*** stevebaker has joined #openstack-qa | 21:10 | |
*** raildo has quit IRC | 21:18 | |
*** aojea has quit IRC | 21:21 | |
*** dustins has quit IRC | 21:24 | |
*** rossella_s has quit IRC | 22:03 | |
*** rossella_s has joined #openstack-qa | 22:03 | |
*** slaweq has quit IRC | 22:17 | |
*** michaelbeaver has joined #openstack-qa | 22:19 | |
*** Michael_Beaver has quit IRC | 22:23 | |
*** michaelbeaver has quit IRC | 22:25 | |
*** rossella_s has quit IRC | 22:36 | |
*** rossella_s has joined #openstack-qa | 22:40 | |
*** rcernin has joined #openstack-qa | 22:42 | |
*** mriedem has quit IRC | 22:57 | |
*** hongbin has quit IRC | 22:58 | |
*** lbragstad has quit IRC | 23:01 | |
*** slaweq has joined #openstack-qa | 23:11 | |
*** slaweq has quit IRC | 23:16 | |
*** tosky has quit IRC | 23:21 | |
*** yamamoto has quit IRC | 23:28 | |
*** sshnaidm is now known as sshnaidm|afk | 23:32 | |
*** yamamoto has joined #openstack-qa | 23:55 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!