Friday, 2017-01-27

*** rcernin has joined #openstack-glance00:00
*** mingyu has quit IRC00:01
*** harlowja has quit IRC00:04
*** kebray has quit IRC00:42
*** jose-phillips has quit IRC00:43
*** rcernin has quit IRC00:51
*** rcernin has joined #openstack-glance00:54
*** rcernin has quit IRC00:55
*** rcernin has joined #openstack-glance00:55
*** mtanino has quit IRC01:10
openstackgerritDharini Chandrasekar proposed openstack/glance: Stricter checks for registry API calls  https://review.openstack.org/41676601:57
*** kebray has joined #openstack-glance02:00
openstackgerritMerged openstack/glance: Updated from global requirements  https://review.openstack.org/42566902:09
*** dims_ has joined #openstack-glance02:14
*** dims has quit IRC02:14
*** dims_ has quit IRC02:47
*** dims has joined #openstack-glance02:50
*** mtanino has joined #openstack-glance03:15
*** mtanino has quit IRC03:21
*** kebray has quit IRC03:52
*** nicolasbock has quit IRC04:17
*** mtreinish has quit IRC04:22
*** mtreinish has joined #openstack-glance04:22
openstackgerritHemanth Makkapati proposed openstack/glance: Add expand/contract commands to glance-manage CLI.  https://review.openstack.org/39299304:47
openstackgerritHemanth Makkapati proposed openstack/glance: Add expand/contract commands to glance-manage CLI.  https://review.openstack.org/39299304:51
*** udesale has joined #openstack-glance04:58
*** kebray has joined #openstack-glance05:01
*** adisky_ has joined #openstack-glance05:11
*** ratailor has joined #openstack-glance05:12
*** gb21 has joined #openstack-glance05:38
*** david-lyle has quit IRC05:46
*** ezoszed has joined #openstack-glance06:34
*** groen692 has joined #openstack-glance07:06
*** rcernin has quit IRC07:24
*** adisky_ has quit IRC07:29
*** mfedosin has joined #openstack-glance07:40
*** mfedosin has quit IRC08:29
*** adisky_ has joined #openstack-glance08:36
*** e0ne has joined #openstack-glance08:44
*** e0ne has quit IRC08:57
*** e0ne has joined #openstack-glance08:59
*** zzzeek has quit IRC09:00
*** zzzeek has joined #openstack-glance09:01
*** ezoszed1 has joined #openstack-glance09:04
*** ezoszed has quit IRC09:06
openstackgerritMerged openstack/glance: Update api-ref for partial download requests.  https://review.openstack.org/42592509:09
*** gabor_antal has joined #openstack-glance09:52
gabor_antalHey! Can someone help me? I've watching the code and got confused09:53
*** dalgaaf has quit IRC10:54
*** dalgaaf has joined #openstack-glance10:55
*** udesale has quit IRC11:01
*** mvk has quit IRC11:06
*** chlong has joined #openstack-glance11:24
*** gb21 has quit IRC11:43
*** smatzek has joined #openstack-glance11:52
*** catintheroof has joined #openstack-glance12:04
*** mvk has joined #openstack-glance12:04
*** nicolasbock has joined #openstack-glance12:04
*** ratailor has quit IRC13:03
*** catintheroof has quit IRC13:05
sigmavirusgabor_antal: watching what code? Glance? Has it become sentient?13:13
*** catintheroof has joined #openstack-glance13:16
dimsLOL good one sigmavirus13:46
sigmavirusdims: I tend to be slightly ... not so serious ... before the caffeine has fully sunk in13:47
*** ratailor has joined #openstack-glance14:09
*** ratailor has quit IRC14:11
*** markvoelker has joined #openstack-glance14:16
*** takedakn has joined #openstack-glance14:28
*** Dinesh_Bhor has quit IRC14:37
*** gb21 has joined #openstack-glance14:44
*** takedakn has quit IRC15:07
*** TravT has joined #openstack-glance15:07
gabor_antallol, no15:16
*** mtanino has joined #openstack-glance15:16
sigmavirusHey gabor_antal what's up?15:22
gabor_antalJust some random thing15:22
gabor_antalhttps://github.com/openstack/glance/blob/master/glance/api/v2/metadef_tags.py#L24215:22
gabor_antal https://github.com/openstack/glance/blob/master/glance/api/v2/metadef_tags.py#L25515:22
gabor_antalWhy they are using base_definitions method which simply returns None?15:23
gabor_antalThey arent in a class or so, so this None must be None (so they are not overridden in child)15:24
*** bhagyashris has quit IRC15:24
sigmavirusgabor_antal: that's an excellent question15:24
sigmavirusSadly I think all of our metadef experts (the folks who wrote that code) no longer work on openstack15:24
gabor_antal:(15:24
sigmavirusgabor_antal: is that causing problems for you?15:25
gabor_antalI thought for the first time, that it will be improved in the future, but this was merged 2 yes ago15:25
gabor_antalfor me? not really. I just checked our Sonar analyzer and found these weird thing.15:26
gabor_antalMaybe I can upload a patch, which modifies them to None15:26
sigmavirusgabor_antal: what is "them" in your last message?15:26
gabor_antalThere are 2 methods, which uses the _get_base_definitions(), but obviously, both of them are None, so we can change these occurences (along with definitions variable, which can be None in the method call)15:28
gabor_antaland also remove this simple method which literally just returns None15:28
gabor_antalsigmavirus: how do you think about that?15:29
sigmavirusgabor_antal: I think that's an change which has a negative improvement value15:30
gabor_antalwhy do you think?15:30
gabor_antalsry, why do you think that this is a negative improvement?15:30
*** gb21 has quit IRC15:30
sigmavirusgabor_antal: so right now, it indicates that those two functions should be using the same definitions (even if that function returns None)15:32
sigmavirusIf you replace those function calls with None, you lose that clarity15:32
sigmavirusFurther, you modify the file and those lines which gives the appearance of the code being maintained, which it's not15:33
sigmavirusIt's being trivially updated with very little value15:33
sigmavirusSo the change not only masks an area for future improvement and obfuscates the code, it also makes it appear that this was a valuable and necessary change15:33
gabor_antalYeah, but it was last updated 2 years ago, so scarcely will be updated in the near. Whoever wanted to work on this, he has other things, or left. So it's basically just a useless complication which always (and always will be) None. Removing this would improve readibility as the code will be clearer, as a useless method disappears.15:37
gabor_antalHowever, you are also right on this. So probably I just let it the way it was.15:37
sigmavirusgabor_antal: I'm not sure it improves readability15:40
sigmavirusIt definitely doesn't improve the understanding that both functions need the same definitions if you remove the function15:40
gabor_antalYeah I understand your point too15:40
sigmavirusIdeally someone will come along and create those definitions and replace "None" with the definition(s)15:41
gabor_antalYeah, that's right15:46
*** kebray has quit IRC15:48
openstackgerritBrian Rosmaita proposed openstack/glance: Update deprecated show_multiple_locations helptext  https://review.openstack.org/42628315:54
rosmaitasigmavirus: ^^ need your opinion on the above (it's a one word change, basically)15:55
sigmavirusI think we should refer them to real docs rather than newton relnotes15:57
sigmavirusbut that's orthogonal15:57
rosmaitathat would be nice if such docs existed15:57
rosmaita:)15:57
rosmaitawe need a section of documentation headed "Here there be dragons" and put the dangerous stuff in there15:58
*** mvk has quit IRC15:58
rosmaitawhile i'm wishing for stuff, it would be nice to have someone really interested in docs work with glance for a cycle to reorganize and write some missing documentation16:00
rosmaitathough actually, a lot of the help text for config options stuff that dharinic and hemanthm did in Newton has documented how to use most of the config options16:01
*** kebray has joined #openstack-glance16:10
*** groen692 has quit IRC16:20
*** burgerk has joined #openstack-glance16:21
*** groen692 has joined #openstack-glance16:23
*** david-lyle has joined #openstack-glance16:29
*** e0ne has quit IRC16:31
*** thiagolib has joined #openstack-glance16:34
*** groen692 has quit IRC17:02
*** harlowja has joined #openstack-glance18:02
*** chlong has quit IRC18:03
*** jose-phillips has joined #openstack-glance18:07
*** mvk has joined #openstack-glance18:16
openstackgerritNikhil Komawar proposed openstack/glance: Update deprecated show_multiple_locations helptext  https://review.openstack.org/42628318:25
*** jose-phillips has quit IRC18:26
openstackgerritNikhil Komawar proposed openstack/glance: Update deprecated show_multiple_locations helptext  https://review.openstack.org/42628318:27
*** david-lyle has quit IRC18:39
*** kebray has quit IRC18:42
*** dharinic is now known as dharinic|lunch18:42
*** dharinic|lunch is now known as dharinic19:27
openstackgerritNikhil Komawar proposed openstack/glance: Update deprecated show_multiple_locations helptext  https://review.openstack.org/42628319:29
openstackgerritBrian Rosmaita proposed openstack/glance: Add release note for image visibility changes  https://review.openstack.org/42289719:33
openstackgerritNikhil Komawar proposed openstack/glance: Update deprecated show_multiple_locations helptext  https://review.openstack.org/42628319:34
sigmavirusFor those of you subscribed to glance/glance-store/python-glanceclient bugs I'm trying to close out bugs/preapre bugs to close out. I apologize in advance for the spam you may receive19:41
*** jose-phillips has joined #openstack-glance19:49
openstackgerritDharini Chandrasekar proposed openstack/glance: Stricter checks for registry API calls  https://review.openstack.org/41676619:50
*** david-lyle has joined #openstack-glance19:53
*** david-lyle has quit IRC19:53
*** david-lyle has joined #openstack-glance19:54
*** david-lyle has quit IRC20:01
*** david-lyle has joined #openstack-glance20:01
dharinicnikhil: There? I was not sure I understood your comment in https://review.openstack.org/#/c/416766/20:14
*** jose-phillips has quit IRC20:29
*** e0ne has joined #openstack-glance20:31
*** e0ne has quit IRC20:33
*** e0ne has joined #openstack-glance20:38
*** jose-phillips has joined #openstack-glance20:52
*** e0ne has quit IRC20:56
*** jose-phillips has quit IRC20:58
*** smatzek has quit IRC20:58
*** smatzek has joined #openstack-glance20:59
*** e0ne has joined #openstack-glance21:02
*** e0ne has quit IRC21:02
*** e0ne has joined #openstack-glance21:04
*** kebray has joined #openstack-glance21:04
*** e0ne has quit IRC21:06
*** thiagolib has quit IRC21:08
*** TravT has quit IRC21:11
*** TravT has joined #openstack-glance21:14
*** kebray has quit IRC21:18
dimsrosmaita : glance/glare tests are mocking non-public stevedore API stopping us from moving to latest stevedore21:22
dimsrosmaita : http://codesearch.openstack.org/?q=_find_entry_points&i=nope&files=&repos=glance21:22
dimssigmavirus : ^21:22
*** smatzek has quit IRC21:22
*** catintheroof has quit IRC21:44
*** catintheroof has joined #openstack-glance21:45
*** catintheroof has quit IRC21:49
*** ducttape_ has joined #openstack-glance21:54
*** alex_bash has quit IRC22:08
*** abashmak_ has joined #openstack-glance22:08
*** jose-phillips has joined #openstack-glance22:11
*** abashmak_ is now known as alex_bash22:16
*** alex_bash has quit IRC22:20
*** abashmak_ has joined #openstack-glance22:22
*** abashmak_ is now known as alex_bash22:22
*** alex_bash has quit IRC22:23
*** abashmak_ has joined #openstack-glance22:24
openstackgerritHemanth Makkapati proposed openstack/glance: Testing changes required with Alembic move  https://review.openstack.org/39740922:29
oomichirosmaita: nice to skip unittests also on doc patches. It is great if you take a look at https://review.openstack.org/#/c/42641222:30
*** abashmak_ is now known as alex_bash22:39
openstackgerritHemanth Makkapati proposed openstack/glance: Testing changes required with Alembic move  https://review.openstack.org/39740922:39
openstackgerritHemanth Makkapati proposed openstack/glance: Testing changes required with Alembic move  https://review.openstack.org/39740922:40
*** burgerk has quit IRC22:50
*** takedakn has joined #openstack-glance22:59
openstackgerritDoug Hellmann proposed openstack/glance: do not mock private methods of objects from libraries  https://review.openstack.org/42642322:59
dhellmannrosmaita, sigmavirus, dims: I think this ^^ fixes the stevedore issue.23:00
openstackgerritDoug Hellmann proposed openstack/glance: do not mock private methods of objects from libraries  https://review.openstack.org/42642323:02
*** ducttape_ has quit IRC23:03
*** ducttape_ has joined #openstack-glance23:03
*** greghaynes has quit IRC23:10
*** ducttape_ has quit IRC23:24
*** greghaynes has joined #openstack-glance23:37
*** smatzek has joined #openstack-glance23:52
*** greghaynes has quit IRC23:52
*** smatzek_ has joined #openstack-glance23:53
*** smatzek_ has quit IRC23:54
*** smatzek_ has joined #openstack-glance23:55
*** ducttape_ has joined #openstack-glance23:56
*** smatzek has quit IRC23:57

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