nikhil_k | flwang1: has he commented? | 00:00 |
---|---|---|
nikhil_k | guys really great to see we are working hard on stabilizing Kilo; much appreciate all the help! | 00:00 |
flwang1 | nikhil_k: i'm talking about this changed he introduced https://github.com/openstack/glance/blob/master/glance/db/sqlalchemy/api.py#L573 | 00:01 |
flwang1 | it will skip the 'deleted' filter param and display the deleted images | 00:02 |
flwang1 | but I don't think it's following the initial design of v1 to list deleted images | 00:02 |
nikhil_k | flwang1: yes, changes-since is meant for showing deleted stuff that's old and like warehousing types | 00:03 |
flwang1 | nikhil_k: really? | 00:03 |
flwang1 | is it a common understanding? | 00:03 |
* flaper87 has to catch a plane! ttyl | 00:04 | |
nikhil_k | flwang1: 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 review | 00:04 |
nikhil_k | ciao flaper87 | 00:04 |
flwang1 | ttyl, flaper87 | 00:04 |
nikhil_k | flwang1: Not sure if it's a common understanding but here's something that might help | 00:04 |
flwang1 | nikhil_k: IMHO, changes-since is most like a query condition to show those images changed from a specific time point | 00:04 |
flwang1 | but it's not related to deleted | 00:05 |
nikhil_k | Nova also has this changes-since stuff support (last I remember) | 00:05 |
flwang1 | for image or instance? | 00:05 |
nikhil_k | So, this was initially desinged for stuff that customers wanted to keep for years say 5-7 years old stuff | 00:05 |
nikhil_k | and then pull down the context (metadata) info on instance incl. image meta | 00:06 |
flwang1 | nikhil_k: my point is do we still need the 'deleted' parameter associated with 'changes-since' to show the deleted images | 00:06 |
nikhil_k | But 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 point | 00:06 |
nikhil_k | flwang1: We need either changes-since or deleted | 00:07 |
nikhil_k | for showing deleted stuff | 00:07 |
flwang1 | see https://github.com/openstack/glance/blob/master/glance/registry/api/v1/images.py#L247 | 00:07 |
flwang1 | for now, in v1, we're messing the query for deleted images | 00:08 |
nikhil_k | flwang1: yes, the bad thing is v1 was supposed to be internal only API | 00:09 |
nikhil_k | but we moved away from that idea at some point and this context got lost | 00:09 |
flwang1 | at 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 images | 00:09 |
flwang1 | nikhil_k: i see | 00:09 |
*** julim has joined #openstack-glance | 00:10 | |
*** jlk has joined #openstack-glance | 00:11 | |
flwang1 | so what's your opinion for this? | 00:11 |
jlk | Is 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 |
jlk | I see there is policy for it, but not sure what APi call that policy might act upon | 00:11 |
flwang1 | jlk: what did you mean 'discover the location of an image'? | 00:12 |
nikhil_k | flwang1: 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 want | 00:12 |
jlk | flwang1: 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 files | 00:12 |
jlk | we have some images that are created using --location, so glance fetches them from http(s) each time | 00:13 |
jlk | we dont' want to alert on those missing from the store, obviously | 00:13 |
jlk | I'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 data | 00:13 |
flwang1 | jlk: ah, you can just go through the locations attr of image | 00:14 |
jlk | what API call gets me the attrs? | 00:14 |
flwang1 | 'locations' will include all the locations of the image | 00:14 |
flwang1 | i can't remember if v1 support that | 00:14 |
flwang1 | but you can see that with v2/images for sure | 00:15 |
flwang1 | jlk: and you need to add a config 'show_multiple_locations = True' in your glance-api.conf | 00:16 |
nikhil_k | yes, please check images schema for locations property | 00:16 |
flwang1 | hope it's helpful | 00:16 |
jlk | checking | 00:16 |
jlk | if show_multiple_locations isn't true, then it won't show any locations? | 00:17 |
flwang1 | not really | 00:17 |
jlk | "(BoolOpt) Whether to include the backend image locations in image properties." ah... | 00:18 |
*** smc7 has quit IRC | 00:20 | |
flwang1 | nikhil_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_k | flwang1: 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_k | flwang1: But we need it to support Nova image list call even for v2.. | 00:23 |
jlk | thanks all, setting that gave me back locations, which we can work with. | 00:23 |
*** r-daneel has quit IRC | 00:24 | |
nikhil_k | cool, have a nice on jlk | 00:24 |
nikhil_k | one* | 00:24 |
nikhil_k | flwang1: And the links you showed me, the sql filter applies changes-since in both places v1/images as well as sql/api | 00:24 |
flwang1 | nikhil_k: v2 is another topic based on the discussion rosmaita and me | 00:24 |
nikhil_k | ok | 00:25 |
flwang1 | i will draft a spec for v2 | 00:25 |
nikhil_k | appreciate it | 00:25 |
nikhil_k | the thing is even with admin, it's expecting that filter | 00:25 |
nikhil_k | admin context | 00:25 |
nikhil_k | https://github.com/openstack/glance/blob/master/glance/registry/api/v1/images.py#L252 | 00:25 |
nikhil_k | and on line 254 | 00:25 |
*** jlk has left #openstack-glance | 00:26 | |
flwang1 | nikhil_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 |
flwang1 | nikhil_k: yep | 00:27 |
flwang1 | so that's my question | 00:27 |
flwang1 | obviously, now there are some messing in the code | 00:27 |
flwang1 | we 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 it | 00:28 |
flwang1 | and in the db api, we're bypassing it | 00:28 |
flwang1 | so that's what i'm trying to address | 00:28 |
flwang1 | we need a clean/consistent way to display the deleted images | 00:29 |
nikhil_k | flwang1: umm, removed ? I may have missed that patch! | 00:30 |
nikhil_k | the filters on v1/images and sql/api seem to support it | 00:30 |
flwang1 | removed for what? | 00:32 |
flwang1 | nikhil_k: i need to grab some food, brb | 00:33 |
nikhil_k | flwang1: ok, I think we are not on the same page | 00:34 |
nikhil_k | flwang1: I will be back in a couple hours or so | 00:34 |
*** dims_ has joined #openstack-glance | 00:35 | |
*** dims has quit IRC | 00:36 | |
*** ericpeterson has joined #openstack-glance | 00:42 | |
*** annashen has joined #openstack-glance | 00:49 | |
*** annashen has quit IRC | 00:55 | |
*** ayoung has joined #openstack-glance | 01:09 | |
openstackgerrit | Jamie Lennox proposed openstack/python-glanceclient: Make glanceclient accept a session object https://review.openstack.org/141994 | 01:12 |
*** MVenesio has quit IRC | 01:31 | |
*** ericpeterson has quit IRC | 01:47 | |
openstackgerrit | Fei Long Wang proposed openstack/glance: v1 API should be in SUPPORTED status https://review.openstack.org/173646 | 01:59 |
openstackgerrit | Fei Long Wang proposed openstack/glance: Fix wrong docstring by copy-paste https://review.openstack.org/173649 | 02:07 |
*** smc7 has joined #openstack-glance | 02:08 | |
*** smc7 has quit IRC | 02:13 | |
*** changbl has joined #openstack-glance | 02:14 | |
*** harlowja is now known as harlowja_away | 02:17 | |
*** dims_ has quit IRC | 02:21 | |
flwang1 | rosmaita: around? | 02:25 |
*** spzala has quit IRC | 02:26 | |
*** julim has quit IRC | 02:43 | |
*** flwang has quit IRC | 02:48 | |
*** julim has joined #openstack-glance | 02:55 | |
*** wokuma has quit IRC | 03:00 | |
*** flwang has joined #openstack-glance | 03:01 | |
*** ericpeterson has joined #openstack-glance | 03:15 | |
openstackgerrit | Fei Long Wang proposed openstack/glance: Use set instead of list to speed up image query https://review.openstack.org/173663 | 03:17 |
*** Longgeek has joined #openstack-glance | 03:18 | |
*** aswadr has joined #openstack-glance | 03:25 | |
nikhil_k | flwang1: back | 03:28 |
flwang1 | nikhil_k: cool ;) | 03:29 |
flwang1 | https://review.openstack.org/173646 | 03:29 |
nikhil_k | flwang1: so a couple of questions to understand you correctly | 03:29 |
flwang1 | https://review.openstack.org/173649 | 03:29 |
nikhil_k | ok | 03:29 |
flwang1 | https://review.openstack.org/173663 | 03:29 |
flwang1 | haha | 03:29 |
flwang1 | nikhil_k: sure, listen... | 03:29 |
nikhil_k | nice patches | 03:31 |
nikhil_k | thanks | 03:31 |
nikhil_k | flwang1: about changes-since | 03:31 |
*** ericpeterson has quit IRC | 03:31 | |
nikhil_k | flwang1: so the deleted filter, it should work on image-list call with role as product admin | 03:31 |
nikhil_k | does that not work for you? | 03:32 |
nikhil_k | also, changes-since should work irrespective of deleted set in the filter or not | 03:32 |
flwang1 | nikhil_k: no | 03:32 |
nikhil_k | and admin or not | 03:32 |
flwang1 | 1. if you're using cli | 03:32 |
flwang1 | you will the --deleted status is not supported | 03:33 |
flwang1 | 2. 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#L16 | 03:34 |
flwang1 | 3. if you're using rest api, you can always get the deleted images with changes-since param | 03:35 |
flwang1 | 4. if you're using cli, you can't use changes-since, because it's not supported by our client | 03:35 |
flwang1 | so confusing, right? :) | 03:35 |
nikhil_k | umm, I get there was some force_show_deleted param somewhere. checking one sec | 03:35 |
nikhil_k | so that's 5th one for you :P ;) | 03:36 |
flwang1 | nikhil_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 IRC | 03:41 | |
nikhil_k | flwang1: 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 status | 03:44 |
nikhil_k | And as people will mostly likely use other filters to see the active resource | 03:44 |
nikhil_k | changes-since is very ineffective | 03:45 |
flwang1 | yep, but changes is not only limited to 'deleted', right? | 03:45 |
flwang1 | and actually, if you look the code, you will see it just compare the updated_at filed | 03:46 |
nikhil_k | flwang1: agree, it's to see the changes on a resource irrespective on the state | 03:47 |
nikhil_k | but | 03:47 |
flwang1 | i just want to figure out a consistent way to support the feature | 03:47 |
nikhil_k | it is informally encouraged to use on deleted | 03:47 |
flwang1 | ok | 03:47 |
flwang1 | if that's the case, I think v1 'works' fine, and we just need some cleanup work for the 'deleted' param | 03:48 |
nikhil_k | flwang1: 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 |
flwang1 | nikhil_k: exactly | 03:49 |
nikhil_k | flwang1: so, the sql query | 03:49 |
flwang1 | nikhil_k: so how about we still don't support the 'deleted' param, just like we're doing right now | 03:49 |
flwang1 | and just clean up the code to remove what ever trying to query the 'deleted' | 03:50 |
flwang1 | i mean the 'deleted' param | 03:51 |
*** ayoung is now known as ayoung_ZZZzzz | 03:52 | |
nikhil_k | flwang1: yes, but please let me check for corener cases | 03:52 |
flwang1 | and meanwhile, we need to fix our glance client to support the 'changes-since' param | 03:52 |
flwang1 | nikhil_k: sure | 03:52 |
nikhil_k | flwang1: well, I think there is a reason for not exposing changes-since on the client | 03:52 |
nikhil_k | as they want people to strongly discourage from using it | 03:52 |
flwang1 | nikhil_k: wow | 03:52 |
nikhil_k | it was something that prolly rackspace wanted a couple years back on the feature parity with older cloud (not openstack) | 03:53 |
nikhil_k | and times were different then | 03:53 |
flwang1 | long story, right? | 03:53 |
nikhil_k | and features were less and people developing had smaller context to deal with and... so on :) | 03:54 |
*** aswadr has quit IRC | 03:54 | |
nikhil_k | yes, long story :D | 03:54 |
flwang1 | so, what's your opinion for now? | 03:55 |
*** TravT has joined #openstack-glance | 03:55 | |
nikhil_k | flwang1: 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 okay | 03:57 |
nikhil_k | We are looking to extend the changes-since support for v2 as Nova needs it anyways | 03:57 |
*** smc7 has joined #openstack-glance | 03:58 | |
nikhil_k | Does that work? | 03:58 |
flwang1 | nikhil_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_k | flwang1: right. And if you need support for it in client we should go ahead on that | 03:59 |
flwang1 | that'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 IRC | 04:01 | |
*** smc7 has quit IRC | 04:02 | |
nikhil_k | flwang1: 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_k | flwang1: so yes, let's start supporting this in client once v2 has support for it | 04:04 |
nikhil_k | but for v1 we can support it now too | 04:04 |
nikhil_k | flwang1: 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 |
flwang1 | nikhil_k: ok, got, so the summary will be, don't touch anything for v1, but add a param support for changes-since | 04:05 |
nikhil_k | flwang1: yes! | 04:05 |
flwang1 | for v2, i will submit a spec to draft what we should do | 04:06 |
flwang1 | cool, awesome | 04:06 |
nikhil_k | .swesome. | 04:06 |
nikhil_k | .awesome. | 04:06 |
flwang1 | pls have review above tiny patches, all of them are very small :) | 04:07 |
nikhil_k | lol swesome is on urban dictionary | 04:07 |
flwang1 | and this one https://review.openstack.org/172395 | 04:07 |
nikhil_k | sure | 04:07 |
flwang1 | really? cool | 04:07 |
*** gberginc has joined #openstack-glance | 04:10 | |
nikhil_k | flwang1: +2ed most of them | 04:16 |
flwang1 | nikhil_k: yep, i saw that, thank you so much, man | 04:17 |
nikhil_k | flwang1: NP :) Gunna be afk. Until tomorrow. Ciao | 04:17 |
flwang1 | ttyl | 04:17 |
*** annashen has joined #openstack-glance | 04:21 | |
openstackgerrit | Fei Long Wang proposed openstack/glance: Use 'set' instead of 'list' to speed up image query https://review.openstack.org/173663 | 04:26 |
*** annashen has quit IRC | 04:26 | |
*** TravT has quit IRC | 04:27 | |
*** TravT has joined #openstack-glance | 04:30 | |
*** cpallares has joined #openstack-glance | 04:31 | |
*** TravT has quit IRC | 04:32 | |
*** Longgeek has joined #openstack-glance | 04:37 | |
*** Longgeek has quit IRC | 04:44 | |
*** stevemar has joined #openstack-glance | 04:55 | |
*** cpallares has quit IRC | 05:00 | |
*** flwang1 has quit IRC | 05:02 | |
*** TravT has joined #openstack-glance | 05:11 | |
*** ajayaa has joined #openstack-glance | 05:14 | |
*** gberginc has quit IRC | 05:17 | |
openstackgerrit | Merged openstack/python-glanceclient: Add unit tests for log_curl_request https://review.openstack.org/105464 | 05:31 |
*** nlevinki has joined #openstack-glance | 05:33 | |
*** lan has quit IRC | 05:35 | |
*** lan has joined #openstack-glance | 05:35 | |
*** sgotliv has joined #openstack-glance | 05:36 | |
*** gberginc has joined #openstack-glance | 05:43 | |
*** Longgeek has joined #openstack-glance | 05:48 | |
*** bkopilov has quit IRC | 05:53 | |
*** groen692 has joined #openstack-glance | 05:53 | |
*** bkopilov has joined #openstack-glance | 05:59 | |
*** ajayaa has quit IRC | 06:07 | |
*** TravT has quit IRC | 06:11 | |
*** stevemar has quit IRC | 06:15 | |
*** alex_xu has quit IRC | 06:18 | |
*** ajayaa has joined #openstack-glance | 06:24 | |
*** bkopilov has quit IRC | 06:24 | |
*** alex_xu has joined #openstack-glance | 06:30 | |
*** tshefi has joined #openstack-glance | 06:50 | |
*** bkopilov has joined #openstack-glance | 06:50 | |
*** sgotliv has quit IRC | 06:55 | |
*** bkopilov has quit IRC | 06:56 | |
*** jeblair has quit IRC | 07:05 | |
*** jeblair has joined #openstack-glance | 07:07 | |
*** rwsu has quit IRC | 07:09 | |
*** bkopilov has joined #openstack-glance | 07:11 | |
*** markus_z has joined #openstack-glance | 07:12 | |
*** jistr has joined #openstack-glance | 07:24 | |
*** annashen has joined #openstack-glance | 07:24 | |
*** annashen has quit IRC | 07:29 | |
*** krykowski has joined #openstack-glance | 07:33 | |
*** smc7 has joined #openstack-glance | 07:35 | |
*** chlong has quit IRC | 07:35 | |
*** smc7 has quit IRC | 07:39 | |
*** c0m0 has joined #openstack-glance | 07:42 | |
*** bkopilov has quit IRC | 07:45 | |
*** belmoreira has joined #openstack-glance | 07:47 | |
*** abhishekk has joined #openstack-glance | 07:47 | |
*** bkopilov has joined #openstack-glance | 07:49 | |
*** bkopilov has quit IRC | 07:54 | |
*** bkopilov has joined #openstack-glance | 07:54 | |
*** e0ne has joined #openstack-glance | 08:02 | |
*** e0ne has quit IRC | 08:05 | |
*** buzztroll has quit IRC | 08:06 | |
*** e0ne has joined #openstack-glance | 08:08 | |
*** bkopilov has quit IRC | 08:10 | |
openstackgerrit | Kamil Rykowski proposed openstack/glance-specs: Support CIS service in glanceclient https://review.openstack.org/173716 | 08:15 |
*** bkopilov has joined #openstack-glance | 08:17 | |
*** e0ne has quit IRC | 08:19 | |
openstackgerrit | Kamil Rykowski proposed openstack/glance-specs: Support CIS service in glanceclient https://review.openstack.org/173718 | 08:22 |
*** e0ne has joined #openstack-glance | 08:23 | |
openstackgerrit | Kamil Rykowski proposed openstack/glance-specs: Support CIS service in glanceclient https://review.openstack.org/173718 | 08:24 |
*** e0ne has quit IRC | 08:29 | |
*** e0ne has joined #openstack-glance | 08:33 | |
*** bkopilov has quit IRC | 08:39 | |
*** e0ne has quit IRC | 08:41 | |
*** bkopilov has joined #openstack-glance | 08:45 | |
*** bkopilov has quit IRC | 08:51 | |
*** bkopilov has joined #openstack-glance | 08:52 | |
*** bkopilov has quit IRC | 08:57 | |
*** sgotliv has joined #openstack-glance | 09:11 | |
*** flwang1 has joined #openstack-glance | 09:16 | |
*** freerunner has quit IRC | 09:23 | |
*** smc7 has joined #openstack-glance | 09:24 | |
*** freerunner has joined #openstack-glance | 09:25 | |
*** freerunner has quit IRC | 09:25 | |
*** freerunner has joined #openstack-glance | 09:26 | |
*** freerunner has quit IRC | 09:26 | |
*** freerunner has joined #openstack-glance | 09:27 | |
*** mclaren has quit IRC | 09:27 | |
*** smc7 has quit IRC | 09:28 | |
*** freerunner has quit IRC | 09:29 | |
*** freerunner has joined #openstack-glance | 09:29 | |
*** freerunner has quit IRC | 09:31 | |
*** freerunner has joined #openstack-glance | 09:32 | |
*** freerunner has quit IRC | 09:33 | |
*** e0ne has joined #openstack-glance | 09:34 | |
*** freerunner has joined #openstack-glance | 09:34 | |
*** freerunner has quit IRC | 09:35 | |
openstackgerrit | Fei Long Wang proposed openstack/python-glanceclient: Add parameter 'changes-since' for image-list of v1 https://review.openstack.org/173738 | 09:35 |
*** freerunner has joined #openstack-glance | 09:36 | |
*** freerunner has quit IRC | 09:37 | |
*** freerunner has joined #openstack-glance | 09:38 | |
*** freerunner has quit IRC | 09:38 | |
*** freerunner has joined #openstack-glance | 09:39 | |
*** freerunner has quit IRC | 09:40 | |
*** freerunner has joined #openstack-glance | 09:41 | |
*** freerunner has quit IRC | 09:42 | |
*** freerunner has joined #openstack-glance | 09:44 | |
*** freerunner has quit IRC | 09:45 | |
*** e0ne is now known as e0ne_ | 09:49 | |
*** freerunner has joined #openstack-glance | 09:51 | |
*** jamielennox is now known as jamielennox|away | 09:52 | |
*** freerunner has quit IRC | 09:52 | |
*** freerunner has joined #openstack-glance | 09:54 | |
*** freerunner has quit IRC | 09:54 | |
*** e0ne_ has quit IRC | 10:01 | |
*** Longgeek has quit IRC | 10:02 | |
*** Longgeek_ has joined #openstack-glance | 10:02 | |
*** e0ne has joined #openstack-glance | 10:03 | |
*** mfedosin has quit IRC | 10:20 | |
*** flwang1 has quit IRC | 10:21 | |
*** annashen has joined #openstack-glance | 10:26 | |
*** nlevinki_ has joined #openstack-glance | 10:28 | |
*** mfedosin has joined #openstack-glance | 10:29 | |
*** nlevinki has quit IRC | 10:30 | |
*** annashen has quit IRC | 10:31 | |
*** ParsectiX has joined #openstack-glance | 10:33 | |
*** e0ne is now known as e0ne_ | 10:39 | |
*** e0ne_ is now known as e0ne | 10:42 | |
*** e0ne has quit IRC | 10:53 | |
*** e0ne has joined #openstack-glance | 10:54 | |
*** sgotliv has quit IRC | 11:00 | |
openstackgerrit | Merged openstack/python-glanceclient: Fix client when using no ssl compression https://review.openstack.org/172453 | 11:05 |
*** bkopilov has joined #openstack-glance | 11:07 | |
openstackgerrit | Merged openstack/python-glanceclient: Fix https stack trace on python 3.4 client https://review.openstack.org/172634 | 11:07 |
*** dims has joined #openstack-glance | 11:08 | |
*** smc7 has joined #openstack-glance | 11:12 | |
*** sgotliv has joined #openstack-glance | 11:15 | |
*** smc7 has quit IRC | 11:17 | |
*** e0ne is now known as e0ne_ | 11:19 | |
*** nlevinki_ has quit IRC | 11:19 | |
*** nlevinki has joined #openstack-glance | 11:22 | |
*** e0ne_ has quit IRC | 11:29 | |
*** Longgeek has joined #openstack-glance | 11:29 | |
*** Longgeek_ has quit IRC | 11:31 | |
*** e0ne has joined #openstack-glance | 11:38 | |
openstackgerrit | Kamil Rykowski proposed openstack/glance: Don't use slashes for long lines - use parentheses instead https://review.openstack.org/136012 | 11:48 |
*** aix has quit IRC | 11:50 | |
*** freerunner has joined #openstack-glance | 11:57 | |
*** freerunner has quit IRC | 11:57 | |
*** freerunner has joined #openstack-glance | 11:58 | |
*** freerunner has quit IRC | 11:59 | |
*** freerunner has joined #openstack-glance | 12:01 | |
*** julim has quit IRC | 12:01 | |
*** freerunner has quit IRC | 12:03 | |
*** freerunner has joined #openstack-glance | 12:03 | |
*** freerunner has quit IRC | 12:05 | |
*** freerunner has joined #openstack-glance | 12:07 | |
*** ericpeterson has joined #openstack-glance | 12:08 | |
*** freerunner has quit IRC | 12:08 | |
*** ericpeterson has quit IRC | 12:09 | |
*** freerunner has joined #openstack-glance | 12:09 | |
*** freerunner has quit IRC | 12:09 | |
*** ericpeterson has joined #openstack-glance | 12:09 | |
*** freerunner has joined #openstack-glance | 12:12 | |
*** freerunner has quit IRC | 12:12 | |
*** MVenesio has joined #openstack-glance | 12:13 | |
*** freerunner has joined #openstack-glance | 12:14 | |
*** e0ne is now known as e0ne_ | 12:14 | |
*** freerunner has quit IRC | 12:16 | |
*** freerunner has joined #openstack-glance | 12:17 | |
*** freerunner has quit IRC | 12:19 | |
*** freerunner has joined #openstack-glance | 12:23 | |
*** gberginc has quit IRC | 12:25 | |
*** e0ne_ has quit IRC | 12:26 | |
*** aix has joined #openstack-glance | 12:28 | |
*** ericpeterson has quit IRC | 12:29 | |
*** e0ne has joined #openstack-glance | 12:30 | |
*** jaypipes has quit IRC | 12:42 | |
*** julim has joined #openstack-glance | 12:43 | |
ajayaa | Hi guys. I am seeing a strange behaviour while listing images in v2 vs v1 api. | 12:45 |
ajayaa | v2 api shows me images where I am not owner. | 12:45 |
ajayaa | whereas v1 does not show such images. | 12:45 |
ajayaa | kragniz ^^ | 12:46 |
*** sgotliv has quit IRC | 12:50 | |
*** annegentle has joined #openstack-glance | 12:50 | |
*** sgotliv has joined #openstack-glance | 12:51 | |
*** sgotliv has quit IRC | 12:51 | |
*** sgotliv has joined #openstack-glance | 12:51 | |
*** jaypipes has joined #openstack-glance | 12:56 | |
*** smc7 has joined #openstack-glance | 13:01 | |
*** ayoung_ZZZzzz is now known as ayoung | 13:06 | |
*** smc7 has quit IRC | 13:06 | |
*** dims has quit IRC | 13:13 | |
*** mjturek1 has left #openstack-glance | 13:14 | |
*** dims has joined #openstack-glance | 13:15 | |
*** MVenesio has quit IRC | 13:23 | |
*** david-lyle has quit IRC | 13:24 | |
*** stpierre has joined #openstack-glance | 13:27 | |
*** annashen has joined #openstack-glance | 13:29 | |
*** peristeri has joined #openstack-glance | 13:30 | |
*** r-daneel has joined #openstack-glance | 13:31 | |
*** annashen has quit IRC | 13:33 | |
*** MattMan has quit IRC | 13:34 | |
*** MattMan has joined #openstack-glance | 13:42 | |
*** e0ne is now known as e0ne_ | 13:43 | |
*** e0ne_ is now known as e0ne | 13:43 | |
*** TravT has joined #openstack-glance | 13:47 | |
*** smc7 has joined #openstack-glance | 13:54 | |
*** ericpeterson has joined #openstack-glance | 14:01 | |
sigmavirus24_awa | ajayaa: uh | 14:05 |
sigmavirus24_awa | ajayaa: what revision/commit are you testing against? | 14:05 |
ajayaa | sigmavirus24_awa, master, commit number 6dc5477a12b9b904332ac6fe7932abbc7a0275a7 | 14:06 |
*** stevemar has joined #openstack-glance | 14:09 | |
*** zz_jgrimm is now known as jgrimm | 14:11 | |
*** abhishekk has quit IRC | 14:14 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 14:20 | |
*** stpierre_ has joined #openstack-glance | 14:20 | |
*** stpierre has quit IRC | 14:23 | |
*** jsheeren has joined #openstack-glance | 14:32 | |
*** mclaren has joined #openstack-glance | 14:38 | |
mclaren | sigmavirus24: ping | 14:38 |
sigmavirus24 | mclaren: yes? | 14:38 |
*** lakshmiS has joined #openstack-glance | 14:52 | |
*** annegentle has quit IRC | 14:54 | |
*** rwsu has joined #openstack-glance | 15:00 | |
*** groen692 has quit IRC | 15:03 | |
*** nlevinki has quit IRC | 15:04 | |
*** jsheeren has quit IRC | 15:07 | |
*** belmoreira has quit IRC | 15:08 | |
*** c0m0 has quit IRC | 15:13 | |
*** ParsectiX has quit IRC | 15:17 | |
*** c0m0 has joined #openstack-glance | 15:19 | |
*** pdb has quit IRC | 15:21 | |
*** pdb has joined #openstack-glance | 15:21 | |
*** stpierre_ is now known as stpierre | 15:23 | |
*** stevemar has quit IRC | 15:28 | |
*** ajayaa has quit IRC | 15:34 | |
*** mclaren has quit IRC | 15:38 | |
*** annegentle has joined #openstack-glance | 15:54 | |
*** TravT has quit IRC | 15:57 | |
openstackgerrit | Kamil Rykowski proposed openstack/glance: Add logging when policies forbid an action https://review.openstack.org/72800 | 16:01 |
*** jistr has quit IRC | 16:03 | |
*** jistr has joined #openstack-glance | 16:04 | |
*** krykowski has quit IRC | 16:06 | |
*** jistr has quit IRC | 16:09 | |
*** dosaboy has quit IRC | 16:13 | |
*** markus_z has quit IRC | 16:14 | |
*** dosaboy has joined #openstack-glance | 16:14 | |
*** TravT has joined #openstack-glance | 16:15 | |
*** jistr has joined #openstack-glance | 16:15 | |
*** annegentle has quit IRC | 16:16 | |
*** jistr has quit IRC | 16:17 | |
*** arnaud___ has joined #openstack-glance | 16:18 | |
*** sgotliv has quit IRC | 16:25 | |
*** buzztroll has joined #openstack-glance | 16:31 | |
*** annashen has joined #openstack-glance | 16:32 | |
*** annashen has quit IRC | 16:37 | |
*** annashen has joined #openstack-glance | 16:37 | |
*** EmilienM is now known as EmilienM|afk | 16:38 | |
*** smcginnis has left #openstack-glance | 16:39 | |
*** c0m0 has quit IRC | 16:40 | |
*** arnaud___ has quit IRC | 16:42 | |
*** arnaud___ has joined #openstack-glance | 16:43 | |
*** arnaud___ has quit IRC | 16:47 | |
*** e0ne has quit IRC | 16:56 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 17:19 | |
*** aix has quit IRC | 17:22 | |
*** bkopilov has quit IRC | 17:26 | |
*** bkopilov has joined #openstack-glance | 17:30 | |
*** ajayaa has joined #openstack-glance | 17:32 | |
*** harlowja_away is now known as harlowja | 17:36 | |
*** e0ne has joined #openstack-glance | 17:37 | |
*** bkopilov has quit IRC | 17:39 | |
*** bkopilov has joined #openstack-glance | 17:39 | |
*** cbits has joined #openstack-glance | 17:43 | |
*** bkopilov has quit IRC | 17:44 | |
*** ivasilevskaya has joined #openstack-glance | 17:45 | |
*** e0ne is now known as e0ne_ | 17:50 | |
*** smc7 has quit IRC | 17:50 | |
*** Longgeek has quit IRC | 17:51 | |
*** annashen has quit IRC | 17:57 | |
*** annashen has joined #openstack-glance | 18:02 | |
*** cbits has quit IRC | 18:03 | |
*** annegentle has joined #openstack-glance | 18:04 | |
*** e0ne_ is now known as e0ne | 18:05 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 18:10 | |
*** MVenesio has joined #openstack-glance | 18:13 | |
*** dosaboy has quit IRC | 18:13 | |
*** dosaboy has joined #openstack-glance | 18:14 | |
*** dosaboy has quit IRC | 18:20 | |
*** dosaboy has joined #openstack-glance | 18:21 | |
*** EmilienM|afk is now known as EmilienM | 18:22 | |
*** dosaboy has quit IRC | 18:22 | |
*** dosaboy has joined #openstack-glance | 18:24 | |
*** dosaboy has quit IRC | 18:24 | |
*** dosaboy has joined #openstack-glance | 18:24 | |
openstackgerrit | Inessa Vasilevskaya proposed openstack/glance: artifact property -> json schema proof of concept https://review.openstack.org/132253 | 18:27 |
*** lakshmiS has quit IRC | 18:27 | |
*** e0ne has quit IRC | 18:30 | |
*** tshefi has quit IRC | 18:34 | |
*** annegentle has quit IRC | 18:35 | |
*** annegentle has joined #openstack-glance | 18:35 | |
*** TravT has quit IRC | 18:49 | |
*** cpallares has joined #openstack-glance | 18:50 | |
*** smc7 has joined #openstack-glance | 18:59 | |
*** annashen has quit IRC | 19:04 | |
*** jaypipes has quit IRC | 19:18 | |
*** spzala has joined #openstack-glance | 19:21 | |
*** jaypipes has joined #openstack-glance | 19:21 | |
*** peristeri has quit IRC | 19:24 | |
*** sgotliv has joined #openstack-glance | 19:24 | |
*** david-lyle has joined #openstack-glance | 19:30 | |
*** e0ne has joined #openstack-glance | 19:30 | |
*** e0ne has quit IRC | 19:41 | |
*** alex_xu has quit IRC | 19:48 | |
*** alex_xu has joined #openstack-glance | 19:49 | |
*** spzala has quit IRC | 19:50 | |
*** bkopilov has joined #openstack-glance | 19:54 | |
*** sgotliv has quit IRC | 19:56 | |
*** ajayaa has quit IRC | 19:58 | |
*** annashen has joined #openstack-glance | 20:04 | |
*** annashen has quit IRC | 20:08 | |
*** annashen has joined #openstack-glance | 20:08 | |
*** TravT has joined #openstack-glance | 20:14 | |
*** spzala has joined #openstack-glance | 20:36 | |
*** belmoreira has joined #openstack-glance | 20:47 | |
openstackgerrit | Merged openstack/glance: Reduce DB calls when getting an image https://review.openstack.org/171674 | 20:47 |
openstackgerrit | Merged openstack/python-glanceclient: Omit 'locations' as image-create parameter https://review.openstack.org/172395 | 20:49 |
*** vijendar has joined #openstack-glance | 20:49 | |
*** spzala has quit IRC | 20:49 | |
*** spzala has joined #openstack-glance | 20:50 | |
*** spzala has quit IRC | 20:57 | |
*** spzala has joined #openstack-glance | 20:59 | |
*** stpierre has quit IRC | 21:30 | |
*** ericpeterson has quit IRC | 21:45 | |
*** dims_ has joined #openstack-glance | 21:46 | |
*** jamielennox|away is now known as jamielennox | 21:46 | |
*** annegentle has quit IRC | 21:47 | |
*** dims has quit IRC | 21:48 | |
*** ericpeterson has joined #openstack-glance | 21:49 | |
*** vijendar has quit IRC | 21:51 | |
*** annegentle has joined #openstack-glance | 21:52 | |
*** spzala has quit IRC | 21:53 | |
*** spzala has joined #openstack-glance | 21:54 | |
*** annegentle has quit IRC | 22:03 | |
*** MVenesio has quit IRC | 22:09 | |
*** belmoreira has quit IRC | 22:18 | |
*** annegentle has joined #openstack-glance | 22:20 | |
*** julim has quit IRC | 22:22 | |
*** annegentle has quit IRC | 22:24 | |
*** annashen has quit IRC | 22:30 | |
*** annashen has joined #openstack-glance | 22:31 | |
*** annegentle has joined #openstack-glance | 22:36 | |
openstackgerrit | Fei Long Wang proposed openstack/glance: Fix wrong docstring by copy-paste https://review.openstack.org/173649 | 22:40 |
*** annegentle has quit IRC | 22:41 | |
*** cpallares has quit IRC | 22:46 | |
*** ericpeterson has quit IRC | 22:54 | |
openstackgerrit | Merged openstack/glance-specs: Liberty spec folder for tracking specs proposed https://review.openstack.org/163382 | 23:07 |
*** jaypipes has quit IRC | 23:08 | |
*** chlong has joined #openstack-glance | 23:11 | |
*** ericpeterson has joined #openstack-glance | 23:18 | |
*** annashen has quit IRC | 23:21 | |
*** jaypipes has joined #openstack-glance | 23:21 | |
*** ericpeterson has quit IRC | 23:31 | |
openstackgerrit | Fei Long Wang proposed openstack/python-glanceclient: Add parameter 'changes-since' for image-list of v1 https://review.openstack.org/173738 | 23:35 |
*** frickler_ has joined #openstack-glance | 23:35 | |
openstackgerrit | Fei Long Wang proposed openstack/python-glanceclient: Add parameter 'changes-since' for image-list of v1 https://review.openstack.org/173738 | 23:35 |
*** HenryG_ has joined #openstack-glance | 23:35 | |
*** aarefiev_ has joined #openstack-glance | 23:38 | |
*** bkopilov has quit IRC | 23:38 | |
*** HenryG has quit IRC | 23:38 | |
*** cpallares has joined #openstack-glance | 23:38 | |
*** bkopilov has joined #openstack-glance | 23:38 | |
*** lan_ has joined #openstack-glance | 23:38 | |
*** lan has quit IRC | 23:39 | |
*** frickler has quit IRC | 23:39 | |
*** aarefiev has quit IRC | 23:39 | |
*** TravT has quit IRC | 23:40 | |
*** ericpeterson has joined #openstack-glance | 23:47 | |
cpallares | flwang: o/ | 23:51 |
openstackgerrit | Fei Long Wang proposed openstack/glance: Fix image owner can't be changed issue in v2 https://review.openstack.org/154695 | 23:56 |
*** wolsen_ is now known as wolsen | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!