Friday, 2016-03-11

*** ylobankov has quit IRC00:00
openstackgerritAustin Clark proposed openstack/stackviz: Change nesting API calls to promise chain in test-details controller  https://review.openstack.org/29147400:03
openstackgerritDan Smith proposed openstack-dev/grenade: Run online data migrations for nova  https://review.openstack.org/29007700:03
openstackgerritAustin Clark proposed openstack/stackviz: Restructure Stackviz docs  https://review.openstack.org/29145100:04
*** yangyape_ has quit IRC00:05
*** Swami has quit IRC00:06
*** akshai has quit IRC00:14
*** austin81 has quit IRC00:21
*** openstackgerrit_ has quit IRC00:23
*** yamamoto_ has joined #openstack-qa00:24
*** openstackgerrit_ has joined #openstack-qa00:24
*** bapalm has quit IRC00:24
*** yamamoto_ has quit IRC00:28
*** sc68cal has quit IRC00:29
*** armax has quit IRC00:33
*** armax has joined #openstack-qa00:35
*** armax has quit IRC00:35
*** bapalm has joined #openstack-qa00:41
*** ddieterly has joined #openstack-qa00:44
*** openstackgerrit_ has quit IRC00:48
*** openstackgerrit_ has joined #openstack-qa00:49
*** nwkarsten has joined #openstack-qa00:49
*** pvaneck has quit IRC00:50
openstackgerritMerged openstack-dev/devstack: Also detected failed packages in dnf/yum wrapper  https://review.openstack.org/28588100:55
openstackgerritMerged openstack-dev/devstack: Ignore errors when uninstalling a pkg with zypper  https://review.openstack.org/28851200:55
openstackgerritMerged openstack-dev/devstack: Use "command -v" instead of "which" to find path  https://review.openstack.org/28772100:55
*** hoangcx has joined #openstack-qa00:57
*** ajmiller has quit IRC00:57
openstackrecheckopenstack/cinder change: https://review.openstack.org/290917 failed because of: gate-tempest-dsvm-neutron-full: https://bugs.launchpad.net/bugs/132365801:00
openstackLaunchpad bug 1323658 in neutron "Nova resize/restart results in guest ending up in inconsistent state with Neutron" [Medium,Fix released] - Assigned to Darek Smigiel (smigiel-dariusz)01:00
*** ddieterly has quit IRC01:01
mtreinishClint: so you're working on the plugin registry bot stuff for tempest and grenade too right? :)01:03
mtreinishI think it's looking really good on devstack right now01:04
Clintmtreinish: oh right, what are the relevant files?01:06
*** jlwhite_ has quit IRC01:07
*** yangyapeng has joined #openstack-qa01:11
mtreinishClint: I don't think a plugin-registry.rst has been created in tempest. I started one: https://review.openstack.org/#/c/235022/ but never picked it up again01:11
* Clint nods.01:11
mtreinishand I don't think anyone has even started one on the grenade side01:11
Clintok, that explains why i found nothing01:12
mtreinishClint: that same little bash script has basics of how to find both grenade and tempest https://github.com/mtreinish/external_plugins/blob/master/graphs/get_plugin_dates.sh01:12
mtreinishfor grenade it's just an upgrade subdir01:13
mtreinishand tempest needs to look for a entry_point in the setup.cfg for a project01:13
Clintcool01:13
*** yangyapeng has quit IRC01:15
openstackrecheckopenstack/horizon change: https://review.openstack.org/238422 failed gate-horizon-pep8 in the gate queue with an unrecognized error01:19
openstackgerritGhanshyam Mann proposed openstack/tempest: Migrated microversion testing framework to tempest/lib  https://review.openstack.org/28438701:21
gmannmtreinish: ^^, updated. may be you can wait till doc job and see if all looks fine now. Thanks for review01:22
*** yangyapeng has joined #openstack-qa01:22
gmannmtreinish: if you have time, need to discuss - https://bugs.launchpad.net/tempest/+bug/155552401:26
openstackLaunchpad bug 1555524 in tempest "Any tempest plugin import failure leads other plugin tests fails" [Undecided,New] - Assigned to Ghanshyam Mann (ghanshyammann)01:26
gmannbut if late for you we can discuss later anyways.01:26
mtreinishgmann: what about it? I'm not convinced that's a tempest bug if you install a bad plugin how is tempest responsible?01:27
gmannmtreinish: yea agree that is not tempest bug but if any  plugin has bad import then it cause all plugins to fail01:28
gmannif somewho we can just log exception in those case and move on with correct plugins01:29
openstackgerritArmando Migliaccio proposed openstack/tempest: Test Test Test  https://review.openstack.org/29150301:29
gmannbecause from any plugin point of view i see, it is not right as some other bad plugin stopped their tests01:30
mtreinishgmann: well no not really, tempest doesn't import anything. It just passes the plugin information on to the testrunner01:30
gmannyea but if plugin tests has import error then while discovery the tests in test_discovery it fails for all01:31
mtreinishgmann: this keeps coming up we can't be responsible for bad plugins. This was always going to be a known factor and we made it very clear you use plugins at your own risk :)01:31
gmannhummm01:32
gmannactually we handle that in case of registering the config options from plugins - https://github.com/openstack/tempest/blob/master/tempest/test_discover/plugins.py#L9001:32
gmanni was thinking we can do the same here too - https://github.com/openstack/tempest/blob/master/tempest/test_discover/test_discover.py#L47-L5201:33
mtreinishgmann: this was a problem when we first did plugins you could install a plugin and nothing would happen but a log message01:33
gmannbut while discovery it is not easy as we cannot catch the exception there01:33
mtreinishand there was no other indication why your plugin didn't work01:33
mtreinishI don't think we want to ignore plugins that can't load01:34
mtreinishbecause what if you rely on that plugin in your ci, and it turns out it succeeds because it's not being loaded01:34
gmannyea thats true, ignore failed plugins might not be good idea01:35
gmannI was thinking to fail those if someone try to run those, otherwise just ignore error till that time01:36
gmannwhich solve the issue01:36
mtreinishgmann: now if the current messaging around the import explosion isn't clear. I'm totally fine with reworking it to make it more obvious that a plugin is broken01:36
mtreinishbut I'm not in favor of failing silently01:36
mtreinishor not failing and just logging the issue01:37
gmannat least while lading the tests do not fail and fail when they actual run01:37
gmannloading01:37
gmannso if any CI depends in bad plugin then failure is there while running tests01:38
gmannbut at least loading should be fine with their correct own plugin01:38
*** dimtruck is now known as zz_dimtruck01:39
mtreinishgmann: I'm not following you, if it fails to import for discovery how would it run?01:40
gmannloader discovery put failed tests cases as loader._FailedTest and while running let them fail01:40
openstackgerritClint Adams proposed openstack-dev/grenade: Prepare for dynamic generation of grenade plugin registry  https://review.openstack.org/29150501:40
gmannbut not sure that change the main goal of discovery01:40
mtreinishgmann: I thought that you said it was an import error01:41
gmannwhen loader.discovery finds such import error case then they make that tests case as loader._FailedTest01:41
gmannyea import error and discovery will add those as loader._FailedTest01:41
gmannand later somewhere exception is thrown which i did not find from where01:42
gmannbut that is while discovery only01:42
gmannmy point is to let's runner decide to fail the tests if it is something not actual expected test case object01:43
gmannnot the discovery01:43
mtreinishgmann: right, that's what it does now01:44
mtreinishthat's what I was saying it's the test runner that actually is doing the work here, tempest is just telling it via load_tests what the suite is01:44
openstackrecheckopenstack/horizon change: https://review.openstack.org/291424 failed gate-horizon-python27 in the gate queue with an unrecognized error01:45
mtreinishand if there are import errors it's up to the test runner to catch those01:45
gmannmtreinish: humm, but it is failing while list tests01:45
gmannhttp://logs.openstack.org/50/289650/4/check/gate-congress-dsvm-api/6a27be7/console.html01:45
gmanntestr did not try to run i think01:45
mtreinishgmann: right testr does the list tests sees there is an import error and fails01:45
*** nwkarsten has quit IRC01:45
*** nwkarsten has joined #openstack-qa01:46
gmanni see and that is depends on what all tests we want to discover01:47
gmannas of now we try to load all detected plugin tests01:47
gmannany way we can load only requested plugin tests in loader.discovery ?01:49
mtreinishgmann: yeah, don't install the broken plugins01:49
gmann:)01:49
mtreinishthis is only an issue because everyone decided to bundle plugins in their repos and to turn off venv isolation01:49
gmannbut that not in hand of any plugin, bad plugin just put their entry in plugin namespace and make other fail01:49
mtreinishI don't have much sympathy because if they did standalone plugins and proper venv isolation this wouldn't be an issue01:50
*** nwkarsten has quit IRC01:50
mtreinishbecause random plugins wouldn't be popping up in the list01:50
gmannbecause on gate every plugin will be there01:50
mtreinishright, because people made bad decisions. I'm pretty sure it wasn't an intentional choice my 99% of the people who setup jobs with plugins01:51
mtreinishthey just didn't look into what they were setting up, they just copied a bad example01:51
mtreinishgmann: which is why I'm adding: https://review.openstack.org/#/c/290837/01:52
mtreinishto try and tell people everything they've done makes life much much harder01:52
gmannhumm01:54
gmannbut in separate repo case also tempest will detect all plugin whoever have entry in plugin namespace right?01:55
*** nwkarsten has joined #openstack-qa01:55
mtreinishno, that's what I'm saying no one is actually thinking about how they're installing or bundling/packaging the plugins01:55
gmannor then it will ve discovered by python pckg01:55
mtreinishso instead of having a self contained package they add to the tox venv before running, they turn off venv isolation01:56
mtreinishand rely on the larger project package being installed on the system and the plugin being there01:56
mtreinishthe problem is everyone does that, so on a devstack install you have every one's plugin present01:56
mtreinishwhether you meant to or not01:57
gmannyea01:57
gmannso in current situation , if they install their plugin in venv and run then they would be safe01:58
mtreinishgmann: well a real venv, not one with system site-packages enabled01:59
openstackgerritClint Adams proposed openstack-dev/grenade: Prepare for dynamic generation of grenade plugin registry  https://review.openstack.org/29150501:59
openstackgerritClint Adams proposed openstack/tempest: Prepare for dynamic generation of tempest plugin registry  https://review.openstack.org/29151101:59
gmannmtreinish: yea but how project package will be detected which is installed on the system02:00
gmannor they put that as requirements for plugins case02:01
*** mtanino has quit IRC02:02
mtreinishgmann: or you just do: tox -eall --notest && .tox/full/bin/pip install tempest-plugin-foo && tox -eall -- 'my_plugin_regex'02:03
mtreinishs/full/all02:04
gmannohk, ll check that02:07
*** dims has quit IRC02:08
*** jlwhite_ has joined #openstack-qa02:08
gmanntempest-plugin-foo will be project pckg having plugin02:08
mtreinishgmann: ideally it would be a self contained plugin, but it doesn't matter what it is02:09
mtreinishas long as the entry point is there02:09
gmannyea02:09
*** bapalm has quit IRC02:11
*** nwkarsten has quit IRC02:13
*** nwkarsten has joined #openstack-qa02:14
openstackgerritClint Adams proposed openstack-dev/grenade: Prepare for dynamic generation of grenade plugin registry  https://review.openstack.org/29150502:15
gmannmtreinish: some issue while plugin install in venv in my local env02:15
gmannso it that work should we ask them to change their gate job of running plugin tests02:15
gmannbecause now if such situation happens all plugin projects start complaining02:16
*** bapalm has joined #openstack-qa02:16
gmannand blocked till bad lplugin is fixed02:16
*** dims has joined #openstack-qa02:17
*** nwkarsten has quit IRC02:18
openstackgerritClint Adams proposed openstack/tempest: Prepare for dynamic generation of tempest plugin registry  https://review.openstack.org/29151102:20
openstackgerritEli Qiao proposed openstack/tempest: Add new live_migration case to support block_migration=auto  https://review.openstack.org/28760502:25
*** yamamoto_ has joined #openstack-qa02:25
*** moravec has joined #openstack-qa02:27
*** fawadkhaliq has quit IRC02:32
*** hichihara has joined #openstack-qa02:32
*** woodster_ has quit IRC02:37
*** nwkarsten has joined #openstack-qa02:45
*** yamamoto_ has quit IRC02:48
*** nwkarsten has quit IRC02:50
*** ajmiller has joined #openstack-qa02:56
*** dims has quit IRC02:58
*** ajmiller_ has joined #openstack-qa03:00
*** ajmiller has quit IRC03:03
*** fnaval_ has joined #openstack-qa03:05
*** fnaval has quit IRC03:05
*** nwkarsten has joined #openstack-qa03:13
*** dims has joined #openstack-qa03:13
*** nwkarsten has quit IRC03:18
*** ngoracke has joined #openstack-qa03:18
*** dims has quit IRC03:18
*** jpena has joined #openstack-qa03:23
*** reedip_ has joined #openstack-qa03:24
*** yamahata_ has joined #openstack-qa03:24
*** mtreinish_ has joined #openstack-qa03:29
*** notmyname_ has joined #openstack-qa03:30
*** jpena|zzz has quit IRC03:30
*** krotscheck has quit IRC03:30
*** yamahata has quit IRC03:30
*** reedip_away has quit IRC03:30
*** notmyname has quit IRC03:30
*** mtreinish has quit IRC03:30
*** hemna has quit IRC03:30
*** mtreinish_ is now known as mtreinish03:30
*** notmyname_ is now known as notmyname03:30
*** krotscheck has joined #openstack-qa03:31
*** zz_dimtruck is now known as dimtruck03:31
openstackgerritClint Adams proposed openstack/tempest: Prepare for dynamic generation of tempest plugin registry  https://review.openstack.org/29151103:35
*** yamamoto has joined #openstack-qa03:36
*** yamahata_ has quit IRC03:36
*** apoorvad has quit IRC03:37
*** vhosakot has joined #openstack-qa03:38
*** sree has joined #openstack-qa03:46
*** dimtruck is now known as zz_dimtruck03:52
*** Nakato_ is now known as Nakato03:56
*** reedip_ is now known as reedip03:57
*** fnaval_ has quit IRC04:04
*** jlwhite_ has quit IRC04:05
*** sree has quit IRC04:11
openstackgerritArmando Migliaccio proposed openstack/tempest: Test Test Test  https://review.openstack.org/29150304:13
*** fedexo has joined #openstack-qa04:17
*** ajmiller_ has quit IRC04:33
*** dave-mccowan has quit IRC04:37
*** zackf has quit IRC04:52
*** zz_dimtruck is now known as dimtruck04:57
*** zackf has joined #openstack-qa04:58
*** rossella_s has quit IRC05:03
*** rossella_s has joined #openstack-qa05:03
openstackgerritMerged openstack-dev/devstack: Ironic: Don't use token for glance & check for some unset vars  https://review.openstack.org/29085805:03
*** zackf has quit IRC05:15
*** jasonsb has joined #openstack-qa05:16
*** armax has joined #openstack-qa05:20
*** _nadya_ has joined #openstack-qa05:23
*** fedexo has quit IRC05:27
*** ngoracke has quit IRC05:29
*** _nadya_ has quit IRC05:30
*** vhosakot has quit IRC05:31
*** jdandrea has quit IRC05:33
*** sridharg has joined #openstack-qa05:38
*** jdandrea has joined #openstack-qa05:40
*** Poornima has joined #openstack-qa05:43
*** rbak has quit IRC05:47
openstackgerritMasayuki Igawa proposed openstack/stackviz: Add gitignore files  https://review.openstack.org/29155305:47
*** rbak has joined #openstack-qa05:47
*** yangyape_ has joined #openstack-qa05:48
*** jdandrea_ has joined #openstack-qa05:49
*** yangyapeng has quit IRC05:49
*** cburgess has quit IRC05:49
*** jdandrea has quit IRC05:50
*** amotoki has joined #openstack-qa05:50
*** amotoki has quit IRC05:50
*** melwitt has quit IRC05:51
*** cburgess has joined #openstack-qa05:52
*** armax has quit IRC05:53
openstackgerritGhanshyam Mann proposed openstack/tempest: Migrated microversion testing framework to tempest/lib  https://review.openstack.org/28438705:54
*** armax has joined #openstack-qa05:55
*** dimtruck is now known as zz_dimtruck05:55
*** alyson_ has quit IRC05:56
*** obondarev has quit IRC05:56
*** dansmith has quit IRC05:56
*** melwitt has joined #openstack-qa05:57
*** yamahata_ has joined #openstack-qa05:58
*** krotscheck has quit IRC06:01
*** alyson_ has joined #openstack-qa06:02
*** obondarev has joined #openstack-qa06:02
*** dansmith has joined #openstack-qa06:02
*** vponomaryov has quit IRC06:03
openstackgerritJake Yip proposed openstack/tempest: Use VolumesClient from tempest_lib  https://review.openstack.org/27612006:04
*** vponomaryov has joined #openstack-qa06:04
openstackgerritGhanshyam Mann proposed openstack/tempest: Remove tempest duplicate copy of skip_unless_attr  https://review.openstack.org/29155506:06
*** obondarev_ has joined #openstack-qa06:09
*** krotscheck has joined #openstack-qa06:09
*** obondarev has quit IRC06:10
*** yamahata_ has quit IRC06:10
*** sree has joined #openstack-qa06:11
*** sree has quit IRC06:16
*** openstackgerrit_ has quit IRC06:17
*** openstackgerrit_ has joined #openstack-qa06:17
*** mkoshiya has joined #openstack-qa06:19
openstackgerritOpenStack Proposal Bot proposed openstack-dev/devstack: Updated from generate-devstack-plugins-list  https://review.openstack.org/29156106:27
*** rcernin has joined #openstack-qa06:49
*** _nadya_ has joined #openstack-qa06:59
mkoshiyahi all, could you please review https://review.openstack.org/#/c/276566/ ( Add attach interfaces API test of nova07:07
*** alyson_ has quit IRC07:10
*** dansmith has quit IRC07:10
*** fnaval has joined #openstack-qa07:17
*** alyson_ has joined #openstack-qa07:21
*** dansmith has joined #openstack-qa07:21
*** amotoki has joined #openstack-qa07:29
*** apevec has joined #openstack-qa07:34
*** alyson_ has quit IRC07:47
*** dansmith has quit IRC07:47
*** anshul has joined #openstack-qa07:48
*** neeti has joined #openstack-qa07:51
*** alyson_ has joined #openstack-qa07:54
*** dansmith has joined #openstack-qa07:54
*** jlanoux has joined #openstack-qa08:08
*** apevec has left #openstack-qa08:11
openstackgerritGhanshyam Mann proposed openstack/tempest: Move microversion config options to 'compute' section  https://review.openstack.org/29159608:17
openstackgerritGhanshyam Mann proposed openstack/tempest: Migrated microversion testing framework to tempest/lib  https://review.openstack.org/28438708:17
gmannmtreinish: updated microversion one.08:17
gmannmtreinish: also for config options to 'compute' section - https://review.openstack.org/29159608:18
*** mkoshiya has left #openstack-qa08:18
*** e0ne has joined #openstack-qa08:21
*** jamielennox is now known as jamielennox|away08:23
*** pilgrimstack1 has joined #openstack-qa08:24
*** pilgrimstack has quit IRC08:24
openstackgerritGhanshyam Mann proposed openstack/tempest: Add support of microversion in all compute service clients  https://review.openstack.org/28441408:34
*** _nadya_ has quit IRC08:34
openstackgerritGhanshyam Mann proposed openstack/tempest: Add tests for compute v2.10 microversion  https://review.openstack.org/27776308:34
openstackgerritGhanshyam Mann proposed openstack/tempest: Microversion v2.20 tests: nova volume operations when shelved  https://review.openstack.org/25839108:34
*** bauzas is now known as bauwser08:34
*** shardy has joined #openstack-qa08:35
*** yamahata_ has joined #openstack-qa08:35
*** pcaruana has joined #openstack-qa08:41
*** ihrachys has joined #openstack-qa08:45
*** pilgrimstack1 has quit IRC08:46
*** pilgrimstack has joined #openstack-qa08:46
openstackgerritMasayuki Igawa proposed openstack/openstack-health: Introduce regex filter  https://review.openstack.org/29160708:55
*** ifarkas has joined #openstack-qa08:55
*** rossella_s has quit IRC09:03
*** rossella_s has joined #openstack-qa09:03
*** drptbl has joined #openstack-qa09:04
*** lucas-afk is now known as lucasagomes09:06
*** salv-orlando has joined #openstack-qa09:09
openstackgerritGhanshyam Mann proposed openstack/tempest: Fix PendingDeprecationWarning for assert*  https://review.openstack.org/29161709:09
*** hichihara has quit IRC09:10
gmannmasayukig: oomichi quick one - https://review.openstack.org/#/c/291617/  https://review.openstack.org/#/c/291555/09:17
gmanncan wait till gate pass09:17
*** ramishra has quit IRC09:19
*** jordanP has joined #openstack-qa09:22
*** salv-orlando has quit IRC09:25
*** yamahata_ has quit IRC09:26
openstackgerritGhanshyam Mann proposed openstack/tempest: Fix cleanup CLI for reouter client  https://review.openstack.org/29162609:29
*** jordanP has quit IRC09:29
openstackgerritBin Bin Cong proposed openstack/tempest: Add keystone v3 user negative cases for user authentication  https://review.openstack.org/25416409:30
*** jordanP has joined #openstack-qa09:31
openstackgerritGhanshyam Mann proposed openstack/tempest: Fix cleanup CLI for router client  https://review.openstack.org/29163009:38
gmannmasayukig: oomichi ^^ very easy09:39
*** yamamoto has quit IRC09:40
*** _nadya_ has joined #openstack-qa09:45
*** gfidente has joined #openstack-qa09:49
*** gfidente has quit IRC09:49
*** gfidente has joined #openstack-qa09:49
*** _nadya_ has quit IRC09:50
*** _nadya__ has joined #openstack-qa09:50
openstackgerritMerged openstack/tempest: TrivialFix: Remove pending deprecationwarning  https://review.openstack.org/29097610:09
openstackrecheckopenstack/swift change: https://review.openstack.org/291560 failed gate-swift-python34, gate-grenade-dsvm in the gate queue with an unrecognized error10:14
*** hoangcx has quit IRC10:18
*** anshul has quit IRC10:21
*** anshul has joined #openstack-qa10:21
*** mvk has joined #openstack-qa10:27
*** tosky has joined #openstack-qa10:29
*** sdague has joined #openstack-qa10:30
*** ramishra has joined #openstack-qa10:32
*** yangyapeng has joined #openstack-qa10:37
*** yangyape_ has quit IRC10:40
*** yangyapeng has quit IRC10:41
*** ngoracke has joined #openstack-qa10:41
*** ngoracke has quit IRC10:46
*** dims has joined #openstack-qa10:54
-openstackstatus- NOTICE: Gerrit is going to be restarted due to bad performance10:54
*** ChanServ changes topic to "Gerrit is going to be restarted due to bad performance"10:54
*** ChanServ changes topic to "All Things QA..."11:00
-openstackstatus- NOTICE: Gerrit has been restarted successfully11:00
*** yamamoto has joined #openstack-qa11:02
*** mvk has quit IRC11:02
*** yamamoto_ has joined #openstack-qa11:06
*** yamamoto has quit IRC11:09
*** tochi has quit IRC11:20
*** e0ne has quit IRC11:23
openstackgerritRoman Podoliaka proposed openstack/tempest: Add a test case for rebuild of instances with volumes  https://review.openstack.org/17594911:23
*** yamamoto_ has quit IRC11:25
*** yamamoto has joined #openstack-qa11:26
*** tosky has quit IRC11:26
*** e0ne has joined #openstack-qa11:26
*** mvk has joined #openstack-qa11:28
*** salv-orlando has joined #openstack-qa11:28
*** yamamoto has quit IRC11:30
*** tosky has joined #openstack-qa11:31
*** tesseract has joined #openstack-qa11:33
*** tesseract has quit IRC11:34
*** Guest16009 has joined #openstack-qa11:34
*** cdent has joined #openstack-qa11:36
*** Guest16009 has quit IRC11:37
*** salv-orlando has quit IRC11:39
*** tesseract- has joined #openstack-qa11:40
openstackgerritBin Bin Cong proposed openstack/tempest: Add keystone v3 user negative cases for user authentication  https://review.openstack.org/25416411:42
*** yamamoto has joined #openstack-qa11:42
*** yamamoto has quit IRC11:43
*** erlon has joined #openstack-qa11:44
*** sridharg has quit IRC11:47
*** aysyd has joined #openstack-qa11:59
*** sridharg has joined #openstack-qa12:01
*** aysyd has quit IRC12:05
*** aysyd has joined #openstack-qa12:05
*** sridharg has quit IRC12:07
*** lucasagomes is now known as lucas-hungry12:07
*** sridharg has joined #openstack-qa12:09
*** rfolco has joined #openstack-qa12:10
*** zackf has joined #openstack-qa12:20
*** dave-mccowan has joined #openstack-qa12:22
*** zackf has quit IRC12:24
*** rodrigods has quit IRC12:26
*** rodrigods has joined #openstack-qa12:26
*** yamamoto has joined #openstack-qa12:31
*** dims has quit IRC12:33
*** dims has joined #openstack-qa12:36
*** yamamoto has quit IRC12:40
*** yangyapeng has joined #openstack-qa12:42
*** cdent_ has joined #openstack-qa12:43
openstackrecheckopenstack/glance change: https://review.openstack.org/291559 failed gate-glance-docs, gate-grenade-dsvm in the gate queue with an unrecognized error12:44
*** cdent has quit IRC12:47
*** cdent_ is now known as cdent12:47
*** yfried_ has quit IRC12:49
*** jpena is now known as jpena|lunch12:51
*** e0ne has quit IRC12:54
*** yamamoto has joined #openstack-qa12:54
*** e0ne has joined #openstack-qa12:54
*** yamamoto has quit IRC13:01
*** rossella_s has quit IRC13:03
*** e0ne has quit IRC13:03
*** rossella_s has joined #openstack-qa13:03
*** dims_ has joined #openstack-qa13:03
*** e0ne has joined #openstack-qa13:04
*** dims has quit IRC13:04
*** drptbl has quit IRC13:07
*** Poornima has quit IRC13:15
*** akshai has joined #openstack-qa13:19
*** safchain has joined #openstack-qa13:20
*** yamamoto has joined #openstack-qa13:26
*** lucas-hungry is now known as lucasagomes13:29
*** yaume has joined #openstack-qa13:29
*** akshai has quit IRC13:29
*** akshai has joined #openstack-qa13:30
openstackgerritSergei Chipiga proposed openstack-dev/devstack: Allow to set additional services via env var ENABLED_SERVICES  https://review.openstack.org/29171413:38
*** drptbl has joined #openstack-qa13:43
*** dkranz has joined #openstack-qa13:48
*** akshai has quit IRC13:51
*** yaume has quit IRC13:53
*** neeti has quit IRC13:55
*** akshai has joined #openstack-qa13:56
*** cdent has quit IRC13:57
*** sayalilunkad has quit IRC13:57
*** sayalilunkad has joined #openstack-qa14:04
*** sree has joined #openstack-qa14:04
openstackgerritMerged openstack/tempest: Fix PendingDeprecationWarning for assert*  https://review.openstack.org/29161714:04
*** nwkarsten has joined #openstack-qa14:05
*** nwkarsten has quit IRC14:05
*** nwkarsten has joined #openstack-qa14:06
*** dims_ has quit IRC14:07
*** sree has quit IRC14:08
*** sayalilunkad has quit IRC14:08
*** ngoracke has joined #openstack-qa14:09
*** ajmiller has joined #openstack-qa14:13
*** mriedem has joined #openstack-qa14:14
*** ajmiller_ has joined #openstack-qa14:15
*** dims has joined #openstack-qa14:17
*** akshai has quit IRC14:18
*** ajmiller has quit IRC14:18
*** akshai has joined #openstack-qa14:20
*** cdent has joined #openstack-qa14:20
*** yaume has joined #openstack-qa14:23
*** dims has quit IRC14:23
*** sridharg has quit IRC14:28
*** zackf has joined #openstack-qa14:29
openstackgerritBrant Knudson proposed openstack-dev/devstack: uwsgi keystone under master process  https://review.openstack.org/29174214:30
openstackgerritMerged openstack/tempest: Remove tempest duplicate copy of skip_unless_attr  https://review.openstack.org/29155514:30
*** sayalilunkad has joined #openstack-qa14:31
*** dims has joined #openstack-qa14:32
*** mriedem is now known as dontrump14:32
*** jpena|lunch is now known as jpena14:35
*** dansmith is now known as superdan14:36
openstackgerritDan Smith proposed openstack-dev/grenade: Run online data migrations for nova  https://review.openstack.org/29007714:45
superdansdague: in case you haven't been following ^14:46
openstackgerritEvgeny Antyshev proposed openstack-dev/devstack: Vzstorage cinder volumes backend  https://review.openstack.org/28787814:46
superdanunfortunately it's still not going to help us land the newton thing first because we need to run those after the mitaka schema, but before newton schema can be applied14:47
*** ajmiller_ has quit IRC14:48
*** gszasz has joined #openstack-qa14:50
*** zz_dimtruck is now known as dimtruck14:50
*** sc68cal has joined #openstack-qa14:53
*** krtaylor has quit IRC14:54
openstackrecheckopenstack/glance_store change: https://review.openstack.org/291495 failed gate-tempest-dsvm-full-ceph-src-glance_store in the gate queue with an unrecognized error14:57
*** rfolco has quit IRC14:57
*** rossella_s has quit IRC14:59
*** salv-orlando has joined #openstack-qa15:00
*** rfolco has joined #openstack-qa15:04
*** sigmavirus24_awa is now known as sigmavirus2415:06
*** dims_ has joined #openstack-qa15:07
*** dims has quit IRC15:08
*** ylobankov has joined #openstack-qa15:09
*** woodster_ has joined #openstack-qa15:11
*** dims_ has quit IRC15:11
openstackgerritJoseph Lanoux proposed openstack/tempest: Microversion v2.20 tests: nova volume operations when shelved  https://review.openstack.org/25839115:13
*** dims has joined #openstack-qa15:14
*** salv-orlando has quit IRC15:14
*** salv-orlando has joined #openstack-qa15:16
*** ajmiller has joined #openstack-qa15:17
openstackgerritJoseph Lanoux proposed openstack/tempest: Microversion v2.20 tests: nova volume operations when shelved  https://review.openstack.org/25839115:26
*** pglass has joined #openstack-qa15:29
*** regXboi has joined #openstack-qa15:34
*** jlwhite has joined #openstack-qa15:34
*** salv-orlando has quit IRC15:35
openstackrecheckopenstack/cinder change: https://review.openstack.org/278354 failed gate-tempest-dsvm-postgres-full in the gate queue with an unrecognized error15:35
*** fedexo has joined #openstack-qa15:40
*** pglbutt has joined #openstack-qa15:42
*** jaypipes is now known as leakypipes15:45
*** pglass has quit IRC15:45
*** yamahata_ has joined #openstack-qa15:45
*** yamamoto has quit IRC15:49
*** mtanino has joined #openstack-qa15:49
*** yamamoto has joined #openstack-qa15:49
*** yamamoto has quit IRC15:50
*** ifarkas has quit IRC15:51
*** yamamoto has joined #openstack-qa15:51
*** pglass has joined #openstack-qa15:51
*** pglass has quit IRC15:51
*** pglbutt has quit IRC15:54
*** yamamoto has quit IRC15:56
*** sayalilunkad has quit IRC15:59
*** sayalilunkad has joined #openstack-qa16:01
*** jlwhite has quit IRC16:04
*** nwkarsten has quit IRC16:05
*** jlwhite has joined #openstack-qa16:05
*** nwkarsten has joined #openstack-qa16:05
*** ramishra has quit IRC16:08
*** ramishra has joined #openstack-qa16:09
*** nwkarsten has quit IRC16:10
*** yaume has quit IRC16:12
*** nwkarsten has joined #openstack-qa16:16
*** _nadya__ has quit IRC16:18
*** markvoelker has quit IRC16:21
*** jlanoux has quit IRC16:24
armaxany chance someone can look at https://review.openstack.org/#/c/288959/, there’s a neutron change (https://review.openstack.org/#/c/291787/) pending to merge because of it16:24
openstackgerritSergei Chipiga proposed openstack-dev/devstack: Allow to set additional services via env var ENABLED_SERVICES  https://review.openstack.org/29171416:27
*** vhosakot has joined #openstack-qa16:28
*** nwkarsten has quit IRC16:29
*** nwkarsten has joined #openstack-qa16:30
mtreinisharmax: what does a subnet list do if you specify a network_id of ""?16:31
mtreinishdoes it return all subnets or none?16:31
*** hemna has joined #openstack-qa16:33
*** nwkarsten has quit IRC16:35
*** dims has quit IRC16:38
*** apoorvad has joined #openstack-qa16:39
*** apoorvad has quit IRC16:39
*** apoorvad has joined #openstack-qa16:40
*** anshul has quit IRC16:43
armaxmtreinish: back16:45
armaxmtreinish: empty list16:48
*** krtaylor has joined #openstack-qa16:48
armaxmtreinish: let me confirm though16:48
*** pcaruana has quit IRC16:50
armaxmtreinish: actually, on second though with empty network id it would return all subnets accessible to the user16:50
*** dims has joined #openstack-qa16:50
armaxmtreinish: like the filter were not applied16:50
jswarrenmtreinish: Is there some way to get a list of which tests will be skipped with a given configuration (for instance due to missing admin credentials) without actually doing a tempest run?16:50
armaxmtreinish: are you thinking that we want to make sure the test behaves correctly even in the absence of the public_network_id?16:51
*** salv-orlando has joined #openstack-qa16:51
*** fnaval_ has joined #openstack-qa16:51
*** fnaval has quit IRC16:54
*** tesseract- has quit IRC16:55
*** dtantsur is now known as dtantsur|afk16:56
*** shausy has joined #openstack-qa16:56
*** cdent has quit IRC16:57
*** dims_ has joined #openstack-qa16:58
*** dims has quit IRC16:59
armaxmtreinish: looping in kevinbenton17:00
armaxmtreinish: that test was a timebomb waiting to happen!17:01
openstackgerritBrant Knudson proposed openstack-dev/devstack: Deploy keystone running in uwsgi proxy by apache  https://review.openstack.org/29181717:01
*** rcernin has quit IRC17:01
*** mvk has quit IRC17:01
*** jlwhite has quit IRC17:04
*** shausy has quit IRC17:04
*** e0ne has quit IRC17:05
*** drptbl has quit IRC17:05
*** kevinbenton has joined #openstack-qa17:06
*** dims_ has quit IRC17:08
*** markvoelker has joined #openstack-qa17:09
*** salv-orlando has quit IRC17:09
armaxkevinbenton:any chance at respinning this https://review.openstack.org/#/c/288959/?17:12
*** dims has joined #openstack-qa17:13
*** sdague has quit IRC17:17
*** cdent has joined #openstack-qa17:19
*** jordanP has quit IRC17:23
mtreinisharmax: ok, good it's a good thing I thought about the default config value17:23
armaxmtreinish: yes, it is! but I spotted something esle broken in the test17:23
mtreinishjswarren: hmm, I don't know of a way off the top of my head17:23
armaxmtreinish: as its run is uncondional, when it should be made conditional to the presence of the extension17:24
mtreinishjswarren: the skip logic is done at run time so it's hard to do that upfront17:24
mtreinisharmax: oh, yeah that's important too (time to use @test.requires_ext() )17:25
jswarrenmtreinish: Ok, thanks.17:25
armaxmtreinish: kevinbenton: yup17:25
*** leakypipes has quit IRC17:30
*** fnaval_ has quit IRC17:31
*** nwkarsten has joined #openstack-qa17:31
armaxmtreinish: though https://review.openstack.org/#/c/288959/4/tempest/api/network/test_networks.py@387 check for the existence of the value17:32
armaxmtreinish: so we should be good17:32
*** aysyd has quit IRC17:34
*** jaypipes has joined #openstack-qa17:34
*** ChanServ sets mode: +o jaypipes17:34
*** krotscheck has quit IRC17:34
*** aysyd has joined #openstack-qa17:34
*** pcaruana has joined #openstack-qa17:35
*** nwkarsten has quit IRC17:36
*** krotscheck has joined #openstack-qa17:37
oomichigmann: thanks17:40
*** fnaval has joined #openstack-qa17:47
*** fnaval_ has joined #openstack-qa17:48
*** pilgrimstack has quit IRC17:49
*** lucasagomes is now known as lucas-afk17:51
*** fnaval has quit IRC17:52
*** _nadya_ has joined #openstack-qa17:52
*** nwkarsten has joined #openstack-qa17:53
*** tosky_ has joined #openstack-qa17:54
*** tosky has quit IRC17:55
*** e0ne has joined #openstack-qa17:56
*** auggy is now known as frauggy17:57
*** nwkarsten has quit IRC17:57
*** yamahata_ has quit IRC18:01
*** tosky_ has quit IRC18:02
*** dims_ has joined #openstack-qa18:04
*** dims has quit IRC18:04
*** debraj has joined #openstack-qa18:05
*** Serlex has joined #openstack-qa18:06
*** debraj has quit IRC18:06
*** ihrachys has quit IRC18:06
*** rossella_s has joined #openstack-qa18:10
*** mriedem has joined #openstack-qa18:12
*** binbincong has quit IRC18:13
*** dontrump has quit IRC18:13
*** shardy has quit IRC18:13
*** nwkarsten has joined #openstack-qa18:14
*** fedexo has quit IRC18:16
*** anshul has joined #openstack-qa18:16
*** nwkarsten has quit IRC18:18
*** binbincong has joined #openstack-qa18:21
*** jasonsb has quit IRC18:21
*** austin81 has joined #openstack-qa18:22
*** gszasz has quit IRC18:25
*** austin81 has left #openstack-qa18:26
*** asselin has left #openstack-qa18:30
*** binbincong has quit IRC18:31
*** binbincong has joined #openstack-qa18:33
*** nwkarsten has joined #openstack-qa18:34
*** nwkarste_ has joined #openstack-qa18:36
*** drptbl has joined #openstack-qa18:38
*** nwkarsten has quit IRC18:39
*** nwkarste_ has quit IRC18:41
*** yamahata_ has joined #openstack-qa18:41
*** gfidente has quit IRC18:42
*** drptbl has quit IRC18:48
*** ajmiller_ has joined #openstack-qa18:50
armaxmtreinish: so I gave this https://review.openstack.org/#/c/288959/ another look18:52
armaxmtreinish: this looks sane to my eyes, another pass from you when you have a chance would be great18:52
*** ajmiller__ has joined #openstack-qa18:53
*** ajmiller_ has quit IRC18:53
*** ajmiller has quit IRC18:53
*** nwkarsten has joined #openstack-qa18:57
*** nwkarsten has quit IRC19:01
*** alex_xu has quit IRC19:12
*** e0ne_ has joined #openstack-qa19:13
*** e0ne has quit IRC19:14
*** binbincong has quit IRC19:14
*** alex_xu has joined #openstack-qa19:16
*** nwkarsten has joined #openstack-qa19:17
*** fnaval_ is now known as fnaval19:18
openstackgerritMerged openstack-infra/devstack-gate: Use dd to create swapfile, ensure swap amount == 8GB  https://review.openstack.org/29077619:20
*** ajmiller__ is now known as ajmiller19:29
openstackrecheckopenstack/horizon change: https://review.openstack.org/270461 failed gate-horizon-python27, gate-horizon-python34, gate-horizon-tox-py27dj18 in the gate queue with an unrecognized error19:33
*** dpaterson has joined #openstack-qa19:33
*** e0ne_ has quit IRC19:40
*** sree has joined #openstack-qa19:44
*** _nadya_ has quit IRC19:44
*** nwkarsten has quit IRC19:50
*** anshul has quit IRC19:53
*** _nadya_ has joined #openstack-qa19:56
*** sree has quit IRC20:00
openstackgerritBrant Knudson proposed openstack-dev/devstack: Deploy keystone running in uwsgi proxy by apache  https://review.openstack.org/29181720:00
*** sree has joined #openstack-qa20:01
*** sree has quit IRC20:02
*** nwkarsten has joined #openstack-qa20:03
*** nwkarsten has quit IRC20:04
*** nwkarsten has joined #openstack-qa20:04
*** cdent_ has joined #openstack-qa20:07
*** cdent has quit IRC20:10
*** cdent_ is now known as cdent20:10
*** jlwhite has joined #openstack-qa20:12
*** eil397 has joined #openstack-qa20:19
*** ihrachys has joined #openstack-qa20:21
openstackgerritMerged openstack/tempest: Fix cleanup CLI for router client  https://review.openstack.org/29163020:27
*** _dpaterson has joined #openstack-qa20:28
*** ajmiller_ has joined #openstack-qa20:30
*** ajmiller has quit IRC20:30
openstackgerritMerged openstack-dev/devstack: Set the Swift max_file_size to 1/2 the loopback  https://review.openstack.org/28919420:31
*** Serlex has left #openstack-qa20:32
*** apoorvad has quit IRC20:32
*** asselin has joined #openstack-qa20:35
openstackrecheckopenstack/keystone change: https://review.openstack.org/137640 failed because of: gate-grenade-dsvm: https://bugs.launchpad.net/bugs/1450110 https://bugs.launchpad.net/bugs/135942820:38
openstackLaunchpad bug 1450110 in Cinder "boto tests randomly fail in resource_cleanup with "Failed to delete volume"" [High,Fix released] - Assigned to John Griffith (john-griffith)20:38
openstackLaunchpad bug 1359428 in Cinder "Checksum error\n Volume group for uuid not found; libdevmapper exiting with 2 device(s) still suspended" [High,Confirmed]20:38
*** dpaterson has quit IRC20:43
*** krtaylor has quit IRC20:45
*** cdent has quit IRC20:48
*** cdent has joined #openstack-qa20:49
*** apoorvad has joined #openstack-qa20:50
*** josdotso has joined #openstack-qa20:53
*** cdent has quit IRC20:54
*** sigmavirus24 is now known as sigmavirus24_awa21:05
*** dpaterson has joined #openstack-qa21:12
*** alex_xu has quit IRC21:14
*** alex_xu has joined #openstack-qa21:15
*** yarkot_ has joined #openstack-qa21:17
*** yolanda has quit IRC21:18
*** yolanda has joined #openstack-qa21:19
*** yarkot_ has quit IRC21:19
*** frauggy is now known as auggy21:20
*** sigmavirus24_awa is now known as sigmavirus2421:22
*** _dpaterson has quit IRC21:26
*** nwkarste_ has joined #openstack-qa21:28
*** nwkarsten has quit IRC21:32
*** devananda has quit IRC21:35
*** nwkarste_ has quit IRC21:35
*** nwkarsten has joined #openstack-qa21:35
*** mriedem has quit IRC21:36
*** nwkarste_ has joined #openstack-qa21:37
*** nwkarsten has quit IRC21:40
*** nwkarste_ has quit IRC21:42
*** _nadya_ has quit IRC21:43
*** r-mibu has quit IRC21:47
openstackrecheckopenstack/requirements change: https://review.openstack.org/291853 failed because of: gate-grenade-dsvm: https://bugs.launchpad.net/bugs/154500221:47
openstackLaunchpad bug 1545002 in oslo.messaging "Grenade Failure - MessagingTimeout on floating IP remove" [High,New]21:47
*** r-mibu has joined #openstack-qa21:47
*** devananda has joined #openstack-qa21:48
*** nwkarsten has joined #openstack-qa21:49
*** aysyd has quit IRC21:50
*** nwkarsten has quit IRC21:53
*** sc68cal has quit IRC21:56
*** e0ne has joined #openstack-qa21:59
*** scottda is now known as scottda_on_vacat21:59
*** scottda_on_vacat is now known as scottda_vacation22:00
*** rfolco has quit IRC22:01
*** ajmiller has joined #openstack-qa22:02
*** ajmiller_ has quit IRC22:02
*** jaypipes has quit IRC22:02
*** alyson_ has quit IRC22:02
*** e0ne has quit IRC22:04
*** dkranz has quit IRC22:10
*** mylu has joined #openstack-qa22:15
*** melwitt has quit IRC22:18
*** melwitt has joined #openstack-qa22:18
*** dpaterson has quit IRC22:18
*** mylu has quit IRC22:19
*** regXboi has quit IRC22:21
*** krtaylor has joined #openstack-qa22:22
*** dave-mccowan has quit IRC22:31
*** krtaylor has quit IRC22:35
*** melwitt has quit IRC22:36
*** melwitt has joined #openstack-qa22:36
*** david-lyle has quit IRC22:37
*** krtaylor has joined #openstack-qa22:43
*** jlk has quit IRC22:43
*** dimtruck is now known as zz_dimtruck22:46
*** rcernin has joined #openstack-qa22:47
*** jlk has joined #openstack-qa22:48
*** jlk has quit IRC22:48
*** jlk has joined #openstack-qa22:48
*** alex_xu has quit IRC22:49
*** alex_xu has joined #openstack-qa22:51
*** ihrachys has quit IRC22:53
*** bauwser is now known as bauzas23:00
*** jlk has quit IRC23:01
*** jlk has joined #openstack-qa23:01
*** amotoki has quit IRC23:04
*** rcernin has quit IRC23:06
*** rcernin has joined #openstack-qa23:08
*** mylu has joined #openstack-qa23:10
*** mylu has quit IRC23:11
*** vhosakot has quit IRC23:12
*** jlwhite has quit IRC23:12
*** mylu has joined #openstack-qa23:13
*** jlk has left #openstack-qa23:13
*** safchain has quit IRC23:14
openstackgerritMatthew Treinish proposed openstack/tempest: Add note a section to lib doc about where to put plugins  https://review.openstack.org/29083723:15
*** akshai has quit IRC23:16
*** sigmavirus24 is now known as sigmavirus24_awa23:22
*** eil397 has quit IRC23:30
*** rcernin has quit IRC23:31
*** eil397 has joined #openstack-qa23:31
openstackrecheckopenstack/keystone change: https://review.openstack.org/286909 failed gate-tempest-dsvm-postgres-full in the gate queue with an unrecognized error23:45
*** erlon has quit IRC23:48
*** yangyapeng has quit IRC23:54
*** nwkarsten has joined #openstack-qa23:55
*** yangyapeng has joined #openstack-qa23:57
*** ylobankov has quit IRC23:59

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