Wednesday, 2015-04-15

nikhil_kflwang1: has he commented?00:00
nikhil_kguys really great to see we are working hard on stabilizing Kilo; much appreciate all the help!00:00
flwang1nikhil_k: i'm talking about this changed he introduced https://github.com/openstack/glance/blob/master/glance/db/sqlalchemy/api.py#L57300:01
flwang1it will skip the 'deleted' filter param and display the deleted images00:02
flwang1but I don't think it's following the initial design of v1 to list deleted images00:02
nikhil_kflwang1: yes, changes-since is meant for showing deleted stuff that's old and like warehousing types00:03
flwang1nikhil_k: really?00:03
flwang1is it a common understanding?00:03
* flaper87 has to catch a plane! ttyl00:04
nikhil_kflwang1: can you be more explicity about that design? You don't have to repeat it if you've said it in the conversation with Rosmaita over on the review00:04
nikhil_kciao flaper8700:04
flwang1ttyl, flaper8700:04
nikhil_kflwang1: Not sure if it's a common understanding but here's something that might help00:04
flwang1nikhil_k: IMHO, changes-since is most like a query condition to show those images changed from a specific time point00:04
flwang1but it's not related to deleted00:05
nikhil_kNova also has this changes-since stuff support (last I remember)00:05
flwang1for image or instance?00:05
nikhil_kSo, this was initially desinged for stuff that customers wanted to keep for years say 5-7 years old stuff00:05
nikhil_kand then pull down the context (metadata) info on instance incl. image meta00:06
flwang1nikhil_k: my point is do we still need the 'deleted' parameter associated with 'changes-since' to show the deleted images00:06
nikhil_kBut Nova DB can't scale that well for that long period of data so, may be we need to get rid of it at some point00:06
nikhil_kflwang1: We need either changes-since or deleted00:07
nikhil_kfor showing deleted stuff00:07
flwang1see https://github.com/openstack/glance/blob/master/glance/registry/api/v1/images.py#L24700:07
flwang1for now, in v1, we're messing the query for deleted images00:08
nikhil_kflwang1: yes, the bad thing is v1 was supposed to be internal only API00:09
nikhil_kbut we moved away from that idea at some point and this context got lost00:09
flwang1at https://github.com/openstack/glance/blob/master/glance/registry/api/v1/images.py#L247, glance is expecting 'deleted' as param to show deleted images, but at https://github.com/openstack/glance/blob/master/glance/db/sqlalchemy/api.py#L573 it will only check if there is the 'changes-since' param for showing the deleted images00:09
flwang1nikhil_k: i see00:09
*** julim has joined #openstack-glance00:10
*** jlk has joined #openstack-glance00:11
flwang1so what's your opinion for this?00:11
jlkIs there an API call I can make to discover the location of an image, whether it's a file:/// location or a http location?00:11
jlkI see there is policy for it, but not sure what APi call that policy might act upon00:11
flwang1jlk: what did you mean 'discover the location of an image'?00:12
nikhil_kflwang1: let's chat after talking to jlk . My opinion is a little skewed we may need some consultation with our prod managers on what they want00:12
jlkflwang1: we're designing a check, to look at glance for all the images that should be in the glance store of file:/// and then checking the store itself for those files00:12
jlkwe have some images that are created using --location, so glance fetches them from http(s) each time00:13
jlkwe dont' want to alert on those missing from the store, obviously00:13
jlkI'm trying to avoid digging through the database directly, thus using the API, but I can't seem to make the API give me the image location data00:13
flwang1jlk: ah, you can just go through the locations attr of image00:14
jlkwhat API call gets me the attrs?00:14
flwang1'locations' will include all the locations of the image00:14
flwang1i can't remember if v1 support that00:14
flwang1but you can see that with v2/images for sure00:15
flwang1jlk: and you need to add a config 'show_multiple_locations = True' in your glance-api.conf00:16
nikhil_kyes, please check images schema for locations property00:16
flwang1hope it's helpful00:16
jlkchecking00:16
jlkif show_multiple_locations isn't true, then it won't show any locations?00:17
flwang1not really00:17
jlk"(BoolOpt) Whether to include the backend image locations in image properties." ah...00:18
*** smc7 has quit IRC00:20
flwang1nikhil_k: re 'My opinion is a little skewed we may need some consultation with our prod managers on what they want', did you mean discuss with rosmaita?00:22
nikhil_kflwang1: yes. What did you want to have opinion on though specifically? I kinda presumed that it would be on something related to deleting changes-since filter?00:23
nikhil_kflwang1: But we need it to support Nova image list call even for v2..00:23
jlkthanks all, setting that gave me back locations, which we can work with.00:23
*** r-daneel has quit IRC00:24
nikhil_kcool, have a nice on jlk00:24
nikhil_kone*00:24
nikhil_kflwang1: And the links you showed me, the sql filter applies changes-since in both places v1/images as well as sql/api00:24
flwang1nikhil_k: v2 is another topic based on the discussion rosmaita and me00:24
nikhil_kok00:25
flwang1i will draft a spec for v200:25
nikhil_kappreciate it00:25
nikhil_kthe thing is even with admin, it's expecting that filter00:25
nikhil_kadmin context00:25
nikhil_khttps://github.com/openstack/glance/blob/master/glance/registry/api/v1/images.py#L25200:25
nikhil_kand on line 25400:25
*** jlk has left #openstack-glance00:26
flwang1nikhil_k: for v2, if you give it the changes-since param, you will get an 400 error, The "changes-since" filter is no longer available on v2.00:26
flwang1nikhil_k: yep00:27
flwang1so that's my question00:27
flwang1obviously, now there are some messing in the code00:27
flwang1we don't support 'deleted' param for now, it has been removed by accidentally. and at https://github.com/openstack/glance/blob/master/glance/registry/api/v1/images.py#L252, we're still trying to access it00:28
flwang1and in the db api, we're bypassing it00:28
flwang1so that's what i'm trying to address00:28
flwang1we need a clean/consistent way to display the deleted images00:29
nikhil_kflwang1: umm, removed ? I may have missed that patch!00:30
nikhil_kthe filters on v1/images and sql/api seem to support it00:30
flwang1removed for what?00:32
flwang1nikhil_k: i need to grab some food, brb00:33
nikhil_kflwang1: ok, I think we are not on the same page00:34
nikhil_kflwang1: I will be back in a couple hours or so00:34
*** dims_ has joined #openstack-glance00:35
*** dims has quit IRC00:36
*** ericpeterson has joined #openstack-glance00:42
*** annashen has joined #openstack-glance00:49
*** annashen has quit IRC00:55
*** ayoung has joined #openstack-glance01:09
openstackgerritJamie Lennox proposed openstack/python-glanceclient: Make glanceclient accept a session object  https://review.openstack.org/14199401:12
*** MVenesio has quit IRC01:31
*** ericpeterson has quit IRC01:47
openstackgerritFei Long Wang proposed openstack/glance: v1 API should be in SUPPORTED status  https://review.openstack.org/17364601:59
openstackgerritFei Long Wang proposed openstack/glance: Fix wrong docstring by copy-paste  https://review.openstack.org/17364902:07
*** smc7 has joined #openstack-glance02:08
*** smc7 has quit IRC02:13
*** changbl has joined #openstack-glance02:14
*** harlowja is now known as harlowja_away02:17
*** dims_ has quit IRC02:21
flwang1rosmaita: around?02:25
*** spzala has quit IRC02:26
*** julim has quit IRC02:43
*** flwang has quit IRC02:48
*** julim has joined #openstack-glance02:55
*** wokuma has quit IRC03:00
*** flwang has joined #openstack-glance03:01
*** ericpeterson has joined #openstack-glance03:15
openstackgerritFei Long Wang proposed openstack/glance: Use set instead of list to speed up image query  https://review.openstack.org/17366303:17
*** Longgeek has joined #openstack-glance03:18
*** aswadr has joined #openstack-glance03:25
nikhil_kflwang1: back03:28
flwang1nikhil_k: cool ;)03:29
flwang1https://review.openstack.org/17364603:29
nikhil_kflwang1: so a couple of questions to understand you correctly03:29
flwang1https://review.openstack.org/17364903:29
nikhil_kok03:29
flwang1 https://review.openstack.org/17366303:29
flwang1haha03:29
flwang1nikhil_k: sure, listen...03:29
nikhil_knice patches03:31
nikhil_kthanks03:31
nikhil_kflwang1: about changes-since03:31
*** ericpeterson has quit IRC03:31
nikhil_kflwang1: so the deleted filter, it should work on image-list call with role as product admin03:31
nikhil_kdoes that not work for you?03:32
nikhil_kalso, changes-since should work irrespective of deleted set in the filter or not03:32
flwang1nikhil_k: no03:32
nikhil_kand admin or not03:32
flwang11. if you're using cli03:32
flwang1you will the --deleted status is not supported03:33
flwang12. if you're using rest api directly, you will see the 'deleted' will be skipped because https://github.com/openstack/glance/blob/master/glance/api/v1/__init__.py#L1603:34
flwang13. if you're using rest api, you can always get the deleted images with changes-since param03:35
flwang14. if you're using cli, you can't use changes-since, because it's not supported by our client03:35
flwang1so confusing, right? :)03:35
nikhil_kumm, I get there was some force_show_deleted param somewhere. checking one sec03:35
nikhil_kso that's 5th one for you :P ;)03:36
flwang1nikhil_k: just confirm, did you mean the word 'changes-since' has the meaning like the object has been deleted/removed?03:39
*** Longgeek has quit IRC03:41
nikhil_kflwang1: I think that's the original idea. But not sure if it's being used outside of it. It really is to see the instance/image(s) that have been changed using that 'since' param irrespective of the status03:44
nikhil_kAnd as people will mostly likely use other filters to see the active resource03:44
nikhil_kchanges-since is very ineffective03:45
flwang1yep, but changes is not only limited to 'deleted', right?03:45
flwang1and actually, if you look the code, you will see it just compare the updated_at filed03:46
nikhil_kflwang1: agree, it's to see the changes on a resource irrespective on the state03:47
nikhil_kbut03:47
flwang1i just want to figure out a consistent way to support the feature03:47
nikhil_kit is informally encouraged to use on deleted03:47
flwang1ok03:47
flwang1if that's the case, I think v1 'works' fine, and we just need some cleanup work for the 'deleted' param03:48
nikhil_kflwang1: so, I have to agree on the deleted filter. It's not very consistent and super confusing. Seems like we are allowing deleted resources to be queried from different vectors but they are all over the place..03:48
flwang1nikhil_k: exactly03:49
nikhil_kflwang1: so, the sql query03:49
flwang1nikhil_k: so how about we still don't support the 'deleted' param, just like we're doing right now03:49
flwang1and just clean up the code to remove what ever trying to query the 'deleted'03:50
flwang1i mean the 'deleted' param03:51
*** ayoung is now known as ayoung_ZZZzzz03:52
nikhil_kflwang1: yes, but please let me check for corener cases03:52
flwang1and meanwhile, we need to fix our glance client to support the 'changes-since' param03:52
flwang1nikhil_k: sure03:52
nikhil_kflwang1: well, I think there is a reason for not exposing changes-since on the client03:52
nikhil_kas they want people to strongly discourage from using it03:52
flwang1nikhil_k: wow03:52
nikhil_kit was something that prolly rackspace wanted a couple years back on the feature parity with older cloud (not openstack)03:53
nikhil_kand times were different then03:53
flwang1long story, right?03:53
nikhil_kand features were less and people developing had smaller context to deal with and... so on :)03:54
*** aswadr has quit IRC03:54
nikhil_kyes, long story :D03:54
flwang1so, what's your opinion for now?03:55
*** TravT has joined #openstack-glance03:55
nikhil_kflwang1: I'm trying to determine how are people dealing with this use case. Looks like the deleted param was never supported. So, if you want to use changes-since for getting that list, it would be okay03:57
nikhil_kWe are looking to extend the changes-since support for v2 as Nova needs it anyways03:57
*** smc7 has joined #openstack-glance03:58
nikhil_kDoes that work?03:58
flwang1nikhil_k: so you mean for v1, keep it as what it's, for now, and for v2, we will continue to support the changes-since, right?03:59
nikhil_kflwang1: right. And if you need support for it in client we should go ahead on that03:59
flwang1that's my question. if we want to continue it in v2, then should we support it in glance client v1?04:00
*** stevemar has quit IRC04:01
*** smc7 has quit IRC04:02
nikhil_kflwang1: oh man, you brought up a really good point here. I've never bothered to look at this side of code because policy has disallowed listing on deleted images at work :)04:04
nikhil_kflwang1: so yes, let's start supporting this in client once v2 has support for it04:04
nikhil_kbut for v1 we can support it now too04:04
nikhil_kflwang1: sorry, I may be saying too many things and do not intend to confuse you. The whole deal seems rather messy as you said earlier.04:05
flwang1nikhil_k: ok, got, so the summary will be, don't touch anything for v1, but add a param support for changes-since04:05
nikhil_kflwang1: yes!04:05
flwang1for v2, i will submit a spec to draft what we should do04:06
flwang1cool, awesome04:06
nikhil_k.swesome.04:06
nikhil_k.awesome.04:06
flwang1pls have review above tiny patches, all of them are very small :)04:07
nikhil_klol swesome is on urban dictionary04:07
flwang1and this one https://review.openstack.org/17239504:07
nikhil_ksure04:07
flwang1really? cool04:07
*** gberginc has joined #openstack-glance04:10
nikhil_kflwang1: +2ed most of them04:16
flwang1nikhil_k: yep, i saw that, thank you so much, man04:17
nikhil_kflwang1: NP :) Gunna be afk. Until tomorrow. Ciao04:17
flwang1ttyl04:17
*** annashen has joined #openstack-glance04:21
openstackgerritFei Long Wang proposed openstack/glance: Use 'set' instead of 'list' to speed up image query  https://review.openstack.org/17366304:26
*** annashen has quit IRC04:26
*** TravT has quit IRC04:27
*** TravT has joined #openstack-glance04:30
*** cpallares has joined #openstack-glance04:31
*** TravT has quit IRC04:32
*** Longgeek has joined #openstack-glance04:37
*** Longgeek has quit IRC04:44
*** stevemar has joined #openstack-glance04:55
*** cpallares has quit IRC05:00
*** flwang1 has quit IRC05:02
*** TravT has joined #openstack-glance05:11
*** ajayaa has joined #openstack-glance05:14
*** gberginc has quit IRC05:17
openstackgerritMerged openstack/python-glanceclient: Add unit tests for log_curl_request  https://review.openstack.org/10546405:31
*** nlevinki has joined #openstack-glance05:33
*** lan has quit IRC05:35
*** lan has joined #openstack-glance05:35
*** sgotliv has joined #openstack-glance05:36
*** gberginc has joined #openstack-glance05:43
*** Longgeek has joined #openstack-glance05:48
*** bkopilov has quit IRC05:53
*** groen692 has joined #openstack-glance05:53
*** bkopilov has joined #openstack-glance05:59
*** ajayaa has quit IRC06:07
*** TravT has quit IRC06:11
*** stevemar has quit IRC06:15
*** alex_xu has quit IRC06:18
*** ajayaa has joined #openstack-glance06:24
*** bkopilov has quit IRC06:24
*** alex_xu has joined #openstack-glance06:30
*** tshefi has joined #openstack-glance06:50
*** bkopilov has joined #openstack-glance06:50
*** sgotliv has quit IRC06:55
*** bkopilov has quit IRC06:56
*** jeblair has quit IRC07:05
*** jeblair has joined #openstack-glance07:07
*** rwsu has quit IRC07:09
*** bkopilov has joined #openstack-glance07:11
*** markus_z has joined #openstack-glance07:12
*** jistr has joined #openstack-glance07:24
*** annashen has joined #openstack-glance07:24
*** annashen has quit IRC07:29
*** krykowski has joined #openstack-glance07:33
*** smc7 has joined #openstack-glance07:35
*** chlong has quit IRC07:35
*** smc7 has quit IRC07:39
*** c0m0 has joined #openstack-glance07:42
*** bkopilov has quit IRC07:45
*** belmoreira has joined #openstack-glance07:47
*** abhishekk has joined #openstack-glance07:47
*** bkopilov has joined #openstack-glance07:49
*** bkopilov has quit IRC07:54
*** bkopilov has joined #openstack-glance07:54
*** e0ne has joined #openstack-glance08:02
*** e0ne has quit IRC08:05
*** buzztroll has quit IRC08:06
*** e0ne has joined #openstack-glance08:08
*** bkopilov has quit IRC08:10
openstackgerritKamil Rykowski proposed openstack/glance-specs: Support CIS service in glanceclient  https://review.openstack.org/17371608:15
*** bkopilov has joined #openstack-glance08:17
*** e0ne has quit IRC08:19
openstackgerritKamil Rykowski proposed openstack/glance-specs: Support CIS service in glanceclient  https://review.openstack.org/17371808:22
*** e0ne has joined #openstack-glance08:23
openstackgerritKamil Rykowski proposed openstack/glance-specs: Support CIS service in glanceclient  https://review.openstack.org/17371808:24
*** e0ne has quit IRC08:29
*** e0ne has joined #openstack-glance08:33
*** bkopilov has quit IRC08:39
*** e0ne has quit IRC08:41
*** bkopilov has joined #openstack-glance08:45
*** bkopilov has quit IRC08:51
*** bkopilov has joined #openstack-glance08:52
*** bkopilov has quit IRC08:57
*** sgotliv has joined #openstack-glance09:11
*** flwang1 has joined #openstack-glance09:16
*** freerunner has quit IRC09:23
*** smc7 has joined #openstack-glance09:24
*** freerunner has joined #openstack-glance09:25
*** freerunner has quit IRC09:25
*** freerunner has joined #openstack-glance09:26
*** freerunner has quit IRC09:26
*** freerunner has joined #openstack-glance09:27
*** mclaren has quit IRC09:27
*** smc7 has quit IRC09:28
*** freerunner has quit IRC09:29
*** freerunner has joined #openstack-glance09:29
*** freerunner has quit IRC09:31
*** freerunner has joined #openstack-glance09:32
*** freerunner has quit IRC09:33
*** e0ne has joined #openstack-glance09:34
*** freerunner has joined #openstack-glance09:34
*** freerunner has quit IRC09:35
openstackgerritFei Long Wang proposed openstack/python-glanceclient: Add parameter 'changes-since' for image-list of v1  https://review.openstack.org/17373809:35
*** freerunner has joined #openstack-glance09:36
*** freerunner has quit IRC09:37
*** freerunner has joined #openstack-glance09:38
*** freerunner has quit IRC09:38
*** freerunner has joined #openstack-glance09:39
*** freerunner has quit IRC09:40
*** freerunner has joined #openstack-glance09:41
*** freerunner has quit IRC09:42
*** freerunner has joined #openstack-glance09:44
*** freerunner has quit IRC09:45
*** e0ne is now known as e0ne_09:49
*** freerunner has joined #openstack-glance09:51
*** jamielennox is now known as jamielennox|away09:52
*** freerunner has quit IRC09:52
*** freerunner has joined #openstack-glance09:54
*** freerunner has quit IRC09:54
*** e0ne_ has quit IRC10:01
*** Longgeek has quit IRC10:02
*** Longgeek_ has joined #openstack-glance10:02
*** e0ne has joined #openstack-glance10:03
*** mfedosin has quit IRC10:20
*** flwang1 has quit IRC10:21
*** annashen has joined #openstack-glance10:26
*** nlevinki_ has joined #openstack-glance10:28
*** mfedosin has joined #openstack-glance10:29
*** nlevinki has quit IRC10:30
*** annashen has quit IRC10:31
*** ParsectiX has joined #openstack-glance10:33
*** e0ne is now known as e0ne_10:39
*** e0ne_ is now known as e0ne10:42
*** e0ne has quit IRC10:53
*** e0ne has joined #openstack-glance10:54
*** sgotliv has quit IRC11:00
openstackgerritMerged openstack/python-glanceclient: Fix client when using no ssl compression  https://review.openstack.org/17245311:05
*** bkopilov has joined #openstack-glance11:07
openstackgerritMerged openstack/python-glanceclient: Fix https stack trace on python 3.4 client  https://review.openstack.org/17263411:07
*** dims has joined #openstack-glance11:08
*** smc7 has joined #openstack-glance11:12
*** sgotliv has joined #openstack-glance11:15
*** smc7 has quit IRC11:17
*** e0ne is now known as e0ne_11:19
*** nlevinki_ has quit IRC11:19
*** nlevinki has joined #openstack-glance11:22
*** e0ne_ has quit IRC11:29
*** Longgeek has joined #openstack-glance11:29
*** Longgeek_ has quit IRC11:31
*** e0ne has joined #openstack-glance11:38
openstackgerritKamil Rykowski proposed openstack/glance: Don't use slashes for long lines - use parentheses instead  https://review.openstack.org/13601211:48
*** aix has quit IRC11:50
*** freerunner has joined #openstack-glance11:57
*** freerunner has quit IRC11:57
*** freerunner has joined #openstack-glance11:58
*** freerunner has quit IRC11:59
*** freerunner has joined #openstack-glance12:01
*** julim has quit IRC12:01
*** freerunner has quit IRC12:03
*** freerunner has joined #openstack-glance12:03
*** freerunner has quit IRC12:05
*** freerunner has joined #openstack-glance12:07
*** ericpeterson has joined #openstack-glance12:08
*** freerunner has quit IRC12:08
*** ericpeterson has quit IRC12:09
*** freerunner has joined #openstack-glance12:09
*** freerunner has quit IRC12:09
*** ericpeterson has joined #openstack-glance12:09
*** freerunner has joined #openstack-glance12:12
*** freerunner has quit IRC12:12
*** MVenesio has joined #openstack-glance12:13
*** freerunner has joined #openstack-glance12:14
*** e0ne is now known as e0ne_12:14
*** freerunner has quit IRC12:16
*** freerunner has joined #openstack-glance12:17
*** freerunner has quit IRC12:19
*** freerunner has joined #openstack-glance12:23
*** gberginc has quit IRC12:25
*** e0ne_ has quit IRC12:26
*** aix has joined #openstack-glance12:28
*** ericpeterson has quit IRC12:29
*** e0ne has joined #openstack-glance12:30
*** jaypipes has quit IRC12:42
*** julim has joined #openstack-glance12:43
ajayaaHi guys. I am seeing a strange behaviour while listing images in v2 vs v1 api.12:45
ajayaav2 api shows me images where I am not owner.12:45
ajayaawhereas v1 does not show such images.12:45
ajayaakragniz ^^12:46
*** sgotliv has quit IRC12:50
*** annegentle has joined #openstack-glance12:50
*** sgotliv has joined #openstack-glance12:51
*** sgotliv has quit IRC12:51
*** sgotliv has joined #openstack-glance12:51
*** jaypipes has joined #openstack-glance12:56
*** smc7 has joined #openstack-glance13:01
*** ayoung_ZZZzzz is now known as ayoung13:06
*** smc7 has quit IRC13:06
*** dims has quit IRC13:13
*** mjturek1 has left #openstack-glance13:14
*** dims has joined #openstack-glance13:15
*** MVenesio has quit IRC13:23
*** david-lyle has quit IRC13:24
*** stpierre has joined #openstack-glance13:27
*** annashen has joined #openstack-glance13:29
*** peristeri has joined #openstack-glance13:30
*** r-daneel has joined #openstack-glance13:31
*** annashen has quit IRC13:33
*** MattMan has quit IRC13:34
*** MattMan has joined #openstack-glance13:42
*** e0ne is now known as e0ne_13:43
*** e0ne_ is now known as e0ne13:43
*** TravT has joined #openstack-glance13:47
*** smc7 has joined #openstack-glance13:54
*** ericpeterson has joined #openstack-glance14:01
sigmavirus24_awaajayaa: uh14:05
sigmavirus24_awaajayaa: what revision/commit are you testing against?14:05
ajayaasigmavirus24_awa, master, commit number 6dc5477a12b9b904332ac6fe7932abbc7a0275a714:06
*** stevemar has joined #openstack-glance14:09
*** zz_jgrimm is now known as jgrimm14:11
*** abhishekk has quit IRC14:14
*** sigmavirus24_awa is now known as sigmavirus2414:20
*** stpierre_ has joined #openstack-glance14:20
*** stpierre has quit IRC14:23
*** jsheeren has joined #openstack-glance14:32
*** mclaren has joined #openstack-glance14:38
mclarensigmavirus24: ping14:38
sigmavirus24mclaren: yes?14:38
*** lakshmiS has joined #openstack-glance14:52
*** annegentle has quit IRC14:54
*** rwsu has joined #openstack-glance15:00
*** groen692 has quit IRC15:03
*** nlevinki has quit IRC15:04
*** jsheeren has quit IRC15:07
*** belmoreira has quit IRC15:08
*** c0m0 has quit IRC15:13
*** ParsectiX has quit IRC15:17
*** c0m0 has joined #openstack-glance15:19
*** pdb has quit IRC15:21
*** pdb has joined #openstack-glance15:21
*** stpierre_ is now known as stpierre15:23
*** stevemar has quit IRC15:28
*** ajayaa has quit IRC15:34
*** mclaren has quit IRC15:38
*** annegentle has joined #openstack-glance15:54
*** TravT has quit IRC15:57
openstackgerritKamil Rykowski proposed openstack/glance: Add logging when policies forbid an action  https://review.openstack.org/7280016:01
*** jistr has quit IRC16:03
*** jistr has joined #openstack-glance16:04
*** krykowski has quit IRC16:06
*** jistr has quit IRC16:09
*** dosaboy has quit IRC16:13
*** markus_z has quit IRC16:14
*** dosaboy has joined #openstack-glance16:14
*** TravT has joined #openstack-glance16:15
*** jistr has joined #openstack-glance16:15
*** annegentle has quit IRC16:16
*** jistr has quit IRC16:17
*** arnaud___ has joined #openstack-glance16:18
*** sgotliv has quit IRC16:25
*** buzztroll has joined #openstack-glance16:31
*** annashen has joined #openstack-glance16:32
*** annashen has quit IRC16:37
*** annashen has joined #openstack-glance16:37
*** EmilienM is now known as EmilienM|afk16:38
*** smcginnis has left #openstack-glance16:39
*** c0m0 has quit IRC16:40
*** arnaud___ has quit IRC16:42
*** arnaud___ has joined #openstack-glance16:43
*** arnaud___ has quit IRC16:47
*** e0ne has quit IRC16:56
*** sigmavirus24 is now known as sigmavirus24_awa17:19
*** aix has quit IRC17:22
*** bkopilov has quit IRC17:26
*** bkopilov has joined #openstack-glance17:30
*** ajayaa has joined #openstack-glance17:32
*** harlowja_away is now known as harlowja17:36
*** e0ne has joined #openstack-glance17:37
*** bkopilov has quit IRC17:39
*** bkopilov has joined #openstack-glance17:39
*** cbits has joined #openstack-glance17:43
*** bkopilov has quit IRC17:44
*** ivasilevskaya has joined #openstack-glance17:45
*** e0ne is now known as e0ne_17:50
*** smc7 has quit IRC17:50
*** Longgeek has quit IRC17:51
*** annashen has quit IRC17:57
*** annashen has joined #openstack-glance18:02
*** cbits has quit IRC18:03
*** annegentle has joined #openstack-glance18:04
*** e0ne_ is now known as e0ne18:05
*** sigmavirus24_awa is now known as sigmavirus2418:10
*** MVenesio has joined #openstack-glance18:13
*** dosaboy has quit IRC18:13
*** dosaboy has joined #openstack-glance18:14
*** dosaboy has quit IRC18:20
*** dosaboy has joined #openstack-glance18:21
*** EmilienM|afk is now known as EmilienM18:22
*** dosaboy has quit IRC18:22
*** dosaboy has joined #openstack-glance18:24
*** dosaboy has quit IRC18:24
*** dosaboy has joined #openstack-glance18:24
openstackgerritInessa Vasilevskaya proposed openstack/glance: artifact property -> json schema proof of concept  https://review.openstack.org/13225318:27
*** lakshmiS has quit IRC18:27
*** e0ne has quit IRC18:30
*** tshefi has quit IRC18:34
*** annegentle has quit IRC18:35
*** annegentle has joined #openstack-glance18:35
*** TravT has quit IRC18:49
*** cpallares has joined #openstack-glance18:50
*** smc7 has joined #openstack-glance18:59
*** annashen has quit IRC19:04
*** jaypipes has quit IRC19:18
*** spzala has joined #openstack-glance19:21
*** jaypipes has joined #openstack-glance19:21
*** peristeri has quit IRC19:24
*** sgotliv has joined #openstack-glance19:24
*** david-lyle has joined #openstack-glance19:30
*** e0ne has joined #openstack-glance19:30
*** e0ne has quit IRC19:41
*** alex_xu has quit IRC19:48
*** alex_xu has joined #openstack-glance19:49
*** spzala has quit IRC19:50
*** bkopilov has joined #openstack-glance19:54
*** sgotliv has quit IRC19:56
*** ajayaa has quit IRC19:58
*** annashen has joined #openstack-glance20:04
*** annashen has quit IRC20:08
*** annashen has joined #openstack-glance20:08
*** TravT has joined #openstack-glance20:14
*** spzala has joined #openstack-glance20:36
*** belmoreira has joined #openstack-glance20:47
openstackgerritMerged openstack/glance: Reduce DB calls when getting an image  https://review.openstack.org/17167420:47
openstackgerritMerged openstack/python-glanceclient: Omit 'locations' as image-create parameter  https://review.openstack.org/17239520:49
*** vijendar has joined #openstack-glance20:49
*** spzala has quit IRC20:49
*** spzala has joined #openstack-glance20:50
*** spzala has quit IRC20:57
*** spzala has joined #openstack-glance20:59
*** stpierre has quit IRC21:30
*** ericpeterson has quit IRC21:45
*** dims_ has joined #openstack-glance21:46
*** jamielennox|away is now known as jamielennox21:46
*** annegentle has quit IRC21:47
*** dims has quit IRC21:48
*** ericpeterson has joined #openstack-glance21:49
*** vijendar has quit IRC21:51
*** annegentle has joined #openstack-glance21:52
*** spzala has quit IRC21:53
*** spzala has joined #openstack-glance21:54
*** annegentle has quit IRC22:03
*** MVenesio has quit IRC22:09
*** belmoreira has quit IRC22:18
*** annegentle has joined #openstack-glance22:20
*** julim has quit IRC22:22
*** annegentle has quit IRC22:24
*** annashen has quit IRC22:30
*** annashen has joined #openstack-glance22:31
*** annegentle has joined #openstack-glance22:36
openstackgerritFei Long Wang proposed openstack/glance: Fix wrong docstring by copy-paste  https://review.openstack.org/17364922:40
*** annegentle has quit IRC22:41
*** cpallares has quit IRC22:46
*** ericpeterson has quit IRC22:54
openstackgerritMerged openstack/glance-specs: Liberty spec folder for tracking specs proposed  https://review.openstack.org/16338223:07
*** jaypipes has quit IRC23:08
*** chlong has joined #openstack-glance23:11
*** ericpeterson has joined #openstack-glance23:18
*** annashen has quit IRC23:21
*** jaypipes has joined #openstack-glance23:21
*** ericpeterson has quit IRC23:31
openstackgerritFei Long Wang proposed openstack/python-glanceclient: Add parameter 'changes-since' for image-list of v1  https://review.openstack.org/17373823:35
*** frickler_ has joined #openstack-glance23:35
openstackgerritFei Long Wang proposed openstack/python-glanceclient: Add parameter 'changes-since' for image-list of v1  https://review.openstack.org/17373823:35
*** HenryG_ has joined #openstack-glance23:35
*** aarefiev_ has joined #openstack-glance23:38
*** bkopilov has quit IRC23:38
*** HenryG has quit IRC23:38
*** cpallares has joined #openstack-glance23:38
*** bkopilov has joined #openstack-glance23:38
*** lan_ has joined #openstack-glance23:38
*** lan has quit IRC23:39
*** frickler has quit IRC23:39
*** aarefiev has quit IRC23:39
*** TravT has quit IRC23:40
*** ericpeterson has joined #openstack-glance23:47
cpallaresflwang: o/23:51
openstackgerritFei Long Wang proposed openstack/glance: Fix image owner can't be changed issue in v2  https://review.openstack.org/15469523:56
*** wolsen_ is now known as wolsen23:59

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