*** lloydde has quit IRC | 00:00 | |
*** dkranz has quit IRC | 00:01 | |
*** sdake has joined #openstack-dev | 00:02 | |
*** sdake has joined #openstack-dev | 00:02 | |
*** cp16net is now known as cp16net|away | 00:07 | |
*** SumitNaiksatam has left #openstack-dev | 00:08 | |
*** sarob_ has joined #openstack-dev | 00:11 | |
*** jyhc has quit IRC | 00:14 | |
*** sarob has quit IRC | 00:15 | |
*** stevebaker has quit IRC | 00:16 | |
*** sarob_ has quit IRC | 00:16 | |
*** stevebaker has joined #openstack-dev | 00:16 | |
*** epim has quit IRC | 00:17 | |
*** cp16net|away is now known as cp16net | 00:20 | |
*** jaybuff has quit IRC | 00:20 | |
*** jaybuff has joined #openstack-dev | 00:26 | |
*** jaybuff has left #openstack-dev | 00:26 | |
*** kbrierly has quit IRC | 00:28 | |
*** sleepsonthefloor has quit IRC | 00:34 | |
openstackgerrit | A change was merged to openstack/glance: Don't run store tests without a store! https://review.openstack.org/33722 | 00:37 |
---|---|---|
*** carl_baldwin has quit IRC | 00:37 | |
*** neelashah has joined #openstack-dev | 00:39 | |
*** nachi_ has quit IRC | 00:39 | |
*** markmcclain has quit IRC | 00:42 | |
*** otherwiseguy has joined #openstack-dev | 00:42 | |
*** melwitt has quit IRC | 00:43 | |
*** reed has quit IRC | 00:43 | |
*** jasdeepH has quit IRC | 00:44 | |
*** devoid has joined #openstack-dev | 00:45 | |
*** devoid1 has joined #openstack-dev | 00:47 | |
*** devoid has quit IRC | 00:47 | |
*** devoid has joined #openstack-dev | 00:48 | |
*** devoid1 has quit IRC | 00:48 | |
*** sthaha has joined #openstack-dev | 00:49 | |
*** shang_ has quit IRC | 00:49 | |
ayoung | mordred, what does it take to get an additional package into the pip used for gate jobs? | 00:49 |
*** jaybuff has joined #openstack-dev | 00:51 | |
*** devoid has quit IRC | 00:53 | |
*** spzala has joined #openstack-dev | 00:55 | |
*** otherwiseguy has quit IRC | 00:56 | |
*** lloydde has joined #openstack-dev | 00:56 | |
*** otherwiseguy has joined #openstack-dev | 00:56 | |
*** michchap has quit IRC | 00:59 | |
*** michchap has joined #openstack-dev | 01:00 | |
*** jergerber has joined #openstack-dev | 01:00 | |
*** spzala has quit IRC | 01:00 | |
*** anniec has quit IRC | 01:00 | |
*** nati_ueno has quit IRC | 01:00 | |
*** jergerber has quit IRC | 01:00 | |
*** michchap has quit IRC | 01:01 | |
*** zhuadl has quit IRC | 01:01 | |
*** michchap has joined #openstack-dev | 01:02 | |
*** nati_ueno has joined #openstack-dev | 01:02 | |
openstackgerrit | A change was merged to openstack/python-keystoneclient: List groups by domain in keystoneclient. https://review.openstack.org/34060 | 01:04 |
*** cliu has quit IRC | 01:05 | |
*** leizhang has joined #openstack-dev | 01:07 | |
*** freedomhui has joined #openstack-dev | 01:12 | |
*** erkules_ has joined #openstack-dev | 01:20 | |
*** erkules has quit IRC | 01:22 | |
jamielennox | ayoung: any thoughts on how to integrate bind checking into keystone server? it doesn't use keystone client so auth checking is a bit haphazard and we won't have the same config settings as clients | 01:23 |
ayoung | jamielennox, can't context shift just yet, give me a few minutes | 01:23 |
jamielennox | ayoung: not overly important just what i'm wondering about | 01:23 |
*** danwent has quit IRC | 01:25 | |
*** noslzzp has joined #openstack-dev | 01:29 | |
*** jasdeepH has joined #openstack-dev | 01:31 | |
*** andrewbogott_afk is now known as andrewbogott | 01:32 | |
ayoung | jamielennox, OK, I'm here. I assume by "bind" you mean checking that the cert is bound to the token? | 01:32 |
*** jaybuff has left #openstack-dev | 01:32 | |
*** dkranz has joined #openstack-dev | 01:32 | |
*** jasdeepH has quit IRC | 01:32 | |
jamielennox | right so in auth_token middleware this is fairly simply because you have one path through which token authentication passes and I can just put check bind is correct in there | 01:33 |
*** jasdeepH has joined #openstack-dev | 01:33 | |
jamielennox | in keystone itself the middleware simply moves the token into context and does an is_admin check | 01:33 |
ayoung | jamielennox, wouldn't it be nice to put it into the policy? | 01:33 |
ayoung | jamielennox, that is in common/controller.py I think | 01:34 |
jamielennox | then the main ways i can see of checking id are self.assert_admin(), @controller.protected and @controller.filterprotected though i'm not sure what the difference between them is | 01:34 |
jamielennox | between filter and straight protected i mean | 01:34 |
*** SumitNaiksatam has joined #openstack-dev | 01:35 | |
*** yaguang has joined #openstack-dev | 01:35 | |
ayoung | assert_admin needs to go away, as that should be a policy check | 01:35 |
jamielennox | so yea, we have policy_api but is that really the right place for it? | 01:35 |
ayoung | filterprotected probably is the right place | 01:35 |
ayoung | We can refactor over time | 01:36 |
jamielennox | as opposed to protected? | 01:36 |
ayoung | erm, no, | 01:36 |
ayoung | Both | 01:36 |
*** sdake has quit IRC | 01:37 | |
jamielennox | i'm just trying to get the difference now | 01:37 |
ayoung | both call _build_policy_check_credentials | 01:37 |
jamielennox | as does assert_admin | 01:38 |
jamielennox | actually no it doesn't but it does call policy_api.enforce so it probably should be calling _build... | 01:38 |
jamielennox | so is it reasonable to put this in common/ somewhere and share the code between client & server> | 01:39 |
*** martine_ has joined #openstack-dev | 01:40 | |
jamielennox | ayoung: what would be nice is to have the actual keystoneclient middleware protecting keystone | 01:42 |
ayoung | jamielennox, yeah, although we probably need to keep duplicating things for a while. I realized a shortcoming of our current testing approach, where we have old clients in the same process space as the current server. See if you can figure it out. | 01:43 |
*** yongli has joined #openstack-dev | 01:44 | |
jamielennox | ayoung: i'm pretty sure i put a bug up about that a couple of weeks ago asking for what is the expected outcome, dolph triaged but didn't give any advice | 01:44 |
ayoung | So, until we sort that, we can't move new code to client from server | 01:45 |
ayoung | I think the answer is tempest | 01:46 |
jamielennox | https://bugs.launchpad.net/keystone/+bug/1178532 so just not quite the right phrasing | 01:46 |
jamielennox | ayoung: but yea, if i could figure out what the desired outcome is supposed to be i could at least attempt it but it's a weird problem | 01:47 |
jamielennox | so my thought about having it in common is similar to your cms.py, i'll have to duplicate it, but they should be more or less in sync | 01:47 |
*** otherwiseguy has quit IRC | 01:47 | |
*** lloydde has quit IRC | 01:47 | |
jamielennox | hmm, i might just have to modify it for keystone | 01:48 |
*** nati_ueno has quit IRC | 01:49 | |
*** anniec has joined #openstack-dev | 01:51 | |
*** anniec_ has joined #openstack-dev | 01:51 | |
*** novas0x2a|laptop has quit IRC | 01:54 | |
*** dkranz has quit IRC | 01:54 | |
*** Mandell has joined #openstack-dev | 01:54 | |
*** redondos has quit IRC | 01:55 | |
mordred | ayoung: you need to make a patch to openstack/requirements | 01:55 |
*** zhuadl has joined #openstack-dev | 01:55 | |
*** anniec has quit IRC | 01:55 | |
*** anniec_ is now known as anniec | 01:55 | |
mordred | ayoung: which you also need to do these days before adding it to requirements.txt | 01:55 |
*** yamahata has quit IRC | 01:55 | |
*** rods has quit IRC | 01:56 | |
*** freedomhui has quit IRC | 01:56 | |
*** Ryan_Lane has quit IRC | 01:59 | |
*** pabelanger_ has quit IRC | 02:05 | |
*** pabelanger has joined #openstack-dev | 02:06 | |
*** mjfork_ has quit IRC | 02:08 | |
*** jbresnah has quit IRC | 02:09 | |
*** galstrom_zzz is now known as galstrom | 02:12 | |
*** freedomhui has joined #openstack-dev | 02:12 | |
*** yamahata has joined #openstack-dev | 02:12 | |
ayoung | jamielennox, see mordred 's comments for HTMLPretty | 02:13 |
jamielennox | mordred: given that this is a global req list how difficult is it to get a new package added? is there a required discussion or anything? | 02:14 |
jamielennox | the package i want is: https://github.com/gabrielfalcao/HTTPretty which lets you stub http responses based on url rather than the current method of mocking requests or overriding HTTPConnections with custom ones | 02:15 |
jamielennox | so there are alternative ways but this seems like a better idea, but it now needs to be approved prior to being able to show any code using it | 02:16 |
*** marun has quit IRC | 02:18 | |
*** redbeard2 has quit IRC | 02:21 | |
*** anniec has quit IRC | 02:23 | |
*** rcleere has joined #openstack-dev | 02:25 | |
*** Mandell has quit IRC | 02:26 | |
ayoung | jamielennox, just make the patch, and explain the rationale. It is only going to get populated into the local pip cache, so it shouldn't be too contraversial | 02:28 |
jamielennox | yea, doing it now it can always be discussed in the review | 02:28 |
*** HenryG has quit IRC | 02:30 | |
mordred | jamielennox: discussion mainly winds up around suitability in terms of license and upstream supportedness of the library | 02:31 |
mordred | jamielennox: license seems fine, so it shouldn't be too much of a problem | 02:33 |
*** redbeard2 has joined #openstack-dev | 02:33 | |
*** maheshp has joined #openstack-dev | 02:34 | |
*** marun has joined #openstack-dev | 02:35 | |
*** marun has quit IRC | 02:39 | |
*** yongli has quit IRC | 02:40 | |
*** freedomhui has quit IRC | 02:40 | |
*** marun has joined #openstack-dev | 02:41 | |
*** galstrom is now known as galstrom_zzz | 02:41 | |
jamielennox | mordred: thanks, submitted https://review.openstack.org/#/c/34660/ | 02:41 |
*** yongli has joined #openstack-dev | 02:42 | |
*** shang has joined #openstack-dev | 02:45 | |
*** marun has quit IRC | 02:47 | |
*** jecarey_ has joined #openstack-dev | 02:49 | |
*** yongli has quit IRC | 02:49 | |
*** yongli has joined #openstack-dev | 02:50 | |
*** lloydde has joined #openstack-dev | 02:51 | |
*** yamahata has quit IRC | 02:53 | |
*** woodspa has quit IRC | 03:00 | |
*** lloydde has quit IRC | 03:01 | |
*** shang has quit IRC | 03:03 | |
*** yamahata has joined #openstack-dev | 03:05 | |
*** Mandell has joined #openstack-dev | 03:05 | |
*** martine_ has quit IRC | 03:06 | |
*** redbeard2 has quit IRC | 03:08 | |
openstackgerrit | A change was merged to openstack/trove: Update kombu library version requirement https://review.openstack.org/34649 | 03:11 |
*** sorrison_ has joined #openstack-dev | 03:11 | |
*** sleepsonthefloor has joined #openstack-dev | 03:15 | |
*** pixelbeat has quit IRC | 03:16 | |
*** Farooque has joined #openstack-dev | 03:17 | |
*** edmund1 has joined #openstack-dev | 03:17 | |
*** redbeard2 has joined #openstack-dev | 03:19 | |
*** yuanz has joined #openstack-dev | 03:23 | |
*** aeperezt has quit IRC | 03:25 | |
*** gongysh has quit IRC | 03:26 | |
*** dolphm has joined #openstack-dev | 03:30 | |
*** stevemar has joined #openstack-dev | 03:31 | |
*** zodiak has quit IRC | 03:33 | |
*** zodiak has joined #openstack-dev | 03:34 | |
*** freedomhui has joined #openstack-dev | 03:36 | |
*** networkstatic has joined #openstack-dev | 03:37 | |
*** maheshp has quit IRC | 03:40 | |
*** prad has quit IRC | 03:41 | |
*** maheshp has joined #openstack-dev | 03:42 | |
*** pixelbeat has joined #openstack-dev | 03:42 | |
*** Ryan_Lane has joined #openstack-dev | 03:49 | |
*** comay has quit IRC | 03:49 | |
*** stevemar has quit IRC | 03:51 | |
*** wenjianhn has joined #openstack-dev | 03:53 | |
*** vipul is now known as vipul|away | 03:53 | |
*** SergeyLukjanov has joined #openstack-dev | 03:54 | |
*** vipul|away is now known as vipul | 03:57 | |
*** zhuadl has quit IRC | 03:58 | |
*** epim has joined #openstack-dev | 04:07 | |
*** prekarat has joined #openstack-dev | 04:07 | |
*** epim_ has joined #openstack-dev | 04:09 | |
*** lloydde has joined #openstack-dev | 04:11 | |
*** epim has quit IRC | 04:11 | |
*** epim_ is now known as epim | 04:11 | |
*** afazekas has joined #openstack-dev | 04:15 | |
*** lloydde has quit IRC | 04:16 | |
*** wenjianhn has quit IRC | 04:16 | |
*** noslzzp has quit IRC | 04:21 | |
*** lloydde has joined #openstack-dev | 04:32 | |
*** garyk has joined #openstack-dev | 04:34 | |
*** wenjianhn has joined #openstack-dev | 04:34 | |
*** epim has quit IRC | 04:38 | |
*** jasdeepH has quit IRC | 04:38 | |
*** nati_ueno has joined #openstack-dev | 04:40 | |
*** maheshp has quit IRC | 04:40 | |
*** kirankv has joined #openstack-dev | 04:46 | |
*** Farooque has joined #openstack-dev | 04:48 | |
*** prekarat has quit IRC | 04:48 | |
*** SergeyLukjanov has quit IRC | 04:49 | |
*** jasdeepH has joined #openstack-dev | 04:52 | |
*** jdurgin1 has quit IRC | 04:54 | |
*** edmund1 has quit IRC | 04:56 | |
*** zhuadl has joined #openstack-dev | 05:03 | |
*** Farooque has quit IRC | 05:03 | |
*** anfrolov has quit IRC | 05:04 | |
*** dperaza has quit IRC | 05:05 | |
*** terryh has quit IRC | 05:05 | |
*** navid_ has joined #openstack-dev | 05:06 | |
*** abhishekkr__ has joined #openstack-dev | 05:09 | |
*** maheshp has joined #openstack-dev | 05:11 | |
*** romcheg has joined #openstack-dev | 05:12 | |
*** pixelbeat has quit IRC | 05:13 | |
*** xqueralt-afk is now known as xqueralt | 05:13 | |
*** romcheg1 has joined #openstack-dev | 05:16 | |
*** romcheg has quit IRC | 05:16 | |
*** dolphm has quit IRC | 05:17 | |
*** koolhead17 has joined #openstack-dev | 05:20 | |
*** garyk has quit IRC | 05:24 | |
*** maheshp has quit IRC | 05:25 | |
*** romcheg1 has quit IRC | 05:26 | |
*** garyk has joined #openstack-dev | 05:28 | |
*** abhishekkr_ has joined #openstack-dev | 05:30 | |
*** abhishekkr__ has quit IRC | 05:33 | |
*** stevebaker has quit IRC | 05:33 | |
*** jasdeepH has quit IRC | 05:34 | |
*** ffio has joined #openstack-dev | 05:37 | |
*** jcoufal has joined #openstack-dev | 05:38 | |
*** pasquier-s has quit IRC | 05:38 | |
*** zaitcev has quit IRC | 05:39 | |
*** maheshp has joined #openstack-dev | 05:40 | |
*** xqueralt is now known as xqueralt-afk | 05:41 | |
*** jasdeepH has joined #openstack-dev | 05:44 | |
*** jasdeepH has quit IRC | 05:45 | |
*** sdake has joined #openstack-dev | 05:46 | |
*** sdake has joined #openstack-dev | 05:46 | |
*** vipul is now known as vipul|away | 05:47 | |
openstackgerrit | A change was merged to openstack/cinder: Raise an error if iSCSI is not supported https://review.openstack.org/32408 | 05:47 |
*** neelashah has quit IRC | 05:48 | |
*** andrewbogott is now known as andrewbogott_afk | 05:48 | |
*** litong has quit IRC | 05:50 | |
*** Farooque has joined #openstack-dev | 05:50 | |
*** pasquier-s has joined #openstack-dev | 05:51 | |
*** Farooque has quit IRC | 05:51 | |
*** Farooque has joined #openstack-dev | 05:52 | |
*** shang has joined #openstack-dev | 05:53 | |
*** boris-42 has quit IRC | 05:55 | |
*** krtaylor has quit IRC | 05:56 | |
*** shang has quit IRC | 05:57 | |
*** rcleere has quit IRC | 05:58 | |
*** vipul|away is now known as vipul | 05:59 | |
*** anfrolov has joined #openstack-dev | 06:04 | |
*** krtaylor has joined #openstack-dev | 06:06 | |
*** Farooque has quit IRC | 06:06 | |
*** jbresnah has joined #openstack-dev | 06:07 | |
*** Farooque has joined #openstack-dev | 06:07 | |
*** ffio has quit IRC | 06:07 | |
*** prekarat has joined #openstack-dev | 06:12 | |
*** anfrolov has quit IRC | 06:13 | |
*** jyhc has joined #openstack-dev | 06:14 | |
*** anfrolov has joined #openstack-dev | 06:15 | |
*** SergeyLukjanov has joined #openstack-dev | 06:15 | |
*** lloydde has quit IRC | 06:15 | |
*** Farooque has quit IRC | 06:16 | |
*** Farooque has joined #openstack-dev | 06:17 | |
*** kushal has joined #openstack-dev | 06:24 | |
*** Farooque has quit IRC | 06:24 | |
*** Farooque has joined #openstack-dev | 06:25 | |
*** kaushikc has joined #openstack-dev | 06:25 | |
*** devvesa has joined #openstack-dev | 06:34 | |
*** bashok has joined #openstack-dev | 06:36 | |
*** sushils has quit IRC | 06:38 | |
*** arezmerita has joined #openstack-dev | 06:45 | |
*** lloydde has joined #openstack-dev | 06:46 | |
*** vartom has joined #openstack-dev | 06:47 | |
*** mkollaro has joined #openstack-dev | 06:48 | |
*** mkollaro has quit IRC | 06:48 | |
*** terriyu has quit IRC | 06:48 | |
*** Alexei_987 has joined #openstack-dev | 06:49 | |
*** prekarat has quit IRC | 06:51 | |
*** SergeyLukjanov has quit IRC | 06:53 | |
*** Farooque has quit IRC | 06:53 | |
*** Farooque has joined #openstack-dev | 06:53 | |
*** xqueralt-afk is now known as xqueralt | 06:54 | |
*** yolanda has joined #openstack-dev | 06:55 | |
*** Farooque has quit IRC | 06:55 | |
*** lloydde has quit IRC | 06:55 | |
*** Farooque has joined #openstack-dev | 06:55 | |
*** reidrac has joined #openstack-dev | 06:58 | |
*** wenjianhn has quit IRC | 07:00 | |
*** lukego has joined #openstack-dev | 07:00 | |
*** wenjianhn has joined #openstack-dev | 07:00 | |
*** jyhc has quit IRC | 07:00 | |
*** ifarkas has joined #openstack-dev | 07:03 | |
*** garyk has quit IRC | 07:03 | |
*** jtomasek has joined #openstack-dev | 07:04 | |
*** Farooque has quit IRC | 07:04 | |
*** Farooque has joined #openstack-dev | 07:05 | |
*** anfrolov has quit IRC | 07:05 | |
*** anfrolov has joined #openstack-dev | 07:08 | |
*** anfrolov has quit IRC | 07:08 | |
*** Mandell has quit IRC | 07:09 | |
*** prekarat has joined #openstack-dev | 07:10 | |
*** xga has joined #openstack-dev | 07:12 | |
*** Farooque has quit IRC | 07:12 | |
*** xga_ has joined #openstack-dev | 07:12 | |
*** sungju has quit IRC | 07:12 | |
*** Farooque has joined #openstack-dev | 07:12 | |
openstackgerrit | A change was merged to openstack/nova: Stop creating folders in virt unit tests https://review.openstack.org/34477 | 07:13 |
*** egallen has joined #openstack-dev | 07:15 | |
*** Tross has joined #openstack-dev | 07:16 | |
*** avishay has joined #openstack-dev | 07:17 | |
*** anfrolov has joined #openstack-dev | 07:19 | |
*** salv-orlando has joined #openstack-dev | 07:20 | |
*** eglynn has joined #openstack-dev | 07:20 | |
openstackgerrit | A change was merged to openstack/nova: Add obj_to_primitive() to recursively primitiveize objects https://review.openstack.org/34276 | 07:22 |
openstackgerrit | A change was merged to openstack/nova: Add update() method to NovaObject for dict compatibility https://review.openstack.org/34584 | 07:23 |
*** boris-42 has joined #openstack-dev | 07:24 | |
*** SumitNaiksatam has quit IRC | 07:24 | |
*** MattOliver has joined #openstack-dev | 07:24 | |
*** Ala has joined #openstack-dev | 07:26 | |
*** eglynn has quit IRC | 07:29 | |
*** doude_ has quit IRC | 07:30 | |
*** agorodnev has quit IRC | 07:35 | |
*** martines has quit IRC | 07:35 | |
*** rods` has quit IRC | 07:35 | |
*** avishay has quit IRC | 07:35 | |
*** Farooque has quit IRC | 07:35 | |
*** xga_ has quit IRC | 07:35 | |
*** xga has quit IRC | 07:35 | |
*** zhuadl has quit IRC | 07:35 | |
*** Ryan_Lane has quit IRC | 07:35 | |
*** jecarey_ has quit IRC | 07:35 | |
*** rcrit has quit IRC | 07:35 | |
*** mikal has quit IRC | 07:35 | |
*** jonesld has quit IRC | 07:35 | |
*** CaptTofu has quit IRC | 07:35 | |
*** READ10 has quit IRC | 07:35 | |
*** aloga has quit IRC | 07:35 | |
*** beagles has quit IRC | 07:35 | |
*** git-harry has quit IRC | 07:35 | |
*** JStoker has quit IRC | 07:35 | |
*** Adri2000 has quit IRC | 07:35 | |
*** t-8ch has quit IRC | 07:35 | |
*** ondergetekende has quit IRC | 07:35 | |
*** sgran has quit IRC | 07:35 | |
*** bashok has quit IRC | 07:35 | |
*** kaushikc has quit IRC | 07:35 | |
*** jcoufal has quit IRC | 07:35 | |
*** koolhead17 has quit IRC | 07:35 | |
*** nati_ueno has quit IRC | 07:35 | |
*** sorrison_ has quit IRC | 07:35 | |
*** ssurana has quit IRC | 07:35 | |
*** rch has quit IRC | 07:35 | |
*** branen has quit IRC | 07:35 | |
*** andreaf has quit IRC | 07:35 | |
*** DuncanT has quit IRC | 07:35 | |
*** anticw has quit IRC | 07:35 | |
*** MIDENN_ has quit IRC | 07:35 | |
*** nunosantos has quit IRC | 07:35 | |
*** maurosr has quit IRC | 07:35 | |
*** cburgess has quit IRC | 07:35 | |
*** tace has quit IRC | 07:35 | |
*** thingee has quit IRC | 07:35 | |
*** gaelL has quit IRC | 07:35 | |
*** ivoks has quit IRC | 07:35 | |
*** iccha has quit IRC | 07:35 | |
*** Daviey has quit IRC | 07:35 | |
*** krphop has quit IRC | 07:35 | |
*** smoser has quit IRC | 07:35 | |
*** salv-orlando has quit IRC | 07:35 | |
*** yolanda has quit IRC | 07:35 | |
*** jbresnah has quit IRC | 07:35 | |
*** krtaylor has quit IRC | 07:35 | |
*** maheshp has quit IRC | 07:35 | |
*** afazekas has quit IRC | 07:35 | |
*** yuanz has quit IRC | 07:35 | |
*** michchap has quit IRC | 07:35 | |
*** bing_bu has quit IRC | 07:35 | |
*** sulrich has quit IRC | 07:35 | |
*** ctracey has quit IRC | 07:35 | |
*** akshayms has quit IRC | 07:35 | |
*** jaypipes has quit IRC | 07:35 | |
*** toabctl_ has quit IRC | 07:35 | |
*** alpha_ori has quit IRC | 07:35 | |
*** hugokuo has quit IRC | 07:35 | |
*** jesusaurus has quit IRC | 07:35 | |
*** Ng has quit IRC | 07:35 | |
*** lcheng has quit IRC | 07:35 | |
*** lychinus has quit IRC | 07:35 | |
*** shardy has quit IRC | 07:35 | |
*** blamar has quit IRC | 07:35 | |
*** kashyap has quit IRC | 07:35 | |
*** mestery has quit IRC | 07:35 | |
*** anderstj has quit IRC | 07:35 | |
*** cafedecade has quit IRC | 07:35 | |
*** markvoelker has quit IRC | 07:35 | |
*** llu_linux has quit IRC | 07:35 | |
*** JordanRinke has quit IRC | 07:35 | |
*** bcrochet has quit IRC | 07:35 | |
*** ekarlso has quit IRC | 07:35 | |
*** msmedved has quit IRC | 07:35 | |
*** vsergeyev has quit IRC | 07:35 | |
*** huats has quit IRC | 07:35 | |
*** kpavel has quit IRC | 07:35 | |
*** Ruetobas has quit IRC | 07:35 | |
*** RajeshMohan has quit IRC | 07:35 | |
*** redbo has quit IRC | 07:35 | |
*** shadower has quit IRC | 07:35 | |
*** lon has quit IRC | 07:35 | |
*** swifterdarrell has quit IRC | 07:35 | |
*** Lumiere has quit IRC | 07:35 | |
*** joearnold has quit IRC | 07:35 | |
*** ChanServ has quit IRC | 07:35 | |
*** cdub_ has quit IRC | 07:35 | |
*** kevinconway has quit IRC | 07:35 | |
*** flaper87 has quit IRC | 07:35 | |
*** devx has quit IRC | 07:35 | |
*** dabo has quit IRC | 07:35 | |
*** Hien has quit IRC | 07:35 | |
*** obondarev has quit IRC | 07:35 | |
*** gmoro has quit IRC | 07:35 | |
*** jamespage has quit IRC | 07:35 | |
*** Alex_Gaynor has quit IRC | 07:35 | |
*** bugsduggan has quit IRC | 07:35 | |
*** jkoelker has quit IRC | 07:35 | |
*** yjiang5_ has quit IRC | 07:35 | |
*** anfrolov has quit IRC | 07:35 | |
*** vartom has quit IRC | 07:35 | |
*** arezmerita has quit IRC | 07:35 | |
*** sdake has quit IRC | 07:35 | |
*** Oneiroi has quit IRC | 07:35 | |
*** zul has quit IRC | 07:35 | |
*** soren has quit IRC | 07:35 | |
*** martitia__ has quit IRC | 07:35 | |
*** feleouet has quit IRC | 07:35 | |
*** Guest40872 has quit IRC | 07:35 | |
*** toddnni has quit IRC | 07:35 | |
*** japage has quit IRC | 07:35 | |
*** jkordish has quit IRC | 07:35 | |
*** comstud has quit IRC | 07:35 | |
*** SlickNik has quit IRC | 07:35 | |
*** LinuxJedi has quit IRC | 07:35 | |
*** bradjone1|away has quit IRC | 07:35 | |
*** SpamapS has quit IRC | 07:35 | |
*** andymccr has quit IRC | 07:35 | |
*** juice has quit IRC | 07:35 | |
*** jog0 has quit IRC | 07:35 | |
*** christophk has quit IRC | 07:35 | |
*** negronjl has quit IRC | 07:35 | |
*** dosaboy has quit IRC | 07:35 | |
*** bogdando has quit IRC | 07:35 | |
*** sheeprine has quit IRC | 07:35 | |
*** rha has quit IRC | 07:35 | |
*** dmarkey_ has quit IRC | 07:35 | |
*** ameade has quit IRC | 07:35 | |
*** rahmu has quit IRC | 07:35 | |
*** Guest47356 has quit IRC | 07:35 | |
*** JonnyNomad has quit IRC | 07:35 | |
*** davidhadas has quit IRC | 07:35 | |
*** jculp has quit IRC | 07:35 | |
*** mirrorbox has quit IRC | 07:35 | |
*** sgordon has quit IRC | 07:35 | |
*** santanel has quit IRC | 07:35 | |
*** westmaas has quit IRC | 07:35 | |
*** pleia2 has quit IRC | 07:35 | |
*** Reapster has quit IRC | 07:35 | |
*** sirushti has quit IRC | 07:35 | |
*** epopt37 has quit IRC | 07:35 | |
*** TREllis has quit IRC | 07:35 | |
*** lifeless has quit IRC | 07:35 | |
*** boris-42 has quit IRC | 07:35 | |
*** egallen has quit IRC | 07:35 | |
*** kushal has quit IRC | 07:35 | |
*** sleepsonthefloor has quit IRC | 07:35 | |
*** erkules_ has quit IRC | 07:35 | |
*** leizhang has quit IRC | 07:35 | |
*** timello_ has quit IRC | 07:35 | |
*** Samos123 has quit IRC | 07:35 | |
*** matiu has quit IRC | 07:35 | |
*** jdennis has quit IRC | 07:35 | |
*** med_ has quit IRC | 07:35 | |
*** jasper22 has quit IRC | 07:35 | |
*** al-maisan has quit IRC | 07:35 | |
*** sifusam has quit IRC | 07:35 | |
*** GheRivero has quit IRC | 07:35 | |
*** s1rp_ has quit IRC | 07:35 | |
*** mmalesky has quit IRC | 07:35 | |
*** hemna has quit IRC | 07:35 | |
*** fcami has quit IRC | 07:35 | |
*** jmeredit has quit IRC | 07:35 | |
*** matrohon has quit IRC | 07:35 | |
*** harlowja has quit IRC | 07:35 | |
*** vuntz has quit IRC | 07:35 | |
*** troytoman-away has quit IRC | 07:35 | |
*** jgriffith has quit IRC | 07:35 | |
*** openstackgerrit has quit IRC | 07:35 | |
*** ogelbukh has quit IRC | 07:35 | |
*** torgomatic has quit IRC | 07:35 | |
*** roz has quit IRC | 07:35 | |
*** nijaba has quit IRC | 07:35 | |
*** jf-jenni has quit IRC | 07:35 | |
*** janisg has quit IRC | 07:35 | |
*** hazmat has quit IRC | 07:35 | |
*** MattOliver has quit IRC | 07:35 | |
*** prekarat has quit IRC | 07:35 | |
*** Alexei_987 has quit IRC | 07:35 | |
*** navid_ has quit IRC | 07:35 | |
*** redbeard2 has quit IRC | 07:35 | |
*** torandu has quit IRC | 07:35 | |
*** kenperkins has quit IRC | 07:35 | |
*** enikanorov has quit IRC | 07:35 | |
*** leveldoc has quit IRC | 07:35 | |
*** kmartin has quit IRC | 07:35 | |
*** mkerrin has quit IRC | 07:35 | |
*** AnilV4 has quit IRC | 07:35 | |
*** asalkeld has quit IRC | 07:35 | |
*** Vek_ has quit IRC | 07:35 | |
*** Thor^^_ has quit IRC | 07:35 | |
*** annashen has quit IRC | 07:35 | |
*** jeblair has quit IRC | 07:35 | |
*** KA` has quit IRC | 07:35 | |
*** CrackerJackMack has quit IRC | 07:35 | |
*** jkyle has quit IRC | 07:35 | |
*** belliott has quit IRC | 07:35 | |
*** andrewbogott_afk has quit IRC | 07:35 | |
*** kpepple has quit IRC | 07:35 | |
*** clayg has quit IRC | 07:35 | |
*** ZangMingJie has quit IRC | 07:35 | |
*** fc__ has quit IRC | 07:35 | |
*** VeggieMeat has quit IRC | 07:35 | |
*** cmagina has quit IRC | 07:35 | |
*** Slidey_ has quit IRC | 07:35 | |
*** ahale has quit IRC | 07:35 | |
*** Brainspackle has quit IRC | 07:35 | |
*** villep_ has quit IRC | 07:35 | |
*** nikhil has quit IRC | 07:35 | |
*** antonym has quit IRC | 07:35 | |
*** xarg has quit IRC | 07:35 | |
*** swaT30 has quit IRC | 07:35 | |
*** statik has quit IRC | 07:35 | |
*** mancdaz has quit IRC | 07:35 | |
*** kirankv has quit IRC | 07:35 | |
*** devvesa has quit IRC | 07:35 | |
*** zodiak has quit IRC | 07:35 | |
*** yamahata has quit IRC | 07:35 | |
*** yongli has quit IRC | 07:35 | |
*** pabelanger has quit IRC | 07:35 | |
*** sthaha has quit IRC | 07:35 | |
*** lbragstad has quit IRC | 07:35 | |
*** fifieldt has quit IRC | 07:35 | |
*** ajyounge has quit IRC | 07:35 | |
*** olaph has quit IRC | 07:35 | |
*** esheffield has quit IRC | 07:35 | |
*** ydacheville has quit IRC | 07:35 | |
*** gordc has quit IRC | 07:35 | |
*** ndipanov_gone has quit IRC | 07:35 | |
*** cyeoh has quit IRC | 07:35 | |
*** lsmola has quit IRC | 07:35 | |
*** benner has quit IRC | 07:35 | |
*** Tedster has quit IRC | 07:35 | |
*** riskable has quit IRC | 07:35 | |
*** galstrom_zzz has quit IRC | 07:35 | |
*** dims has quit IRC | 07:35 | |
*** desve has quit IRC | 07:35 | |
*** zoresvit has quit IRC | 07:35 | |
*** apmelton1 has quit IRC | 07:35 | |
*** adam_g_ has quit IRC | 07:35 | |
*** jpeeler has quit IRC | 07:35 | |
*** ilyashakhat has quit IRC | 07:35 | |
*** rwsu has quit IRC | 07:35 | |
*** primeministerp has quit IRC | 07:35 | |
*** ianw has quit IRC | 07:35 | |
*** amerine has quit IRC | 07:35 | |
*** dstufft has quit IRC | 07:35 | |
*** cdub has quit IRC | 07:35 | |
*** termie has quit IRC | 07:35 | |
*** kiall has quit IRC | 07:35 | |
*** vipul has quit IRC | 07:35 | |
*** wkelly has quit IRC | 07:35 | |
*** jayg|g0n3 has quit IRC | 07:35 | |
*** hemnafk has quit IRC | 07:35 | |
*** mattymo has quit IRC | 07:35 | |
*** benonsoftware has quit IRC | 07:35 | |
*** dansmith has quit IRC | 07:35 | |
*** tomh_ has quit IRC | 07:35 | |
*** Chrisy has quit IRC | 07:35 | |
*** bmccormick has quit IRC | 07:35 | |
*** david-lyle has quit IRC | 07:35 | |
*** mordred has quit IRC | 07:35 | |
*** arosen has quit IRC | 07:35 | |
*** rootard has quit IRC | 07:35 | |
*** esmute has quit IRC | 07:35 | |
*** dtroyer_zz has quit IRC | 07:35 | |
*** alaski has quit IRC | 07:35 | |
*** cp16net has quit IRC | 07:35 | |
*** rosmaita has quit IRC | 07:35 | |
*** crazed has quit IRC | 07:35 | |
*** zigo has quit IRC | 07:35 | |
*** vishy has quit IRC | 07:35 | |
*** alunduil has quit IRC | 07:35 | |
*** jdurgin has quit IRC | 07:35 | |
*** Apsu has quit IRC | 07:35 | |
*** hughsaunders has quit IRC | 07:35 | |
*** oubiwann has quit IRC | 07:35 | |
*** radix has quit IRC | 07:35 | |
*** dcmorton has quit IRC | 07:35 | |
*** fungi has quit IRC | 07:35 | |
*** ttx has quit IRC | 07:35 | |
*** russellb has quit IRC | 07:35 | |
*** sc68cal has quit IRC | 07:35 | |
*** morganfainberg has quit IRC | 07:35 | |
*** bourke has quit IRC | 07:35 | |
*** EmilienM has quit IRC | 07:35 | |
*** xqueralt has quit IRC | 07:35 | |
*** hoodow has quit IRC | 07:35 | |
*** sdague has quit IRC | 07:35 | |
*** bcwaldon has quit IRC | 07:35 | |
*** xarg_ has quit IRC | 07:35 | |
*** toanster has quit IRC | 07:35 | |
*** retr0h has quit IRC | 07:35 | |
*** notmyname has quit IRC | 07:35 | |
*** sn0wb1rdz has quit IRC | 07:35 | |
*** clarkb has quit IRC | 07:35 | |
*** tris has quit IRC | 07:35 | |
*** radez_g0n3 has quit IRC | 07:35 | |
*** sdake has joined #openstack-dev | 07:37 | |
*** JordanP has joined #openstack-dev | 07:37 | |
*** bmccormick has joined #openstack-dev | 07:37 | |
*** jgallard has joined #openstack-dev | 07:37 | |
*** Oneiroi has joined #openstack-dev | 07:37 | |
*** martitia__ has joined #openstack-dev | 07:37 | |
*** andymccr has joined #openstack-dev | 07:37 | |
*** juice has joined #openstack-dev | 07:37 | |
*** tkammer has joined #openstack-dev | 07:37 | |
*** SpamapS has joined #openstack-dev | 07:37 | |
*** bradjones|away has joined #openstack-dev | 07:37 | |
*** Reapster_ has joined #openstack-dev | 07:37 | |
*** jog0 has joined #openstack-dev | 07:37 | |
*** mihgen has joined #openstack-dev | 07:37 | |
*** francois_eleouet has joined #openstack-dev | 07:37 | |
*** tomh_ has joined #openstack-dev | 07:37 | |
*** BStokes has joined #openstack-dev | 07:37 | |
*** japage has joined #openstack-dev | 07:37 | |
*** pnavarro has joined #openstack-dev | 07:37 | |
*** SumitNaiksatam has joined #openstack-dev | 07:37 | |
*** MattOliver has joined #openstack-dev | 07:37 | |
*** boris-42 has joined #openstack-dev | 07:37 | |
*** salv-orlando has joined #openstack-dev | 07:37 | |
*** anfrolov has joined #openstack-dev | 07:37 | |
*** avishay has joined #openstack-dev | 07:37 | |
*** egallen has joined #openstack-dev | 07:37 | |
*** Farooque has joined #openstack-dev | 07:37 | |
*** xga_ has joined #openstack-dev | 07:37 | |
*** xga has joined #openstack-dev | 07:37 | |
*** prekarat has joined #openstack-dev | 07:37 | |
*** yolanda has joined #openstack-dev | 07:37 | |
*** Alexei_987 has joined #openstack-dev | 07:37 | |
*** vartom has joined #openstack-dev | 07:37 | |
*** bashok has joined #openstack-dev | 07:37 | |
*** devvesa has joined #openstack-dev | 07:37 | |
*** kaushikc has joined #openstack-dev | 07:37 | |
*** kushal has joined #openstack-dev | 07:37 | |
*** jbresnah has joined #openstack-dev | 07:37 | |
*** krtaylor has joined #openstack-dev | 07:37 | |
*** maheshp has joined #openstack-dev | 07:37 | |
*** jcoufal has joined #openstack-dev | 07:37 | |
*** koolhead17 has joined #openstack-dev | 07:37 | |
*** navid_ has joined #openstack-dev | 07:37 | |
*** zhuadl has joined #openstack-dev | 07:37 | |
*** kirankv has joined #openstack-dev | 07:37 | |
*** nati_ueno has joined #openstack-dev | 07:37 | |
*** afazekas has joined #openstack-dev | 07:37 | |
*** Ryan_Lane has joined #openstack-dev | 07:37 | |
*** zodiak has joined #openstack-dev | 07:37 | |
*** yuanz has joined #openstack-dev | 07:37 | |
*** redbeard2 has joined #openstack-dev | 07:37 | |
*** sleepsonthefloor has joined #openstack-dev | 07:37 | |
*** sorrison_ has joined #openstack-dev | 07:37 | |
*** yamahata has joined #openstack-dev | 07:37 | |
*** yongli has joined #openstack-dev | 07:37 | |
*** jecarey_ has joined #openstack-dev | 07:37 | |
*** pabelanger has joined #openstack-dev | 07:37 | |
*** erkules has joined #openstack-dev | 07:37 | |
*** leizhang has joined #openstack-dev | 07:37 | |
*** michchap has joined #openstack-dev | 07:37 | |
*** sthaha has joined #openstack-dev | 07:37 | |
*** bing_bu has joined #openstack-dev | 07:37 | |
*** lbragstad has joined #openstack-dev | 07:37 | |
*** rcrit has joined #openstack-dev | 07:37 | |
*** fifieldt has joined #openstack-dev | 07:37 | |
*** timello_ has joined #openstack-dev | 07:37 | |
*** zul has joined #openstack-dev | 07:37 | |
*** torandu has joined #openstack-dev | 07:37 | |
*** kenperkins has joined #openstack-dev | 07:37 | |
*** enikanorov has joined #openstack-dev | 07:37 | |
*** ajyounge has joined #openstack-dev | 07:37 | |
*** leveldoc has joined #openstack-dev | 07:37 | |
*** olaph has joined #openstack-dev | 07:37 | |
*** esheffield has joined #openstack-dev | 07:37 | |
*** sulrich has joined #openstack-dev | 07:37 | |
*** ydacheville has joined #openstack-dev | 07:37 | |
*** mikal has joined #openstack-dev | 07:37 | |
*** ssurana has joined #openstack-dev | 07:37 | |
*** Samos123 has joined #openstack-dev | 07:37 | |
*** matiu has joined #openstack-dev | 07:37 | |
*** rwsu has joined #openstack-dev | 07:37 | |
*** kmartin has joined #openstack-dev | 07:37 | |
*** mkerrin has joined #openstack-dev | 07:37 | |
*** cdub_ has joined #openstack-dev | 07:37 | |
*** kevinconway has joined #openstack-dev | 07:37 | |
*** jonesld has joined #openstack-dev | 07:37 | |
*** msmedved has joined #openstack-dev | 07:37 | |
*** gordc has joined #openstack-dev | 07:37 | |
*** vsergeyev has joined #openstack-dev | 07:37 | |
*** ndipanov_gone has joined #openstack-dev | 07:37 | |
*** CaptTofu has joined #openstack-dev | 07:37 | |
*** flaper87 has joined #openstack-dev | 07:37 | |
*** READ10 has joined #openstack-dev | 07:37 | |
*** cyeoh has joined #openstack-dev | 07:37 | |
*** devx has joined #openstack-dev | 07:37 | |
*** crazed has joined #openstack-dev | 07:37 | |
*** dabo has joined #openstack-dev | 07:37 | |
*** negronjl has joined #openstack-dev | 07:37 | |
*** huats has joined #openstack-dev | 07:37 | |
*** zoresvit has joined #openstack-dev | 07:37 | |
*** kpavel has joined #openstack-dev | 07:37 | |
*** lsmola has joined #openstack-dev | 07:37 | |
*** Ruetobas has joined #openstack-dev | 07:37 | |
*** Hien has joined #openstack-dev | 07:37 | |
*** benner has joined #openstack-dev | 07:37 | |
*** Tedster has joined #openstack-dev | 07:37 | |
*** ctracey has joined #openstack-dev | 07:37 | |
*** zigo has joined #openstack-dev | 07:37 | |
*** RajeshMohan has joined #openstack-dev | 07:37 | |
*** aloga has joined #openstack-dev | 07:37 | |
*** jdennis has joined #openstack-dev | 07:37 | |
*** rods` has joined #openstack-dev | 07:37 | |
*** martines has joined #openstack-dev | 07:37 | |
*** agorodnev has joined #openstack-dev | 07:37 | |
*** akshayms has joined #openstack-dev | 07:37 | |
*** redbo has joined #openstack-dev | 07:37 | |
*** jaypipes has joined #openstack-dev | 07:37 | |
*** beagles has joined #openstack-dev | 07:37 | |
*** med_ has joined #openstack-dev | 07:37 | |
*** jkyle has joined #openstack-dev | 07:37 | |
*** vishy has joined #openstack-dev | 07:37 | |
*** riskable has joined #openstack-dev | 07:37 | |
*** dosaboy has joined #openstack-dev | 07:37 | |
*** asalkeld has joined #openstack-dev | 07:37 | |
*** AnilV4 has joined #openstack-dev | 07:37 | |
*** Vek_ has joined #openstack-dev | 07:37 | |
*** jasper22 has joined #openstack-dev | 07:37 | |
*** bogdando has joined #openstack-dev | 07:37 | |
*** alunduil has joined #openstack-dev | 07:37 | |
*** al-maisan has joined #openstack-dev | 07:37 | |
*** sifusam has joined #openstack-dev | 07:37 | |
*** Thor^^_ has joined #openstack-dev | 07:37 | |
*** GheRivero has joined #openstack-dev | 07:37 | |
*** annashen has joined #openstack-dev | 07:37 | |
*** jdurgin has joined #openstack-dev | 07:37 | |
*** sheeprine has joined #openstack-dev | 07:37 | |
*** galstrom_zzz has joined #openstack-dev | 07:37 | |
*** rha has joined #openstack-dev | 07:37 | |
*** s1rp_ has joined #openstack-dev | 07:37 | |
*** dmarkey_ has joined #openstack-dev | 07:37 | |
*** mmalesky has joined #openstack-dev | 07:37 | |
*** hemna has joined #openstack-dev | 07:37 | |
*** sgran has joined #openstack-dev | 07:37 | |
*** ondergetekende has joined #openstack-dev | 07:37 | |
*** t-8ch has joined #openstack-dev | 07:37 | |
*** Adri2000 has joined #openstack-dev | 07:37 | |
*** JStoker has joined #openstack-dev | 07:37 | |
*** git-harry has joined #openstack-dev | 07:37 | |
*** jeblair has joined #openstack-dev | 07:37 | |
*** ameade has joined #openstack-dev | 07:37 | |
*** KA` has joined #openstack-dev | 07:37 | |
*** fcami has joined #openstack-dev | 07:37 | |
*** rahmu has joined #openstack-dev | 07:37 | |
*** Guest47356 has joined #openstack-dev | 07:37 | |
*** JonnyNomad has joined #openstack-dev | 07:37 | |
*** Apsu has joined #openstack-dev | 07:37 | |
*** davidhadas has joined #openstack-dev | 07:37 | |
*** apmelton1 has joined #openstack-dev | 07:37 | |
*** hughsaunders has joined #openstack-dev | 07:37 | |
*** toabctl_ has joined #openstack-dev | 07:37 | |
*** adam_g_ has joined #openstack-dev | 07:37 | |
*** hugokuo has joined #openstack-dev | 07:37 | |
*** rch has joined #openstack-dev | 07:37 | |
*** soren has joined #openstack-dev | 07:37 | |
*** alpha_ori has joined #openstack-dev | 07:37 | |
*** desve has joined #openstack-dev | 07:37 | |
*** jpeeler has joined #openstack-dev | 07:37 | |
*** ilyashakhat has joined #openstack-dev | 07:37 | |
*** jesusaurus has joined #openstack-dev | 07:37 | |
*** Ng has joined #openstack-dev | 07:37 | |
*** lcheng has joined #openstack-dev | 07:37 | |
*** jkordish has joined #openstack-dev | 07:37 | |
*** obondarev has joined #openstack-dev | 07:37 | |
*** toddnni has joined #openstack-dev | 07:37 | |
*** branen has joined #openstack-dev | 07:37 | |
*** lychinus has joined #openstack-dev | 07:37 | |
*** gmoro has joined #openstack-dev | 07:37 | |
*** andreaf has joined #openstack-dev | 07:37 | |
*** shardy has joined #openstack-dev | 07:37 | |
*** comstud has joined #openstack-dev | 07:37 | |
*** primeministerp has joined #openstack-dev | 07:37 | |
*** ianw has joined #openstack-dev | 07:37 | |
*** amerine has joined #openstack-dev | 07:37 | |
*** oubiwann has joined #openstack-dev | 07:37 | |
*** radix has joined #openstack-dev | 07:37 | |
*** blamar has joined #openstack-dev | 07:37 | |
*** dstufft has joined #openstack-dev | 07:37 | |
*** kashyap has joined #openstack-dev | 07:37 | |
*** mestery has joined #openstack-dev | 07:37 | |
*** dcmorton has joined #openstack-dev | 07:37 | |
*** cdub has joined #openstack-dev | 07:37 | |
*** termie has joined #openstack-dev | 07:37 | |
*** jculp has joined #openstack-dev | 07:37 | |
*** CrackerJackMack has joined #openstack-dev | 07:37 | |
*** fungi has joined #openstack-dev | 07:37 | |
*** mirrorbox has joined #openstack-dev | 07:37 | |
*** anderstj has joined #openstack-dev | 07:37 | |
*** belliott has joined #openstack-dev | 07:37 | |
*** jamespage has joined #openstack-dev | 07:37 | |
*** sgordon has joined #openstack-dev | 07:37 | |
*** santanel has joined #openstack-dev | 07:37 | |
*** jmeredit has joined #openstack-dev | 07:37 | |
*** matrohon has joined #openstack-dev | 07:37 | |
*** cafedecade has joined #openstack-dev | 07:37 | |
*** russellb has joined #openstack-dev | 07:37 | |
*** ttx has joined #openstack-dev | 07:37 | |
*** sc68cal has joined #openstack-dev | 07:37 | |
*** kiall has joined #openstack-dev | 07:37 | |
*** markvoelker has joined #openstack-dev | 07:37 | |
*** vipul has joined #openstack-dev | 07:37 | |
*** harlowja has joined #openstack-dev | 07:37 | |
*** dims has joined #openstack-dev | 07:37 | |
*** andrewbogott_afk has joined #openstack-dev | 07:37 | |
*** DuncanT has joined #openstack-dev | 07:37 | |
*** kpepple has joined #openstack-dev | 07:37 | |
*** anticw has joined #openstack-dev | 07:37 | |
*** MIDENN_ has joined #openstack-dev | 07:37 | |
*** westmaas has joined #openstack-dev | 07:37 | |
*** morganfainberg has joined #openstack-dev | 07:37 | |
*** pleia2 has joined #openstack-dev | 07:37 | |
*** krphop has joined #openstack-dev | 07:37 | |
*** iccha has joined #openstack-dev | 07:37 | |
*** ivoks has joined #openstack-dev | 07:37 | |
*** thingee has joined #openstack-dev | 07:37 | |
*** gaelL has joined #openstack-dev | 07:37 | |
*** Daviey has joined #openstack-dev | 07:37 | |
*** cburgess has joined #openstack-dev | 07:37 | |
*** tace has joined #openstack-dev | 07:37 | |
*** smoser has joined #openstack-dev | 07:37 | |
*** maurosr has joined #openstack-dev | 07:37 | |
*** nunosantos has joined #openstack-dev | 07:37 | |
*** Alex_Gaynor has joined #openstack-dev | 07:37 | |
*** shadower has joined #openstack-dev | 07:37 | |
*** llu_linux has joined #openstack-dev | 07:37 | |
*** wkelly has joined #openstack-dev | 07:37 | |
*** clayg has joined #openstack-dev | 07:37 | |
*** bugsduggan has joined #openstack-dev | 07:37 | |
*** vuntz has joined #openstack-dev | 07:37 | |
*** troytoman-away has joined #openstack-dev | 07:37 | |
*** jayg|g0n3 has joined #openstack-dev | 07:37 | |
*** lon has joined #openstack-dev | 07:37 | |
*** hemnafk has joined #openstack-dev | 07:37 | |
*** bourke has joined #openstack-dev | 07:37 | |
*** sirushti has joined #openstack-dev | 07:37 | |
*** mattymo has joined #openstack-dev | 07:37 | |
*** EmilienM has joined #openstack-dev | 07:37 | |
*** xqueralt has joined #openstack-dev | 07:37 | |
*** benonsoftware has joined #openstack-dev | 07:37 | |
*** dansmith has joined #openstack-dev | 07:37 | |
*** jgriffith has joined #openstack-dev | 07:37 | |
*** swifterdarrell has joined #openstack-dev | 07:37 | |
*** jkoelker has joined #openstack-dev | 07:37 | |
*** hoodow has joined #openstack-dev | 07:37 | |
*** sdague has joined #openstack-dev | 07:37 | |
*** openstackgerrit has joined #openstack-dev | 07:37 | |
*** epopt37 has joined #openstack-dev | 07:37 | |
*** JordanRinke has joined #openstack-dev | 07:37 | |
*** ogelbukh has joined #openstack-dev | 07:37 | |
*** bcrochet has joined #openstack-dev | 07:37 | |
*** TREllis has joined #openstack-dev | 07:37 | |
*** ZangMingJie has joined #openstack-dev | 07:37 | |
*** torgomatic has joined #openstack-dev | 07:37 | |
*** fc__ has joined #openstack-dev | 07:37 | |
*** Lumiere has joined #openstack-dev | 07:37 | |
*** VeggieMeat has joined #openstack-dev | 07:37 | |
*** cmagina has joined #openstack-dev | 07:37 | |
*** yjiang5_ has joined #openstack-dev | 07:37 | |
*** ekarlso has joined #openstack-dev | 07:37 | |
*** Slidey_ has joined #openstack-dev | 07:37 | |
*** roz has joined #openstack-dev | 07:37 | |
*** Chrisy has joined #openstack-dev | 07:37 | |
*** joearnold has joined #openstack-dev | 07:37 | |
*** ahale has joined #openstack-dev | 07:37 | |
*** lifeless has joined #openstack-dev | 07:37 | |
*** ChanServ has joined #openstack-dev | 07:37 | |
*** nijaba has joined #openstack-dev | 07:37 | |
*** moorcock.freenode.net sets mode: +o ChanServ | 07:37 | |
*** jf-jenni has joined #openstack-dev | 07:37 | |
*** Brainspackle has joined #openstack-dev | 07:37 | |
*** janisg has joined #openstack-dev | 07:37 | |
*** bcwaldon has joined #openstack-dev | 07:37 | |
*** xarg_ has joined #openstack-dev | 07:37 | |
*** christophk has joined #openstack-dev | 07:37 | |
*** hazmat has joined #openstack-dev | 07:37 | |
*** toanster has joined #openstack-dev | 07:37 | |
*** retr0h has joined #openstack-dev | 07:37 | |
*** villep_ has joined #openstack-dev | 07:37 | |
*** nikhil has joined #openstack-dev | 07:37 | |
*** notmyname has joined #openstack-dev | 07:37 | |
*** antonym has joined #openstack-dev | 07:37 | |
*** xarg has joined #openstack-dev | 07:37 | |
*** swaT30 has joined #openstack-dev | 07:37 | |
*** statik has joined #openstack-dev | 07:37 | |
*** mancdaz has joined #openstack-dev | 07:37 | |
*** sn0wb1rdz has joined #openstack-dev | 07:37 | |
*** clarkb has joined #openstack-dev | 07:37 | |
*** tris has joined #openstack-dev | 07:37 | |
*** radez_g0n3 has joined #openstack-dev | 07:37 | |
*** david-lyle has joined #openstack-dev | 07:37 | |
*** mordred has joined #openstack-dev | 07:37 | |
*** arosen has joined #openstack-dev | 07:37 | |
*** rootard has joined #openstack-dev | 07:37 | |
*** esmute has joined #openstack-dev | 07:37 | |
*** dtroyer_zz has joined #openstack-dev | 07:37 | |
*** alaski has joined #openstack-dev | 07:37 | |
*** cp16net has joined #openstack-dev | 07:37 | |
*** rosmaita has joined #openstack-dev | 07:37 | |
*** maheshp has quit IRC | 07:38 | |
*** kdas_ has joined #openstack-dev | 07:39 | |
*** kushal has quit IRC | 07:39 | |
*** mmagr has joined #openstack-dev | 07:40 | |
*** prekarat has quit IRC | 07:40 | |
*** maheshp has joined #openstack-dev | 07:40 | |
*** Ala has quit IRC | 07:40 | |
*** LinuxJedi has joined #openstack-dev | 07:41 | |
*** koolhead17 has quit IRC | 07:41 | |
*** matrohon has quit IRC | 07:42 | |
*** anfrolov has quit IRC | 07:42 | |
*** matrohon has joined #openstack-dev | 07:42 | |
*** eglynn has joined #openstack-dev | 07:42 | |
*** mrunge has joined #openstack-dev | 07:43 | |
*** mrunge is now known as mrunge` | 07:43 | |
*** anfrolov has joined #openstack-dev | 07:44 | |
*** mrunge` has quit IRC | 07:44 | |
*** mrunge has joined #openstack-dev | 07:44 | |
*** ndipanov_gone is now known as ndipanov | 07:44 | |
*** reed has joined #openstack-dev | 07:45 | |
*** Ryan_Lane1 has joined #openstack-dev | 07:46 | |
*** Ryan_Lane has quit IRC | 07:46 | |
*** lloydde has joined #openstack-dev | 07:46 | |
*** anfrolov has quit IRC | 07:49 | |
*** odyssey4me has joined #openstack-dev | 07:50 | |
*** sushils has joined #openstack-dev | 07:50 | |
*** pschaef has joined #openstack-dev | 07:51 | |
*** lloydde has quit IRC | 07:51 | |
*** maheshp has quit IRC | 07:51 | |
*** SergeyLukjanov has joined #openstack-dev | 07:52 | |
*** prekarat has joined #openstack-dev | 07:54 | |
*** Farooque has quit IRC | 07:55 | |
*** Farooque has joined #openstack-dev | 07:56 | |
*** Ryan_Lane1 has quit IRC | 07:57 | |
*** READ10 has quit IRC | 07:57 | |
*** READ10 has joined #openstack-dev | 07:59 | |
*** Farooque has quit IRC | 07:59 | |
*** mkoderer has joined #openstack-dev | 07:59 | |
*** Farooque has joined #openstack-dev | 07:59 | |
*** martyntaylor has joined #openstack-dev | 08:00 | |
*** bing_bu has quit IRC | 08:01 | |
*** michchap has quit IRC | 08:03 | |
*** michchap has joined #openstack-dev | 08:03 | |
*** Farooque has quit IRC | 08:04 | |
*** Farooque has joined #openstack-dev | 08:05 | |
*** xga_ has quit IRC | 08:06 | |
*** xga has quit IRC | 08:06 | |
*** Farooque has quit IRC | 08:06 | |
*** Farooque has joined #openstack-dev | 08:07 | |
*** saschpe has quit IRC | 08:07 | |
*** mihgen has quit IRC | 08:07 | |
*** gongysh has joined #openstack-dev | 08:08 | |
*** jbresnah has quit IRC | 08:08 | |
*** gmurphy has quit IRC | 08:11 | |
*** jpich has joined #openstack-dev | 08:13 | |
*** iartarisi has joined #openstack-dev | 08:18 | |
*** JordanP has quit IRC | 08:20 | |
*** Farooque has quit IRC | 08:20 | |
*** Farooque has joined #openstack-dev | 08:21 | |
gongysh | rkukura: ping | 08:22 |
*** Farooque has quit IRC | 08:22 | |
*** Farooque has joined #openstack-dev | 08:23 | |
*** maheshp1 has joined #openstack-dev | 08:24 | |
*** egallen_ has joined #openstack-dev | 08:24 | |
*** derekh has joined #openstack-dev | 08:26 | |
*** Farooque has quit IRC | 08:26 | |
*** Farooque has joined #openstack-dev | 08:26 | |
*** egallen has quit IRC | 08:26 | |
*** egallen_ is now known as egallen | 08:26 | |
gongysh | salv-orlando: ping | 08:27 |
*** anfrolov has joined #openstack-dev | 08:30 | |
*** doude has joined #openstack-dev | 08:30 | |
*** xga has joined #openstack-dev | 08:31 | |
*** xga_ has joined #openstack-dev | 08:31 | |
salv-orlando | gongysh: how can I help you? | 08:31 |
*** corXi has joined #openstack-dev | 08:32 | |
*** ndipanov has quit IRC | 08:35 | |
*** anfrolov has quit IRC | 08:35 | |
*** blues-man has joined #openstack-dev | 08:36 | |
*** amotoki has joined #openstack-dev | 08:36 | |
*** lucasagomes has joined #openstack-dev | 08:38 | |
*** Farooque has quit IRC | 08:38 | |
*** Farooque has joined #openstack-dev | 08:39 | |
*** johnthetubaguy has joined #openstack-dev | 08:40 | |
*** Farooque has quit IRC | 08:40 | |
gongysh | salv-orlando: https://review.openstack.org/#/c/34695/ | 08:40 |
*** ffio has joined #openstack-dev | 08:40 | |
gongysh | salv-orlando: I don't know how to test it | 08:40 |
*** Farooque has joined #openstack-dev | 08:40 | |
*** tkammer has quit IRC | 08:42 | |
gongysh | salv-orlando: the distributed lock is needed for someone who has many quantum-servers running on many servers. | 08:43 |
*** saschpe has joined #openstack-dev | 08:43 | |
salv-orlando | gongysh: I know I have commented the same thing on your patch for lockutils.synchronized | 08:44 |
*** psedlak has joined #openstack-dev | 08:44 | |
salv-orlando | I think acquiring a lock on the db is a decent approach; it's what is usually done. | 08:44 |
gongysh | yes, I have not see other easy way to implement it. | 08:45 |
*** kdas_ has quit IRC | 08:45 | |
*** kushal has joined #openstack-dev | 08:45 | |
salv-orlando | this is the easiest. Then if you want to implement distributed coordination among quantum instances, I'd be happy to support you. But don't expect me to do coding! | 08:45 |
salv-orlando | for testing it, I would simply consider a validation of the underlying mechanism. Artificially create a lock. | 08:46 |
gongysh | you just need to help review. | 08:46 |
salv-orlando | This can be done invoking just lok on some mac in the unit test | 08:46 |
gongysh | and come up with idea. | 08:47 |
*** Aarti has joined #openstack-dev | 08:47 | |
*** lloydde has joined #openstack-dev | 08:47 | |
salv-orlando | hmm. I am think that this testing approach I was thinking of probably won't work. | 08:47 |
*** JordanP has joined #openstack-dev | 08:48 | |
gongysh | I tested it with eventlet.sleep() after it is locked, and then try to do another invocation. | 08:49 |
gongysh | but the combination of eventlet.sleep() and sqlalchemy sucks. | 08:49 |
openstackgerrit | A change was merged to openstack/nova: Check the instance ID before creating it https://review.openstack.org/29736 | 08:50 |
*** Farooque has quit IRC | 08:50 | |
salv-orlando | basically the logic is that acquiring a lock would block you until the lock is released | 08:51 |
*** ndipanov has joined #openstack-dev | 08:51 | |
*** Farooque has joined #openstack-dev | 08:51 | |
salv-orlando | so you would be blocked on the query on DistributedLock? | 08:51 |
kashyap | lifeless, Hello, when you're here: d-i-b can be used in a beefy guest hypervisor (KVM w/ nested virt), right? | 08:51 |
*** lloydde has quit IRC | 08:51 | |
gongysh | that is sure. | 08:52 |
agorodnev | lifeless: hi. Could you please review my patch again? =) | 08:52 |
salv-orlando | So perhaps even mock might not help us because I can't do something mock.assertBlockedHere .... | 08:53 |
agorodnev | lifeless: here it is https://review.openstack.org/#/c/32120/7 | 08:53 |
salv-orlando | perhaps it might be helpful for testing finding the code where locks are released? | 08:54 |
enikanorov | gongysh: you also need to consider a case when one server is down for some reason while it holds a lock | 08:54 |
salv-orlando | I can't find it in your patch. | 08:54 |
salv-orlando | gongysh: not saying the code is not there. Just saying I'm not able to find it. | 08:54 |
gongysh | locks are released when the transaction is ended. | 08:54 |
gongysh | enikanorov: when the server down, the connection will close, and then the transaction will be ended auto. | 08:55 |
*** Farooque has quit IRC | 08:55 | |
*** Farooque has joined #openstack-dev | 08:56 | |
openstackgerrit | A change was merged to openstack/nova: Add tests for libvirt's reboot functionality https://review.openstack.org/33434 | 08:56 |
*** johnthetubaguy has quit IRC | 08:56 | |
*** johnthetubaguy1 has joined #openstack-dev | 08:56 | |
openstackgerrit | A change was merged to openstack/cinder: Added volume backup and restore to Ceph RBD driver https://review.openstack.org/34350 | 08:56 |
enikanorov | gongysh: probably I'm not seeing full picture? I see you call lock() which adds lock entry to DB | 08:56 |
salv-orlando | gongysh: so basically the lock is achieved by keeping a transaction running until the lock is released? | 08:57 |
enikanorov | but honestly I don't see a code that checks if lock is taken, neither i see how lock is released | 08:57 |
*** athomas has joined #openstack-dev | 08:59 | |
*** Farooque has quit IRC | 08:59 | |
*** Farooque has joined #openstack-dev | 09:00 | |
salv-orlando | anyway, to answer your question about testing. | 09:00 |
*** johnthetubaguy1 is now known as johnthetubaguy | 09:01 | |
*** jgallard has quit IRC | 09:01 | |
gongysh | salv-orlando: lock is released until the transaction is ended (committed or rolled back) | 09:01 |
enikanorov | I suspect some files are missing from the patch | 09:01 |
*** jgallard has joined #openstack-dev | 09:01 | |
gongysh | salv-orlando: lock is released when the transaction is ended (committed or rolled back) | 09:01 |
salv-orlando | gongysh: indeed the transaction itself is the lock in a way | 09:01 |
salv-orlando | because of the fact that you leave the DistributedLock table locked when you query it from within the same transaction | 09:02 |
salv-orlando | so transaction commit will remove that lock on the table and allow another transaction to proceed | 09:02 |
salv-orlando | do I get it right? | 09:02 |
salv-orlando | I think you can artificially acquire a lock, and then spawn a thread that acquires that lock. You should then be able to assert that the 'update_time' of the lock has not changed (i.e.: the transaction is blocked) and that the operation, for instance, create port did not complete | 09:03 |
salv-orlando | then you remove or unlock or whatever that lock that you artificially acquired, and you should be able to verify the other thread got the lock | 09:04 |
salv-orlando | problem might that sqllite often cheats me with multiple threads | 09:04 |
salv-orlando | one thread does not read the updates from the other thread | 09:04 |
salv-orlando | regarding the implementation, let's defer the comments to gerrit | 09:05 |
*** odyssey4me2 has joined #openstack-dev | 09:05 | |
*** odyssey4me has quit IRC | 09:05 | |
*** nrs_ has quit IRC | 09:05 | |
salv-orlando | I don't see any reason for which your approach won't work. But assuming a transaction might last as long as it's required to release the lock sounds a bit hackish to me. Anyway, this is just an opinion and therefore not a reason for -1 the patch. | 09:06 |
*** garyk has joined #openstack-dev | 09:06 | |
lifeless | kashyap: yuo can definitely run it there, or just on a regular workstation outside of vm | 09:07 |
kashyap | lifeless, Yes, I don't have a spare workstation, but a beefy 48G mem KVM virt host, which can host a guest-hypervisor | 09:07 |
kashyap | lifeless, Thanks for your response. | 09:07 |
lifeless | kashyap: so you can run it on the virt host, or in a vm on it, either way is fine. | 09:08 |
kashyap | lifeless, Yes, didn't wanted to run on host, because, it touches sudoers, etc. If I could run in a VM, I can give it to other folks :) | 09:08 |
gongysh | salv-orlando: In DB, we can explicitly get a lock, but no way to explicitly release a lock. The way to do it is to end a transaction. | 09:08 |
*** Tross has quit IRC | 09:08 | |
kashyap | (Not that I can't clean the host up, anyhow.) | 09:08 |
lifeless | kashyap: oh, just sudo first, then you don't need the sudoers.d; thats really only there so CI systems don't need to a) run it as root or b) prompt for sudo | 09:09 |
lifeless | kashyap: I usually just answer the first sudo call it makes and after that its fine | 09:09 |
kashyap | lifeless, Ok, thanks. Question - what's the minimal size of an image you could produce? (that can boot as a nova instance) | 09:10 |
*** nrs_ has joined #openstack-dev | 09:11 | |
lifeless | kashyap: in principle 40M or something; but we don't aim for minimal size at the moment - just minimal build time : so the smallest you'll get out would be a base ubuntu: 'disk-image-create -o test ubuntu -a i386' | 09:12 |
*** bourke has quit IRC | 09:13 | |
lifeless | kashyap: i386 because it has smaller binaries; ubuntu cloud images are fairly small already, and nothing additional. | 09:13 |
salv-orlando | gongysh: I am confident you know this is the best possible approach. I will look better at the code. We have been hitter several times by long running transactions, this is the reason for my perplexity. | 09:13 |
kashyap | lifeless, I see. | 09:13 |
kashyap | lifeless, Do you know top off your head, would the above cli work for Fedora? | 09:13 |
kashyap | lifeless, If not just disregard me, I'm trying it myself here. Thanks again. | 09:14 |
lifeless | kashyap: it should, there's a bunch of Red Hat folk collaborating on TripleO, and they run diskimage-builder as part of that. | 09:14 |
lifeless | kashyap: (And I believe they use Fedora themselves, not RHEL) | 09:14 |
*** freedomhui has quit IRC | 09:14 | |
*** gongysh has quit IRC | 09:14 | |
kashyap | lifeless, Oke-doke. Will check. | 09:15 |
lifeless | derekh: lucasagomes: ^ {offhand folk I know participating} | 09:15 |
*** danpb has joined #openstack-dev | 09:16 | |
*** mkoderer_ has joined #openstack-dev | 09:16 | |
*** bourke has joined #openstack-dev | 09:17 | |
lifeless | kashyap: BTW to do IMAP/POP3 I need to log into the HP VPN, outlook web access I can just use without having to deal with that just for email. | 09:17 |
lifeless | kashyap: -> and thats why outlook. | 09:17 |
kashyap | lifeless, No worries, sir. | 09:18 |
lucasagomes | kashyap, yea I'm running tripleo on fedora | 09:18 |
lucasagomes | didn't try on rhel yet tho | 09:19 |
kashyap | lucasagomes, Ok, I'm just giving it a spin on an F19 KVM guest (hypervisor) | 09:19 |
kashyap | Any gotchas I should be aware of? | 09:19 |
lucasagomes | kashyap, you want to have a full fedora deployment ? (fedora host, bootstrap, baremetal nodes) ? | 09:20 |
kashyap | lucasagomes, I'm not sure what a "full fedora deployment" in the context of diskimage-builder. I'm just trying to create a Fedora image with d-i-b. | 09:21 |
lucasagomes | kashyap, right, it should be pretty stable then | 09:21 |
kashyap | lucasagomes, Just a nova consumable Fedora image (preferably small <200 MB) | 09:21 |
kashyap | lucasagomes, Thank you. Maybe if I have a questin or two, can I bother you on #tripleo? | 09:22 |
lucasagomes | kashyap, sure np! | 09:23 |
*** odyssey4me2 has quit IRC | 09:24 | |
*** Farooque has quit IRC | 09:24 | |
*** Farooque has joined #openstack-dev | 09:24 | |
*** xga__ has joined #openstack-dev | 09:26 | |
*** Farooque has quit IRC | 09:26 | |
*** Farooque has joined #openstack-dev | 09:26 | |
*** gongysh has joined #openstack-dev | 09:26 | |
*** xga_ has quit IRC | 09:29 | |
*** Farooque has quit IRC | 09:29 | |
*** xga_ has joined #openstack-dev | 09:29 | |
*** xga has quit IRC | 09:29 | |
*** Farooque has joined #openstack-dev | 09:29 | |
*** odyssey4me has joined #openstack-dev | 09:31 | |
*** xga_ has quit IRC | 09:33 | |
*** xga__ has quit IRC | 09:34 | |
*** xga_ has joined #openstack-dev | 09:38 | |
*** xga has joined #openstack-dev | 09:38 | |
*** pnavarro has quit IRC | 09:41 | |
*** ndipanov has quit IRC | 09:47 | |
*** Farooque has quit IRC | 09:47 | |
*** Farooque has joined #openstack-dev | 09:47 | |
*** lloydde has joined #openstack-dev | 09:48 | |
*** flaper87 has quit IRC | 09:49 | |
*** lloydde has quit IRC | 09:53 | |
*** Farooque has quit IRC | 09:53 | |
*** odyssey4me has quit IRC | 09:53 | |
*** sride has joined #openstack-dev | 09:53 | |
*** Farooque has joined #openstack-dev | 09:53 | |
*** flaper87 has joined #openstack-dev | 09:54 | |
*** Reapster_ is now known as Reapster | 09:54 | |
*** anfrolov has joined #openstack-dev | 09:58 | |
*** ndipanov has joined #openstack-dev | 09:59 | |
*** Farooque has quit IRC | 09:59 | |
*** Farooque has joined #openstack-dev | 10:00 | |
*** pixelbeat has joined #openstack-dev | 10:00 | |
*** odyssey4me has joined #openstack-dev | 10:01 | |
*** Farooque has quit IRC | 10:01 | |
*** Farooque has joined #openstack-dev | 10:02 | |
*** anfrolov has quit IRC | 10:03 | |
*** ndipanov has quit IRC | 10:05 | |
*** mkoderer has quit IRC | 10:07 | |
*** mkoderer_ is now known as mkoderer | 10:07 | |
*** ndipanov has joined #openstack-dev | 10:07 | |
*** mmagr has quit IRC | 10:13 | |
*** SergeyLukjanov has quit IRC | 10:15 | |
*** boris-42 has quit IRC | 10:16 | |
*** SergeyLukjanov has joined #openstack-dev | 10:17 | |
*** mmagr has joined #openstack-dev | 10:17 | |
*** michchap has quit IRC | 10:17 | |
*** mjfork has joined #openstack-dev | 10:18 | |
*** michchap has joined #openstack-dev | 10:18 | |
*** zhuadl has quit IRC | 10:20 | |
*** maheshp1 has quit IRC | 10:23 | |
*** Farooque has quit IRC | 10:23 | |
*** Farooque has joined #openstack-dev | 10:23 | |
*** wenjianhn has quit IRC | 10:25 | |
*** wenjianhn has joined #openstack-dev | 10:25 | |
*** kpavel has quit IRC | 10:26 | |
enikanorov | salv-orlando: gongysh: what do guys think about moving agent scheduling extension to core api? | 10:26 |
*** ffio has quit IRC | 10:31 | |
*** kpavel has joined #openstack-dev | 10:39 | |
*** Farooque has quit IRC | 10:39 | |
*** Farooque has joined #openstack-dev | 10:39 | |
*** maheshp has joined #openstack-dev | 10:42 | |
*** gongysh has quit IRC | 10:44 | |
*** wenjianhn has quit IRC | 10:45 | |
*** Farooque has quit IRC | 10:46 | |
*** Farooque has joined #openstack-dev | 10:46 | |
*** pnavarro has joined #openstack-dev | 10:48 | |
*** Farooque has quit IRC | 10:48 | |
*** lloydde has joined #openstack-dev | 10:48 | |
*** Farooque has joined #openstack-dev | 10:48 | |
*** rnirmal has joined #openstack-dev | 10:48 | |
*** lloydde has quit IRC | 10:53 | |
*** maheshp has quit IRC | 11:01 | |
*** yaguang has quit IRC | 11:02 | |
*** chuckieb has joined #openstack-dev | 11:07 | |
*** fifieldt has quit IRC | 11:11 | |
*** Farooque has quit IRC | 11:11 | |
*** Farooque has joined #openstack-dev | 11:11 | |
*** psedlak has quit IRC | 11:12 | |
*** Farooque has quit IRC | 11:12 | |
*** Farooque has joined #openstack-dev | 11:13 | |
*** xga__ has joined #openstack-dev | 11:16 | |
*** Farooque has quit IRC | 11:16 | |
*** Farooque has joined #openstack-dev | 11:16 | |
*** pnavarro has quit IRC | 11:16 | |
*** timello_ has quit IRC | 11:17 | |
*** Farooque has quit IRC | 11:17 | |
*** JordanP has quit IRC | 11:18 | |
*** timello_ has joined #openstack-dev | 11:18 | |
*** Farooque has joined #openstack-dev | 11:18 | |
*** xga_ has quit IRC | 11:18 | |
*** xga has quit IRC | 11:18 | |
*** xga has joined #openstack-dev | 11:19 | |
*** maheshp has joined #openstack-dev | 11:19 | |
*** rods has joined #openstack-dev | 11:21 | |
*** garyk has quit IRC | 11:21 | |
*** Farooque has quit IRC | 11:22 | |
*** Farooque has joined #openstack-dev | 11:23 | |
*** drewlander has joined #openstack-dev | 11:23 | |
*** nati_ueno has quit IRC | 11:27 | |
*** Farooque has quit IRC | 11:27 | |
*** Farooque has joined #openstack-dev | 11:28 | |
*** dhellmann has joined #openstack-dev | 11:29 | |
*** galstrom_zzz is now known as galstrom | 11:29 | |
agorodnev | lifeless: ping | 11:30 |
*** fesp has joined #openstack-dev | 11:30 | |
*** flaper87 has quit IRC | 11:32 | |
*** fesp is now known as flaper87 | 11:32 | |
*** galstrom is now known as galstrom_zzz | 11:33 | |
*** obondarev has quit IRC | 11:35 | |
*** Farooque has quit IRC | 11:35 | |
*** Farooque has joined #openstack-dev | 11:35 | |
*** bashok has quit IRC | 11:36 | |
*** enikanorov-w_ has joined #openstack-dev | 11:36 | |
*** novel1 has joined #openstack-dev | 11:36 | |
*** ilyashakhat_ has joined #openstack-dev | 11:37 | |
*** obondarev has joined #openstack-dev | 11:37 | |
*** pnavarro has joined #openstack-dev | 11:37 | |
*** mirrorbox has quit IRC | 11:37 | |
*** enikanorov-w has quit IRC | 11:39 | |
*** Farooque has quit IRC | 11:39 | |
*** ilyashakhat has quit IRC | 11:39 | |
openstackgerrit | A change was merged to openstack/nova: Port flavor_access extension to v3 API Part 1 https://review.openstack.org/34567 | 11:39 |
*** Farooque has joined #openstack-dev | 11:39 | |
agorodnev | 29 июня, в эту субботу, в Саратов приезжает уникальный человек, сказочник и писатель. | 11:40 |
*** avishay has quit IRC | 11:40 | |
*** Farooque has quit IRC | 11:42 | |
*** jjmb has quit IRC | 11:42 | |
*** Farooque has joined #openstack-dev | 11:42 | |
*** pnavarro has quit IRC | 11:43 | |
*** Farooque has quit IRC | 11:43 | |
*** Farooque has joined #openstack-dev | 11:44 | |
*** blues-man has quit IRC | 11:46 | |
*** dolphm has joined #openstack-dev | 11:48 | |
*** Farooque has quit IRC | 11:48 | |
*** lloydde has joined #openstack-dev | 11:48 | |
*** Farooque has joined #openstack-dev | 11:49 | |
*** sandywalsh has quit IRC | 11:50 | |
*** lukego has quit IRC | 11:50 | |
*** jgallard has quit IRC | 11:52 | |
*** jgallard has joined #openstack-dev | 11:52 | |
*** lloydde has quit IRC | 11:53 | |
*** Farooque has quit IRC | 11:53 | |
*** Farooque has joined #openstack-dev | 11:54 | |
*** jgallard has quit IRC | 11:54 | |
*** jgallard has joined #openstack-dev | 11:54 | |
*** pcm___ has joined #openstack-dev | 11:56 | |
*** noslzzp has joined #openstack-dev | 11:58 | |
*** jcoufal has quit IRC | 12:01 | |
*** jasper22_ has joined #openstack-dev | 12:03 | |
*** sandywalsh has joined #openstack-dev | 12:03 | |
*** HenryG has joined #openstack-dev | 12:04 | |
*** johnthetubaguy has quit IRC | 12:05 | |
*** jasper22 has quit IRC | 12:06 | |
*** anfrolov has joined #openstack-dev | 12:06 | |
*** rkukura has quit IRC | 12:07 | |
*** maheshp has quit IRC | 12:07 | |
*** johnthetubaguy has joined #openstack-dev | 12:07 | |
agorodnev | lifeless: ping | 12:09 |
*** SergeyLukjanov has quit IRC | 12:10 | |
*** novel1 has quit IRC | 12:10 | |
*** obondarev has quit IRC | 12:10 | |
*** agorodnev has quit IRC | 12:10 | |
*** ilyashakhat_ has quit IRC | 12:10 | |
*** ogelbukh has quit IRC | 12:10 | |
*** novel1 has joined #openstack-dev | 12:10 | |
*** ogelbukh has joined #openstack-dev | 12:11 | |
*** agorodnev has joined #openstack-dev | 12:11 | |
*** ilyashakhat has joined #openstack-dev | 12:11 | |
*** ffio has joined #openstack-dev | 12:11 | |
agorodnev | . | 12:11 |
*** obondarev has joined #openstack-dev | 12:12 | |
*** dolphm has quit IRC | 12:13 | |
*** Farooque has quit IRC | 12:13 | |
*** Farooque has joined #openstack-dev | 12:14 | |
*** SergeyLukjanov has joined #openstack-dev | 12:14 | |
*** jruzicka has joined #openstack-dev | 12:15 | |
*** jgallard has quit IRC | 12:17 | |
*** Farooque has quit IRC | 12:17 | |
*** bknudson has joined #openstack-dev | 12:17 | |
*** Farooque has joined #openstack-dev | 12:18 | |
*** anfrolov has quit IRC | 12:20 | |
*** ctlaugh has joined #openstack-dev | 12:21 | |
*** vkmc has joined #openstack-dev | 12:22 | |
*** vkmc has quit IRC | 12:22 | |
*** vkmc has joined #openstack-dev | 12:22 | |
openstackgerrit | A change was merged to openstack/ceilometer: Bring in oslo-common rpc ack() changes. https://review.openstack.org/34602 | 12:23 |
*** zhuadl has joined #openstack-dev | 12:30 | |
*** zul has quit IRC | 12:35 | |
*** _jasper22_ has joined #openstack-dev | 12:35 | |
*** jjmb has joined #openstack-dev | 12:36 | |
*** dhellmann has quit IRC | 12:37 | |
*** jasper22_ has quit IRC | 12:38 | |
*** redbeard2 has quit IRC | 12:38 | |
*** markmc has joined #openstack-dev | 12:40 | |
*** mikal has quit IRC | 12:43 | |
*** lbragstad has quit IRC | 12:44 | |
*** mikal has joined #openstack-dev | 12:45 | |
*** olaph has quit IRC | 12:45 | |
*** prad has joined #openstack-dev | 12:46 | |
*** kushal has quit IRC | 12:46 | |
*** boris-42 has joined #openstack-dev | 12:47 | |
*** lloydde has joined #openstack-dev | 12:49 | |
*** zoresvit has quit IRC | 12:49 | |
*** mattymo has quit IRC | 12:50 | |
*** adam_g_ has quit IRC | 12:51 | |
*** termie has quit IRC | 12:51 | |
*** adalbas has joined #openstack-dev | 12:51 | |
*** jayg|g0n3 has quit IRC | 12:51 | |
*** 18VABDI0Z has joined #openstack-dev | 12:53 | |
*** 77CAAIKHV has joined #openstack-dev | 12:53 | |
*** jjmb has quit IRC | 12:53 | |
*** johnthetubaguy has quit IRC | 12:53 | |
*** lloydde has quit IRC | 12:53 | |
*** adam_g has joined #openstack-dev | 12:54 | |
*** adam_g has quit IRC | 12:54 | |
*** adam_g has joined #openstack-dev | 12:54 | |
*** johnthetubaguy has joined #openstack-dev | 12:54 | |
*** mattymo has joined #openstack-dev | 12:54 | |
*** xga__ has quit IRC | 12:54 | |
*** xga has quit IRC | 12:54 | |
*** jayg|g0n3 has joined #openstack-dev | 12:54 | |
*** termie has joined #openstack-dev | 12:54 | |
*** termie has quit IRC | 12:54 | |
*** termie has joined #openstack-dev | 12:54 | |
*** tmclaugh[work] has joined #openstack-dev | 12:54 | |
*** boris-42 has quit IRC | 12:54 | |
*** pnavarro has joined #openstack-dev | 12:54 | |
*** JordanP has joined #openstack-dev | 12:55 | |
*** zoresvit has joined #openstack-dev | 12:55 | |
*** kirankv has quit IRC | 12:57 | |
*** Farooque has quit IRC | 12:57 | |
*** Farooque has joined #openstack-dev | 12:58 | |
*** boris-42 has joined #openstack-dev | 12:59 | |
*** zul has joined #openstack-dev | 12:59 | |
*** jayg|g0n3 is now known as jayg | 13:00 | |
*** Farooque has quit IRC | 13:00 | |
*** Farooque has joined #openstack-dev | 13:00 | |
*** SergeyLukjanov has quit IRC | 13:02 | |
*** SergeyLukjanov has joined #openstack-dev | 13:03 | |
*** marun has joined #openstack-dev | 13:03 | |
*** morazi has joined #openstack-dev | 13:04 | |
*** tzumainn has joined #openstack-dev | 13:05 | |
*** marun has quit IRC | 13:05 | |
*** leizhang has quit IRC | 13:06 | |
*** Farooque has quit IRC | 13:06 | |
*** marun has joined #openstack-dev | 13:06 | |
*** jecarey_ has quit IRC | 13:06 | |
*** Farooque has joined #openstack-dev | 13:07 | |
*** jjmb has joined #openstack-dev | 13:07 | |
*** maheshp has joined #openstack-dev | 13:07 | |
*** dolphm has joined #openstack-dev | 13:08 | |
*** Farooque has quit IRC | 13:08 | |
*** prekarat has quit IRC | 13:08 | |
*** Farooque has joined #openstack-dev | 13:09 | |
*** lbragstad has joined #openstack-dev | 13:09 | |
*** kushal has joined #openstack-dev | 13:09 | |
*** edmund has joined #openstack-dev | 13:10 | |
*** jclift_ has joined #openstack-dev | 13:11 | |
*** maheshp has quit IRC | 13:11 | |
*** vartom has quit IRC | 13:12 | |
*** prekarat has joined #openstack-dev | 13:12 | |
*** radez_g0n3 is now known as radez | 13:14 | |
*** jayg has quit IRC | 13:15 | |
*** Farooque has quit IRC | 13:15 | |
*** darjeeling has joined #openstack-dev | 13:15 | |
*** Farooque has joined #openstack-dev | 13:16 | |
*** jergerber has joined #openstack-dev | 13:17 | |
*** marun has quit IRC | 13:17 | |
*** marun has joined #openstack-dev | 13:18 | |
*** Farooque has quit IRC | 13:18 | |
*** Farooque has joined #openstack-dev | 13:19 | |
*** jayg has joined #openstack-dev | 13:19 | |
*** jecarey_ has joined #openstack-dev | 13:21 | |
*** marun has quit IRC | 13:21 | |
*** marun has joined #openstack-dev | 13:22 | |
*** maheshp has joined #openstack-dev | 13:24 | |
*** marun has quit IRC | 13:24 | |
*** psedlak has joined #openstack-dev | 13:24 | |
*** marun has joined #openstack-dev | 13:25 | |
*** Farooque has quit IRC | 13:25 | |
*** maheshp has quit IRC | 13:26 | |
*** Farooque has joined #openstack-dev | 13:26 | |
*** rharwood has joined #openstack-dev | 13:26 | |
*** marun has quit IRC | 13:27 | |
*** Farooque has quit IRC | 13:27 | |
*** Farooque has joined #openstack-dev | 13:28 | |
*** blues-man has joined #openstack-dev | 13:28 | |
*** jgallard has joined #openstack-dev | 13:28 | |
*** marun has joined #openstack-dev | 13:29 | |
*** maheshp has joined #openstack-dev | 13:29 | |
*** dperaza has joined #openstack-dev | 13:29 | |
*** JordanP has quit IRC | 13:30 | |
*** lychinus has quit IRC | 13:30 | |
*** krtaylor has quit IRC | 13:30 | |
*** JordanP has joined #openstack-dev | 13:31 | |
*** Farooque has quit IRC | 13:32 | |
*** Farooque has joined #openstack-dev | 13:32 | |
*** tjones has joined #openstack-dev | 13:32 | |
*** neelashah has joined #openstack-dev | 13:32 | |
*** tjones has left #openstack-dev | 13:33 | |
*** michchap has quit IRC | 13:34 | |
*** Farooque has quit IRC | 13:34 | |
*** odyssey4me has quit IRC | 13:34 | |
*** Farooque has joined #openstack-dev | 13:35 | |
*** eharney has quit IRC | 13:35 | |
*** kaushikc1 has joined #openstack-dev | 13:35 | |
*** mtreinish has joined #openstack-dev | 13:36 | |
*** 77CAAIKHV has quit IRC | 13:36 | |
*** 18VABDI0Z has quit IRC | 13:36 | |
*** kaushikc has quit IRC | 13:36 | |
*** redbeard2 has joined #openstack-dev | 13:37 | |
*** xga_ has joined #openstack-dev | 13:38 | |
*** xga has joined #openstack-dev | 13:38 | |
*** ffio has quit IRC | 13:38 | |
*** litong has joined #openstack-dev | 13:38 | |
*** dprince has joined #openstack-dev | 13:39 | |
*** maheshp has quit IRC | 13:40 | |
*** kbringard has joined #openstack-dev | 13:41 | |
*** odyssey4me has joined #openstack-dev | 13:41 | |
*** kbrierly has joined #openstack-dev | 13:43 | |
*** Farooque has quit IRC | 13:43 | |
*** Farooque has joined #openstack-dev | 13:43 | |
*** jasondotstar has joined #openstack-dev | 13:43 | |
*** yuanz has quit IRC | 13:43 | |
*** yuanz has joined #openstack-dev | 13:44 | |
*** dkranz has joined #openstack-dev | 13:44 | |
*** Farooque has quit IRC | 13:46 | |
jd__ | but where is oslo 1.2.0a2? | 13:46 |
*** Farooque has joined #openstack-dev | 13:46 | |
*** adalbas has quit IRC | 13:46 | |
jd__ | (oslo.config I meant) | 13:46 |
*** martyntaylor has quit IRC | 13:47 | |
*** martyntaylor has joined #openstack-dev | 13:47 | |
*** Chocobo has joined #openstack-dev | 13:47 | |
*** mkollaro has joined #openstack-dev | 13:48 | |
*** stevemar has joined #openstack-dev | 13:48 | |
*** odyssey4me has quit IRC | 13:48 | |
*** martyntaylor has quit IRC | 13:48 | |
*** andrewbogott_afk is now known as andrewbogott | 13:48 | |
*** martyntaylor has joined #openstack-dev | 13:49 | |
openstackgerrit | A change was merged to openstack/keystone: Revert environment module usage in middleware. https://review.openstack.org/34484 | 13:49 |
*** lloydde has joined #openstack-dev | 13:50 | |
*** msmedved has quit IRC | 13:50 | |
*** kaushikc has joined #openstack-dev | 13:50 | |
*** kaushikc1 has quit IRC | 13:51 | |
Chocobo | Hi all, I have stuck out in the support channel and on the mailing list. Sorry to ask a question here: Does anyone know what the underlying cause of "WARNING [quantum.db.agentschedulers_db] Fail scheduling network" could be? It does not occur when launching the first VM, but each subsequent one it does. | 13:52 |
*** SergeyLukjanov has quit IRC | 13:52 | |
markmc | mordred, if you +1 https://review.openstack.org/34586 I'll approve | 13:52 |
*** msmedved has joined #openstack-dev | 13:54 | |
*** lloydde has quit IRC | 13:54 | |
*** jasdeepH has joined #openstack-dev | 13:54 | |
*** burt has joined #openstack-dev | 13:56 | |
*** kaushikc has quit IRC | 13:57 | |
*** odyssey4me has joined #openstack-dev | 13:57 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Add netaddr.IPAddress support to to_primitive() https://review.openstack.org/34442 | 13:58 |
*** sride has quit IRC | 13:59 | |
*** noslzzp has quit IRC | 14:00 | |
*** marun has quit IRC | 14:00 | |
openstackgerrit | A change was merged to openstack/oslo.config: Ensure namespace package is installed. https://review.openstack.org/34586 | 14:00 |
*** dhellmann has joined #openstack-dev | 14:01 | |
*** marun has joined #openstack-dev | 14:01 | |
*** olaph has joined #openstack-dev | 14:01 | |
*** radez is now known as radez_g0n3 | 14:02 | |
*** adalbas has joined #openstack-dev | 14:03 | |
*** BobBall has joined #openstack-dev | 14:03 | |
*** mrodden has joined #openstack-dev | 14:04 | |
*** michchap has joined #openstack-dev | 14:04 | |
*** mrodden1 has joined #openstack-dev | 14:05 | |
*** anteaya has joined #openstack-dev | 14:05 | |
*** topol has joined #openstack-dev | 14:06 | |
*** aeperezt has joined #openstack-dev | 14:07 | |
*** mrodden has quit IRC | 14:08 | |
*** HenryG_ has joined #openstack-dev | 14:09 | |
*** Farooque has quit IRC | 14:09 | |
*** andrew_plunk has joined #openstack-dev | 14:10 | |
*** Farooque has joined #openstack-dev | 14:10 | |
*** boris-42 has quit IRC | 14:10 | |
*** HenryG has quit IRC | 14:10 | |
*** markmcclain has joined #openstack-dev | 14:11 | |
*** rkukura has joined #openstack-dev | 14:12 | |
*** noslzzp has joined #openstack-dev | 14:12 | |
rkukura | gongysh: pong | 14:13 |
*** zodiak has quit IRC | 14:13 | |
*** rpodolyaka has joined #openstack-dev | 14:13 | |
*** noslzzp has quit IRC | 14:13 | |
*** krtaylor has joined #openstack-dev | 14:15 | |
*** michchap has quit IRC | 14:16 | |
*** navid_ has left #openstack-dev | 14:16 | |
*** alop has joined #openstack-dev | 14:16 | |
*** cp16net is now known as cp16net|away | 14:17 | |
*** cp16net|away is now known as cp16net | 14:17 | |
*** jasdeepH has quit IRC | 14:17 | |
*** rods has quit IRC | 14:19 | |
burt | I asked this briefly in nova last night, but had to leave. db.sqlalchemy.instance_get_all_by_filters explicitly filters out instances by project_id or user_id if it's not invoked in admin context. Would it be better to handle this in the policy layer? (There's a check_policy in compute.api.get_all, but it's essentially a no-op .. looks like a stub from the original policy commit.) | 14:19 |
*** _TheDodd_ has joined #openstack-dev | 14:19 | |
*** xga__ has joined #openstack-dev | 14:20 | |
*** rods has joined #openstack-dev | 14:20 | |
*** Farooque has quit IRC | 14:21 | |
*** andrewbogott is now known as andrewbogott_afk | 14:21 | |
*** Farooque has joined #openstack-dev | 14:22 | |
*** xga_ has quit IRC | 14:22 | |
*** alop has quit IRC | 14:23 | |
*** xga has quit IRC | 14:23 | |
*** SergeyLukjanov has joined #openstack-dev | 14:24 | |
*** Farooque has quit IRC | 14:24 | |
*** xga__ has quit IRC | 14:24 | |
*** Farooque has joined #openstack-dev | 14:24 | |
*** woodspa has joined #openstack-dev | 14:24 | |
*** aelkikhia has joined #openstack-dev | 14:24 | |
*** marun has quit IRC | 14:25 | |
*** Farooque has quit IRC | 14:25 | |
*** woodspa has quit IRC | 14:26 | |
openstackgerrit | A change was merged to openstack/nova: xenapi: Improve cross-device linking error message. https://review.openstack.org/33746 | 14:26 |
*** boris-42 has joined #openstack-dev | 14:26 | |
openstackgerrit | A change was merged to openstack/nova: xenapi: Make BitTorrent url more flexible https://review.openstack.org/33747 | 14:26 |
*** woodspa has joined #openstack-dev | 14:26 | |
*** Farooque has joined #openstack-dev | 14:26 | |
*** FunnyLookinHat has joined #openstack-dev | 14:26 | |
openstackgerrit | A change was merged to openstack/quantum: Imported Translations from Transifex https://review.openstack.org/34727 | 14:26 |
_TheDodd_ | OpenStack rocks & so does the OpenStack community! | 14:26 |
*** eharney has joined #openstack-dev | 14:26 | |
*** eharney has quit IRC | 14:26 | |
*** eharney has joined #openstack-dev | 14:26 | |
*** marun has joined #openstack-dev | 14:27 | |
*** xga_ has joined #openstack-dev | 14:27 | |
*** xga has joined #openstack-dev | 14:27 | |
*** Farooque has quit IRC | 14:28 | |
*** rpodolyaka has left #openstack-dev | 14:29 | |
*** Farooque has joined #openstack-dev | 14:29 | |
*** zodiak has joined #openstack-dev | 14:29 | |
*** terryh has joined #openstack-dev | 14:32 | |
*** marun has quit IRC | 14:32 | |
*** abhishekkr_ has quit IRC | 14:33 | |
*** Farooque has quit IRC | 14:33 | |
*** nati_ueno has joined #openstack-dev | 14:33 | |
*** Farooque has joined #openstack-dev | 14:34 | |
*** jclift__ has joined #openstack-dev | 14:34 | |
*** Aarti has quit IRC | 14:35 | |
*** jclift_ has quit IRC | 14:35 | |
*** marun has joined #openstack-dev | 14:36 | |
*** nati_ueno has quit IRC | 14:38 | |
*** marun has quit IRC | 14:38 | |
*** ayoung has quit IRC | 14:38 | |
*** marun has joined #openstack-dev | 14:39 | |
*** radez_g0n3 is now known as radez | 14:40 | |
*** corXi has quit IRC | 14:41 | |
*** devvesa has quit IRC | 14:41 | |
*** otherwiseguy has joined #openstack-dev | 14:41 | |
*** michchap has joined #openstack-dev | 14:42 | |
*** martyntaylor1 has joined #openstack-dev | 14:42 | |
*** zhuadl has quit IRC | 14:43 | |
*** datsun180b has joined #openstack-dev | 14:45 | |
*** martyntaylor has quit IRC | 14:45 | |
*** mrodden1 has quit IRC | 14:45 | |
*** spzala has joined #openstack-dev | 14:46 | |
*** lbragstad has quit IRC | 14:48 | |
*** marun has quit IRC | 14:50 | |
jaypipes | dolphm: morning. got a moment? | 14:50 |
jaypipes | dolphm: I'm trying to following the unified logging and eventlet thread on the ML | 14:51 |
*** atiwari has joined #openstack-dev | 14:51 | |
jaypipes | dolphm: and was just curious about Keystone's move away from eventlet. | 14:51 |
jaypipes | dolphm: when was this decision reached and what was the thinking there? Just curious. | 14:51 |
*** marun has joined #openstack-dev | 14:51 | |
*** rcrit has quit IRC | 14:52 | |
Chocobo | Apsu: Turns out I wasn't even having a problem :P | 14:52 |
*** prekarat has quit IRC | 14:52 | |
Apsu | Chocobo: ... lolwat | 14:52 |
*** msmedved has quit IRC | 14:53 | |
*** lbragstad has joined #openstack-dev | 14:53 | |
*** michchap has quit IRC | 14:53 | |
*** MattOliver has quit IRC | 14:54 | |
Chocobo | Chocobo: Those openvswitch warnings are normal, the fail to schedule networking warning just indicated that the network already existed and all the instances were going to to one node because... I guess that is how the scheduler works (default) | 14:54 |
*** kenperkins has quit IRC | 14:55 | |
bknudson | jaypipes: ayoung is probably the best one to answer... I think it's so that it's easier to run Keystone in Apache httpd. | 14:55 |
*** rkukura has quit IRC | 14:55 | |
jaypipes | bknudson: gotcha. | 14:55 |
bknudson | supposedly that will allow Keystone to handle multiple requests at a time. | 14:56 |
*** portante has joined #openstack-dev | 14:56 | |
*** michchap has joined #openstack-dev | 14:56 | |
Chocobo | Any idea why the instance name increments by three? | 14:56 |
*** msmedved has joined #openstack-dev | 14:56 | |
*** rkukura has joined #openstack-dev | 14:57 | |
*** michchap_ has joined #openstack-dev | 14:57 | |
*** leizhang has joined #openstack-dev | 14:58 | |
*** michcha__ has joined #openstack-dev | 14:59 | |
*** n0ano has joined #openstack-dev | 14:59 | |
jaypipes | bknudson: lol. well I've been harping for a long time about having Keystone join the rest of the openstack projects and at least support the multiplexed worker model. Folks didn't seem to think it was worth it, and that people should just use a container in nginx or httpd to multiplex. | 14:59 |
Chocobo | Apsu: Those openvswitch warnings are normal, the fail to schedule networking warning just indicated that the network already existed and all the instances were going to to one node because... I guess that is how the scheduler works (default) | 15:00 |
*** michchap has quit IRC | 15:01 | |
dolphm | jaypipes: i tried to rebase that patch a few weeks ago... got stuck somewhere | 15:01 |
dolphm | jaypipes: also, o/ | 15:01 |
jaypipes | dolphm: ya, no worries... | 15:01 |
*** olaph has quit IRC | 15:01 | |
*** pabelanger_ has joined #openstack-dev | 15:01 | |
dolphm | jaypipes: we're not necessarily moving away from eventlet full stop, trying to support both eventlet and httpd deployments | 15:01 |
jaypipes | dolphm: I have an open task in our todo lists to get keystone multiplexed inside an apache container after one of our devs DDoS'd our keystone API service with only 30 concurrenty client connections. not good.... | 15:02 |
*** michchap_ has quit IRC | 15:02 | |
dolphm | jaypipes: +1 | 15:02 |
Apsu | Chocobo: The OVS warnings are odd. You mentioned earlier you think they're because the taps are created inside namespaces, but OVS can see namespaced interfaces -- otherwise it wouldn't be able to bridge interfaces from various namespaces, which is exactly how it works. | 15:02 |
*** bdpayne has joined #openstack-dev | 15:02 | |
bknudson | jaypipes: is it easy to do add regular multiplexing? | 15:02 |
*** olaph has joined #openstack-dev | 15:02 | |
jaypipes | dolphm: I don't mind the "do it in httpd" deployment option... it's just that it's different from all the other services other than horizon, so it just slipped through the proverbial cracks when writing our chef cookbooks. | 15:03 |
*** michchap has joined #openstack-dev | 15:03 | |
Apsu | Chocobo: As for the scheduling... not sure how what you're suggesting would make sense. Of course the network exists, you're attaching multiple VMs to the same quantum network. Whether it's on one node or multiple, it shouldn't be failing on the second VM. | 15:03 |
jaypipes | bknudson: you mean using python code like the other OpenStack services? or doing so inside httpd? | 15:03 |
*** michcha__ has quit IRC | 15:03 | |
*** mkollaro has quit IRC | 15:03 | |
*** pabelanger_ has quit IRC | 15:03 | |
*** pabelanger_ has joined #openstack-dev | 15:03 | |
bknudson | jaypipes: using the python code like the other services. | 15:03 |
*** pabelanger has quit IRC | 15:03 | |
*** pabelanger_ is now known as pabelanger | 15:03 | |
*** michchap_ has joined #openstack-dev | 15:04 | |
jaypipes | bknudson: yeah, it's pretty simple... but it would require keystone moving closer to oslo.wsgi, IIRC... | 15:04 |
*** pabelanger_ has joined #openstack-dev | 15:04 | |
*** neelashah has quit IRC | 15:04 | |
*** pabelanger has quit IRC | 15:04 | |
*** mrodden has joined #openstack-dev | 15:04 | |
*** pabelanger has joined #openstack-dev | 15:04 | |
*** Mandell has joined #openstack-dev | 15:05 | |
*** neelashah has joined #openstack-dev | 15:05 | |
Chocobo | Apsu: I am worried about the openvswitch warnings as well, but according to a response on the mailing lists it is "normal". Here is my post: https://lists.launchpad.net/openstack/msg24745.html | 15:05 |
*** pnavarro has quit IRC | 15:05 | |
Chocobo | Apsu: this is what he emailed me: http://pastie.org/8086374 | 15:06 |
*** pmathews has joined #openstack-dev | 15:06 | |
*** michcha__ has joined #openstack-dev | 15:06 | |
*** michchap has quit IRC | 15:07 | |
Chocobo | Apsu: My guess is "WARNING [quantum.db.agentschedulers_db] Fail scheduling network" should read "INFO [quantum.db.agentschedulers_db] network exists" | 15:08 |
*** michchap_ has quit IRC | 15:08 | |
dolphm | jaypipes: if both evenlet and httpd deployment options provided the same performance, which would you use? | 15:08 |
*** jculp_ has joined #openstack-dev | 15:09 | |
*** jculp_ has quit IRC | 15:09 | |
*** rcrit has joined #openstack-dev | 15:09 | |
*** andrewbogott_afk is now known as andrewbogott | 15:09 | |
Chocobo | Apsu: as for scheduling, it looks like compute_fill_first_cost_fn_weight might control how much "spread" there is in scheduling. After creating a bunch of VMs I finally got one to launch on a second node. | 15:10 |
jaypipes | dolphm: I would use the eventlet deployment option, simply because that is what the other services are deployed with. If our other services were all contained in httpd, we'd go that route... it's a consistency thing for us. | 15:10 |
dolphm | jaypipes: fair enough - just curious | 15:10 |
*** michcha__ has quit IRC | 15:11 | |
bknudson | jaypipes: do the other services support running in httpd? | 15:11 |
jaypipes | dolphm: now... if someone showed massive performance improvments when running in a wsgi container like httpd vs. the python spawning deployment, we'd definitely look to become consistent the other way around ;) | 15:11 |
Apsu | Chocobo: That's instance scheduling though. | 15:12 |
jaypipes | bknudson: yes, but it's not common and thus not tested much. | 15:12 |
*** Mandell has quit IRC | 15:13 | |
Chocobo | Apsu: yes, that is another problem I was having. it seemed like all VMs were going to a single host. The network scheduling is a different issue. I think the warning is just stating that the network exists, so it couldn't be created. much like I get this warning from cinder: "WARNING [cinder.volume.drivers.nfs] dedup:/big_pool/cinder-volumes is already mounted" Perhaps I am getting these because I have verbose =True? | 15:13 |
*** rickerc has joined #openstack-dev | 15:14 | |
*** sleepsonthefloor has quit IRC | 15:16 | |
Chocobo | oops! Sorry, I thought I was on #openstack (not -dev) | 15:16 |
*** zigo has quit IRC | 15:17 | |
*** zigo has joined #openstack-dev | 15:17 | |
*** anfrolov has joined #openstack-dev | 15:18 | |
*** iartarisi has quit IRC | 15:19 | |
*** Farooque has quit IRC | 15:20 | |
*** Farooque has joined #openstack-dev | 15:20 | |
*** hugokuo has left #openstack-dev | 15:22 | |
*** martyntaylor has joined #openstack-dev | 15:22 | |
*** torandu has quit IRC | 15:22 | |
markmc | dstufft, hey, there ? | 15:23 |
*** mkollaro has joined #openstack-dev | 15:23 | |
markmc | dstufft, got something which looks like a pip bug | 15:23 |
dstufft | markmc: sup | 15:23 |
*** torandu has joined #openstack-dev | 15:23 | |
markmc | dstufft, https://bugs.launchpad.net/oslo/+bug/1194807 | 15:23 |
markmc | dstufft, see the commands in the last comment | 15:23 |
*** torandu has quit IRC | 15:24 | |
* markmc adds some version numbers and stuff | 15:24 | |
jd__ | markmc: when is the next Oslo meeting? | 15:24 |
*** torandu has joined #openstack-dev | 15:24 | |
*** martyntaylor1 has quit IRC | 15:24 | |
dstufft | hum | 15:25 |
*** Farooque has quit IRC | 15:25 | |
markmc | dstufft, ok, added all my old version numbers | 15:25 |
*** Farooque has joined #openstack-dev | 15:26 | |
*** sthaha has quit IRC | 15:26 | |
dstufft | markmc: most likely unrelated, but btw 1.2.1 is vulnerable to arbitrary code execution via MITM | 15:26 |
dstufft | pip 1.2.1 that is | 15:26 |
markmc | jd__, we schedule them on demand: https://wiki.openstack.org/wiki/Meetings/Oslo#Agenda_for_Next_Meeting | 15:27 |
markmc | dstufft, a newer virtualenv would install a newer pip? | 15:27 |
jd__ | markmc: I missed that point, thanks | 15:27 |
markmc | jd__, np | 15:27 |
dstufft | markmc: yea a venv release bundles whatever the newest pip is at the time | 15:27 |
*** michchap has joined #openstack-dev | 15:27 | |
markmc | dstufft, ok, thanks | 15:27 |
dstufft | markmc: pip 1.3 was the first release to use and verify HTTPS from PyPI | 15:27 |
markmc | dstufft, cool, thanks | 15:28 |
dstufft | I'm looking at your actual problem though | 15:28 |
dstufft | Just thought i'd mention :) | 15:28 |
markmc | dstufft, I'm on a lamely old version of fedora | 15:28 |
markmc | dstufft, good to know | 15:28 |
*** galstrom_zzz is now known as galstrom | 15:28 | |
*** michchap_ has joined #openstack-dev | 15:29 | |
*** ayoung has joined #openstack-dev | 15:30 | |
*** michcha__ has joined #openstack-dev | 15:30 | |
dstufft | markmc: interesting in that those commands work for me | 15:31 |
dstufft | markmc: oslo is a namespace package? | 15:31 |
markmc | dstufft, yar | 15:31 |
*** neelashah has quit IRC | 15:32 | |
*** michchap has quit IRC | 15:32 | |
markmc | dstufft, you tried "python -c 'from oslo.config.cfg import DeprecatedOpt'" ? | 15:32 |
*** jasdeepH has joined #openstack-dev | 15:32 | |
markmc | dstufft, DeprecatedOpt is a class which only exists in 1.2 | 15:33 |
markmc | dstufft, I tried upgrade pip to 1.3 (pip install --upgrade pip) and got the same behaviour | 15:33 |
*** READ10 has quit IRC | 15:33 | |
*** radez is now known as radez_g0n3 | 15:33 | |
dstufft | markmc: yea | 15:33 |
*** michchap_ has quit IRC | 15:33 | |
markmc | dstufft, odder and odder, this gets | 15:33 |
*** lbragstad has quit IRC | 15:33 | |
*** michchap has joined #openstack-dev | 15:34 | |
dstufft | https://gist.github.com/dstufft/d96d5f198841b017844d | 15:34 |
*** mtreinish has quit IRC | 15:34 | |
markmc | dstufft, your pip install just has the oslo.config-master URL | 15:34 |
*** michcha__ has quit IRC | 15:34 | |
markmc | dstufft, mine has python-keystoneclient too | 15:35 |
*** haleyb has joined #openstack-dev | 15:35 | |
markmc | dstufft, which pulls in oslo.config 1.1.1 as a transitive dependency | 15:35 |
*** michchap_ has joined #openstack-dev | 15:35 | |
dstufft | oh oops | 15:35 |
dstufft | I missed that part | 15:35 |
markmc | cool | 15:35 |
dstufft | sec | 15:35 |
*** rcleere has joined #openstack-dev | 15:36 | |
*** zaitcev has joined #openstack-dev | 15:36 | |
*** michcha__ has joined #openstack-dev | 15:36 | |
*** danwent has joined #openstack-dev | 15:37 | |
_TheDodd_ | Is anyone familiar with common reasons that `tox -e cover` might fail? | 15:37 |
*** michchap has quit IRC | 15:38 | |
_TheDodd_ | I'm getting a key error for 'VIRTUAL_ENV', but that's it | 15:38 |
*** olaph has quit IRC | 15:38 | |
dstufft | markmc: so | 15:38 |
dstufft | here's something interesting | 15:38 |
dstufft | successfully installed oslo.config-1.2.0.a34.g08203f6 python-keystoneclient six d2to1 pbr iso8601 prettytable requests simplejson oslo.config setuptools-git | 15:38 |
ayoung | dolphm, the whole "Driver has a different interface than the Manager" thing is really starting to mess me up. Would you mind if I took it over from you? | 15:38 |
dolphm | ayoung: https://review.openstack.org/#/c/34752/ | 15:39 |
*** aelkikhia has quit IRC | 15:39 | |
ayoung | dolphm, Rock on! | 15:39 |
clarkb | _TheDodd_: is that for keystone? I think I broke it | 15:39 |
clarkb | thought I pusehd a fix but must've failed | 15:39 |
_TheDodd_ | Yes, it is for keystone. | 15:39 |
_TheDodd_ | clarkb, Yes, it is for keystone. | 15:40 |
dolphm | bknudson: ayoung and i would really like to see this go in :D https://review.openstack.org/#/c/34752/ | 15:40 |
*** carl_baldwin has joined #openstack-dev | 15:40 | |
*** Alexei_987 has quit IRC | 15:40 | |
*** michchap_ has quit IRC | 15:40 | |
bknudson | dolphm: will take a look. sounds like it will clean things up a lot | 15:40 |
clarkb | _TheDodd_: in your tox.ini add VIRTUAL_ENV={envdir} to the keystone cover setenv section | 15:40 |
clarkb | _TheDodd_: and see if that fixes it | 15:40 |
markmc | dstufft, right :) | 15:40 |
*** michcha__ has quit IRC | 15:40 | |
*** reidrac has quit IRC | 15:40 | |
*** olaph has joined #openstack-dev | 15:41 | |
bknudson | I'm tired of telling people to name their context parameter because I can't figure out what a bare "None" is being used for. | 15:41 |
dstufft | markmc: pip install http://tarballs.openstack.org/oslo.config/oslo.config-master.tar.gz#egg=oslo.config python-keystoneclient | 15:41 |
dstufft | that works for me | 15:41 |
clarkb | I thought I pushed that fix, but apparently I didn't | 15:41 |
clarkb | I fail | 15:41 |
markmc | dstufft, it seems not realize that the thing it installed from the URL satisfies the 'oslo.config>=1.1.0' requirement | 15:41 |
markmc | dstufft, wow | 15:41 |
*** alexpilotti has joined #openstack-dev | 15:41 | |
_TheDodd_ | clarkb, thanks! I will make the modification and inform you of the results. | 15:41 |
dstufft | markmc: I can't remember off the top of my head if version is supposed to be allowed in an #egg= or not, if it is then seems like there's a bug where it's confusing the version with the name | 15:42 |
*** boris-42 has quit IRC | 15:43 | |
markmc | dstufft, confirmed that works | 15:43 |
markmc | dstufft, it is supposed to be allowed, there's a whole bunch of code in pip around it | 15:43 |
markmc | dstufft, but I'm vague on the details now | 15:43 |
*** saschpe has quit IRC | 15:43 | |
dstufft | markmc: can you open a bug on github.com/pypa/pip? | 15:44 |
markmc | dstufft, will do, thanks | 15:44 |
*** boris-42 has joined #openstack-dev | 15:44 | |
*** boris-42 has quit IRC | 15:45 | |
markmc | dstufft, ah, some details in https://review.openstack.org/#/c/30938/1/pbr/packaging.py | 15:45 |
markmc | dstufft, but looking at that might start a whole other conversation :) | 15:45 |
*** mtreinish has joined #openstack-dev | 15:46 | |
*** dolphm has quit IRC | 15:46 | |
*** SergeyLukjanov has quit IRC | 15:47 | |
dstufft | markmc: I think by now my ire towards that part of pbr is well established ;) | 15:47 |
dstufft | Now to sort out these 502's :[ | 15:47 |
*** dmarkey has joined #openstack-dev | 15:48 | |
*** dmarkey_ has quit IRC | 15:48 | |
*** kpavel has quit IRC | 15:48 | |
*** jasper22_ has joined #openstack-dev | 15:48 | |
*** kpavel has joined #openstack-dev | 15:48 | |
*** odyssey4me has quit IRC | 15:48 | |
*** ameade has quit IRC | 15:48 | |
*** mrodden has quit IRC | 15:49 | |
*** westmaas has quit IRC | 15:49 | |
*** bogdando has quit IRC | 15:49 | |
_TheDodd_ | clarkb, I just finished running `tox -ecover` with said change to tox.ini, and we're golden! | 15:49 |
*** jculp has quit IRC | 15:50 | |
*** JonnyNomad has quit IRC | 15:50 | |
*** jculp has joined #openstack-dev | 15:50 | |
openstackgerrit | A change was merged to openstack-dev/devstack: Remove creation of Domain entries in LDAP https://review.openstack.org/34566 | 15:50 |
*** jasdeepH has quit IRC | 15:50 | |
_TheDodd_ | clarkb, I'll go ahead and file a bug report on the issue. | 15:50 |
*** ameade has joined #openstack-dev | 15:50 | |
*** markmcclain has quit IRC | 15:50 | |
*** JonnyNomad has joined #openstack-dev | 15:50 | |
*** mrodden has joined #openstack-dev | 15:51 | |
*** alexpilotti has quit IRC | 15:51 | |
*** westmaas has joined #openstack-dev | 15:51 | |
*** westmaas has quit IRC | 15:51 | |
*** noslzzp has joined #openstack-dev | 15:51 | |
*** _jasper22_ has quit IRC | 15:52 | |
*** westmaas has joined #openstack-dev | 15:52 | |
*** jasper22_ has quit IRC | 15:52 | |
*** westmaas has joined #openstack-dev | 15:54 | |
*** Farooque has quit IRC | 15:54 | |
*** westmaas has quit IRC | 15:54 | |
*** jasdeepH has joined #openstack-dev | 15:54 | |
*** westmaas has joined #openstack-dev | 15:54 | |
*** Farooque has joined #openstack-dev | 15:54 | |
*** westmaas has quit IRC | 15:54 | |
*** jgallard has quit IRC | 15:54 | |
*** westmaas has joined #openstack-dev | 15:55 | |
*** westmaas has quit IRC | 15:55 | |
*** aelkikhia has joined #openstack-dev | 15:55 | |
*** aelkikhia has left #openstack-dev | 15:55 | |
*** colinmcnamara has joined #openstack-dev | 15:56 | |
markmc | dstufft, thanks again for looking | 15:56 |
*** westmaas has joined #openstack-dev | 15:57 | |
*** pcm___ has quit IRC | 15:58 | |
*** westmaas has joined #openstack-dev | 15:59 | |
ayoung | bknudson, if you get a chance, can you expedite https://review.openstack.org/#/c/34752/ as it touches a lot of code, and it is a long needed cleanup? | 16:00 |
*** dkranz has quit IRC | 16:01 | |
*** westmaas has joined #openstack-dev | 16:01 | |
*** westmaas has joined #openstack-dev | 16:01 | |
*** westmaas has quit IRC | 16:01 | |
*** westmaas has joined #openstack-dev | 16:02 | |
*** westmaas has quit IRC | 16:02 | |
*** ffio has joined #openstack-dev | 16:02 | |
*** jimfehlig has joined #openstack-dev | 16:03 | |
*** jimfehlig has left #openstack-dev | 16:03 | |
*** neelashah has joined #openstack-dev | 16:03 | |
*** jasdeepH has quit IRC | 16:03 | |
*** mrodden1 has joined #openstack-dev | 16:03 | |
*** bogdando has joined #openstack-dev | 16:04 | |
*** lbragstad has joined #openstack-dev | 16:04 | |
*** sleepsonthefloor has joined #openstack-dev | 16:04 | |
*** westmaas has joined #openstack-dev | 16:05 | |
*** westmaas has quit IRC | 16:05 | |
*** mrodden has quit IRC | 16:05 | |
*** westmaas has joined #openstack-dev | 16:05 | |
*** westmaas has quit IRC | 16:05 | |
*** westmaas has joined #openstack-dev | 16:06 | |
*** kpavel has quit IRC | 16:07 | |
*** READ10 has joined #openstack-dev | 16:07 | |
*** westmaas has joined #openstack-dev | 16:07 | |
*** westmaas has quit IRC | 16:07 | |
*** mmagr has quit IRC | 16:07 | |
*** westmaas has joined #openstack-dev | 16:07 | |
*** westmaas has quit IRC | 16:07 | |
*** westmaas has joined #openstack-dev | 16:08 | |
*** westmaas has quit IRC | 16:08 | |
*** michchap has joined #openstack-dev | 16:08 | |
bknudson | ayoung: https://review.openstack.org/#/c/34752/ generally looks good... maybe we'll come to regret it but there's got to be a better way to make the context available. | 16:08 |
openstackgerrit | A change was merged to openstack/cinder: Save some more image attributes to volume_glance_metadata. https://review.openstack.org/34705 | 16:08 |
*** vsergeyev has quit IRC | 16:08 | |
*** westmaas has joined #openstack-dev | 16:09 | |
*** zul has quit IRC | 16:09 | |
ayoung | bknudson, agreed, and we haven't used it thus far | 16:09 |
*** westmaas has joined #openstack-dev | 16:10 | |
*** westmaas has quit IRC | 16:10 | |
*** FunnyLookinHat has quit IRC | 16:10 | |
bknudson | does python have thread-local variables? | 16:11 |
*** westmaas has joined #openstack-dev | 16:11 | |
*** westmaas has quit IRC | 16:11 | |
*** rkukura has quit IRC | 16:11 | |
ayoung | bknudson, You, aside from the eventlet ones? | 16:11 |
ayoung | bknudson, http://docs.python.org/2/library/threading.html#threading.local | 16:12 |
openstackgerrit | A change was merged to openstack/nova: Sync to_primitive() IPAddress support from Oslo https://review.openstack.org/34277 | 16:12 |
bknudson | ayoung: does that work with the greenthreads used in keystone? | 16:12 |
*** FunnyLookinHat has joined #openstack-dev | 16:12 | |
*** rkukura has joined #openstack-dev | 16:12 | |
*** SergeyLukjanov has joined #openstack-dev | 16:13 | |
ayoung | bknudson, nope | 16:13 |
ayoung | bknudson, what are you trying to do? | 16:13 |
danpb | ayoung: but greenthreads module monkeypatches the whole of 'threading' to install versions of the apis/objects which work with greenthreads | 16:14 |
bknudson | ayoung: make the context available. | 16:14 |
danpb | ayoung: so i would have thought that included the threading.local class | 16:14 |
ayoung | bknudson, for HTTPD, we are probably going to run in prefork mode, so we don't even need thread local. Can be a global | 16:14 |
bknudson | ayoung: in case somebody asks why their custom backend doesn't work anymore because they were using the context. | 16:14 |
*** READ10 has quit IRC | 16:14 | |
*** colinmcnamara has quit IRC | 16:14 | |
*** westmaas has joined #openstack-dev | 16:15 | |
ayoung | bknudson, If you look at the -2ed notifications review, you can see that they are using greenthreads local | 16:15 |
*** westmaas has quit IRC | 16:15 | |
*** redondos has joined #openstack-dev | 16:15 | |
*** mtreinish has quit IRC | 16:15 | |
*** westmaas has joined #openstack-dev | 16:15 | |
openstackgerrit | A change was merged to openstack/nova: Port flavor_access extension to v3 API Part 2 https://review.openstack.org/34568 | 16:15 |
ayoung | danpb, I suspect you are right, just that greenthreads has its own way of doing things. SO, bknudson I think you are right: IF we decide we need the context, we can pass it in a thread local | 16:15 |
*** dkranz has joined #openstack-dev | 16:17 | |
*** dolphm has joined #openstack-dev | 16:19 | |
*** boris-42 has joined #openstack-dev | 16:20 | |
*** michchap has quit IRC | 16:20 | |
*** yaguang has joined #openstack-dev | 16:21 | |
*** egallen has quit IRC | 16:21 | |
*** martyntaylor has quit IRC | 16:22 | |
*** yaguang has quit IRC | 16:23 | |
*** leizhang has quit IRC | 16:23 | |
*** Farooque has quit IRC | 16:24 | |
*** waa has joined #openstack-dev | 16:25 | |
*** kaushikc has joined #openstack-dev | 16:26 | |
*** Farooque has joined #openstack-dev | 16:27 | |
*** pschaef has quit IRC | 16:28 | |
*** jpich has quit IRC | 16:28 | |
openstackgerrit | A change was merged to openstack/nova: Log xml in libvirt _create_domain failures https://review.openstack.org/33183 | 16:29 |
*** Farooque has quit IRC | 16:30 | |
*** Farooque has joined #openstack-dev | 16:31 | |
*** francois_eleouet has quit IRC | 16:31 | |
dolphm | bknudson: fixed everything except the extraneous style change in https://review.openstack.org/#/c/34752/ | 16:32 |
dolphm | ayoung: ^ | 16:32 |
dolphm | bknudson: on the style change, the paren was on the wrong line, and i fixed a few of those in the same patch (the others were on relevant manager calls) | 16:33 |
*** gyee has joined #openstack-dev | 16:33 | |
*** xqueralt is now known as xqueralt-afk | 16:33 | |
*** boris-42 has quit IRC | 16:33 | |
*** BobBall has quit IRC | 16:34 | |
*** kaushikc has quit IRC | 16:34 | |
*** Farooque has quit IRC | 16:35 | |
*** Farooque has joined #openstack-dev | 16:36 | |
*** xga_ has quit IRC | 16:37 | |
*** xga has quit IRC | 16:37 | |
*** aelkikhia has joined #openstack-dev | 16:38 | |
*** BobBall has joined #openstack-dev | 16:39 | |
*** waa has quit IRC | 16:39 | |
*** Farooque has quit IRC | 16:40 | |
*** mtreinish has joined #openstack-dev | 16:40 | |
*** Farooque has joined #openstack-dev | 16:41 | |
*** feleouet has joined #openstack-dev | 16:41 | |
*** sarob has joined #openstack-dev | 16:42 | |
*** Farooque has quit IRC | 16:43 | |
arosen | mordred: ping | 16:43 |
*** Farooque has joined #openstack-dev | 16:43 | |
*** jyhc has joined #openstack-dev | 16:44 | |
*** dkranz has quit IRC | 16:44 | |
*** jyhc has quit IRC | 16:44 | |
*** feleouet has quit IRC | 16:44 | |
*** garyk has joined #openstack-dev | 16:45 | |
*** radez_g0n3 is now known as radez | 16:45 | |
*** michchap has joined #openstack-dev | 16:47 | |
*** prekarat has joined #openstack-dev | 16:47 | |
*** garyTh has joined #openstack-dev | 16:47 | |
*** zul has joined #openstack-dev | 16:48 | |
*** dolphm has quit IRC | 16:51 | |
*** Farooque has quit IRC | 16:54 | |
*** terry7 has joined #openstack-dev | 16:55 | |
*** dkranz has joined #openstack-dev | 16:57 | |
*** michchap has quit IRC | 16:58 | |
openstackgerrit | A change was merged to openstack/quantum: Use 0.0.0.0/0 host route as router option https://review.openstack.org/34589 | 16:59 |
bknudson | dolphm: oops, I approved it already | 16:59 |
bknudson | but ayoung had already +2. | 17:00 |
*** jdennis has quit IRC | 17:00 | |
*** anniec has joined #openstack-dev | 17:00 | |
*** kirankv has joined #openstack-dev | 17:00 | |
*** mlavalle has joined #openstack-dev | 17:00 | |
*** rnirmal has quit IRC | 17:03 | |
*** sdake has quit IRC | 17:03 | |
*** sdake has joined #openstack-dev | 17:04 | |
*** jasdeepH has joined #openstack-dev | 17:04 | |
*** SumitNaiksatam has left #openstack-dev | 17:06 | |
*** jbresnah has joined #openstack-dev | 17:07 | |
*** athomas has quit IRC | 17:09 | |
*** Mandell has joined #openstack-dev | 17:09 | |
*** hartsocks has joined #openstack-dev | 17:14 | |
*** Farooque has joined #openstack-dev | 17:14 | |
*** Farooque has left #openstack-dev | 17:16 | |
*** danpb has quit IRC | 17:17 | |
*** Ryan_Lane has joined #openstack-dev | 17:18 | |
*** mtreinish has quit IRC | 17:18 | |
stevemar | ayoung: ping | 17:20 |
*** waa has joined #openstack-dev | 17:21 | |
*** eglynn has quit IRC | 17:22 | |
*** zul has quit IRC | 17:22 | |
*** akshayms has quit IRC | 17:23 | |
*** prekarat has quit IRC | 17:24 | |
*** derekh has quit IRC | 17:25 | |
*** michchap has joined #openstack-dev | 17:25 | |
*** mtreinish has joined #openstack-dev | 17:26 | |
*** freedomhui has joined #openstack-dev | 17:27 | |
ayoung | stevemar, here | 17:27 |
*** prekarat has joined #openstack-dev | 17:27 | |
*** zul has joined #openstack-dev | 17:28 | |
kbrierly | Is there anywhere in openstack that would show who deleted an instance? | 17:30 |
kbrierly | have an issue of my instance is gone and i did not delete it | 17:32 |
*** radez is now known as radez_g0n3 | 17:32 | |
*** mtreinish has quit IRC | 17:33 | |
*** pcm___ has joined #openstack-dev | 17:33 | |
*** olaph has quit IRC | 17:33 | |
*** mrodden1 has quit IRC | 17:33 | |
*** mrodden has joined #openstack-dev | 17:34 | |
*** olaph has joined #openstack-dev | 17:35 | |
*** nati_ueno has joined #openstack-dev | 17:35 | |
*** armax has joined #openstack-dev | 17:36 | |
stevemar | ayoung: got time to talk about: https://review.openstack.org/#/c/29130/ today? | 17:36 |
*** lucasagomes has quit IRC | 17:37 | |
*** michchap has quit IRC | 17:37 | |
*** Mandell has quit IRC | 17:38 | |
*** aelkikhia has quit IRC | 17:39 | |
*** aelkikhia has joined #openstack-dev | 17:40 | |
*** pabelanger has quit IRC | 17:40 | |
*** morazi has quit IRC | 17:41 | |
*** epim has joined #openstack-dev | 17:43 | |
*** dolphm has joined #openstack-dev | 17:43 | |
openstackgerrit | A change was merged to openstack/nova: Sync db.models.Quota* with migrations. https://review.openstack.org/33605 | 17:45 |
*** Mandell has joined #openstack-dev | 17:49 | |
*** marun has quit IRC | 17:53 | |
*** marun has joined #openstack-dev | 17:54 | |
*** psedlak has quit IRC | 17:54 | |
*** morazi has joined #openstack-dev | 17:55 | |
*** JordanP has quit IRC | 17:55 | |
openstackgerrit | A change was merged to openstack/cinder: Fix check_for_setup_error for sheepdog driver https://review.openstack.org/34689 | 17:56 |
*** dolphm has quit IRC | 17:56 | |
*** johnthetubaguy has quit IRC | 17:57 | |
*** timello has joined #openstack-dev | 17:58 | |
*** timello_ has quit IRC | 18:00 | |
*** noslzzp has quit IRC | 18:01 | |
russellb | sandywalsh: I was just looking at https://blueprints.launchpad.net/nova/+spec/libvirt-exists-support and I can't find where the code for this is xen specific | 18:01 |
sandywalsh | russellb, <looking> | 18:01 |
*** jjmb has quit IRC | 18:01 | |
*** jdurgin1 has joined #openstack-dev | 18:02 | |
russellb | sandywalsh: was going to knock it out since it sounded easy, but it looks generic to me | 18:02 |
*** radez_g0n3 is now known as radez | 18:03 | |
*** kirankv has quit IRC | 18:03 | |
russellb | sandywalsh: one potential bit of confusion is that the periodic task is off by default, so most deployments probably aren't getting it because of that | 18:03 |
sandywalsh | russellb, it's the nova usage code, it makes calls down to the virt layer to get the instance info from the hypervisor, but those virt-level calls don't exist in libvirt (confirming with dragondm ) | 18:03 |
*** michchap has joined #openstack-dev | 18:04 | |
russellb | hm, ok, will look harder | 18:04 |
sandywalsh | russellb, let me see if I can get you a line to look at ... sec | 18:04 |
*** danwent has quit IRC | 18:05 | |
*** derekh has joined #openstack-dev | 18:05 | |
russellb | sandywalsh: perhaps you meant the bandwidth usage notifications, instead of exists? | 18:08 |
sandywalsh | russellb, the usage audit starts here https://github.com/openstack/nova/blob/master/nova/compute/manager.py#L3752 | 18:09 |
*** pmathews has quit IRC | 18:09 | |
*** pmathews has joined #openstack-dev | 18:10 | |
russellb | sandywalsh: but no driver calls in there | 18:10 |
sandywalsh | russellb, yeah, I'm still looking, there's supposed to be a check that the instance really exists in the hypervisor (and that there are no instances in the HV that aren't in the nova db) ... still looking :) | 18:11 |
*** markmc has quit IRC | 18:11 | |
*** anteaya has quit IRC | 18:12 | |
*** noslzzp has joined #openstack-dev | 18:12 | |
*** derekh has quit IRC | 18:13 | |
*** koolhead17 has joined #openstack-dev | 18:14 | |
*** michchap has quit IRC | 18:15 | |
*** Mandell has quit IRC | 18:15 | |
*** tjones has joined #openstack-dev | 18:15 | |
sandywalsh | russellb, sorry, I can't see it immediately myself either. Let me confirm with dragondm and get back to you asap. | 18:16 |
sandywalsh | russellb, (there's a call somewhere there I'm missing I'm sure) | 18:16 |
russellb | sandywalsh: sure, all good. ping me whenever. :) | 18:16 |
*** yolanda has quit IRC | 18:19 | |
*** sarob has quit IRC | 18:20 | |
*** epopt37 has quit IRC | 18:22 | |
sandywalsh | russellb, I think this is it https://github.com/openstack/nova/blob/master/nova/compute/resource_tracker.py#L528 | 18:22 |
sandywalsh | russellb, get_per_instance_usage() | 18:22 |
sandywalsh | russellb, (and related calls in the resource tracker) | 18:23 |
*** garyk has quit IRC | 18:23 | |
*** terryh has quit IRC | 18:23 | |
*** mlavalle has quit IRC | 18:24 | |
sandywalsh | russellb, all this bubbles up to providing meaningful .exists notifications | 18:24 |
*** Mandell has joined #openstack-dev | 18:24 | |
*** marun has quit IRC | 18:24 | |
russellb | sandywalsh: k, i'll look into how this gets into the notifications | 18:24 |
russellb | thanks! | 18:25 |
*** torandu has quit IRC | 18:25 | |
*** torandu has joined #openstack-dev | 18:25 | |
sandywalsh | russellb, np. sorry for the confusion :) | 18:26 |
*** blues-man has quit IRC | 18:29 | |
lbragstad | dims: dhellmann by using threading.local with WeakValueDictionary from weakref, and only implement it if we are not running within the context of eventlet? Using detection like what dims suggested with eventlet.patcher.is_monkey_patched(thread) | 18:31 |
*** xqueralt-afk is now known as xqueralt | 18:32 | |
*** rnirmal has joined #openstack-dev | 18:33 | |
*** eharney has quit IRC | 18:37 | |
*** mlavalle has joined #openstack-dev | 18:39 | |
*** ifarkas has quit IRC | 18:40 | |
*** BobBall has quit IRC | 18:42 | |
*** michchap has joined #openstack-dev | 18:42 | |
*** epopt37 has joined #openstack-dev | 18:42 | |
*** BobBall has joined #openstack-dev | 18:44 | |
*** Work^Seony has joined #openstack-dev | 18:46 | |
*** aelkikhia has quit IRC | 18:46 | |
*** sarob has joined #openstack-dev | 18:49 | |
openstackgerrit | A change was merged to openstack/nova: Organize limits units and per-units constants https://review.openstack.org/32903 | 18:50 |
openstackgerrit | A change was merged to openstack/nova: Baremetal_deploy_helper error message formatting. https://review.openstack.org/33830 | 18:50 |
*** sushils has quit IRC | 18:50 | |
*** sarob has quit IRC | 18:50 | |
*** sarob has joined #openstack-dev | 18:51 | |
*** markwash has joined #openstack-dev | 18:52 | |
*** mtreinish has joined #openstack-dev | 18:53 | |
*** rwsu has quit IRC | 18:53 | |
lifeless | agorodnev: pong? | 18:54 |
*** gyee has quit IRC | 18:54 | |
*** michchap has quit IRC | 18:55 | |
*** sarob has quit IRC | 18:55 | |
openstackgerrit | A change was merged to openstack/nova: Fix metadata access in prep for instance objects https://review.openstack.org/33623 | 18:55 |
*** anniec has quit IRC | 18:56 | |
*** Work^Seony has left #openstack-dev | 18:56 | |
*** Work^Seony has joined #openstack-dev | 18:56 | |
openstackgerrit | A change was merged to openstack-dev/devstack: xenapi: Cleanup networking https://review.openstack.org/33424 | 18:56 |
*** rharwood has quit IRC | 18:56 | |
*** jjmb has joined #openstack-dev | 18:57 | |
*** novas0x2a|laptop has joined #openstack-dev | 18:57 | |
*** tjones has quit IRC | 18:58 | |
*** sarob has joined #openstack-dev | 18:58 | |
*** anfrolov has quit IRC | 18:58 | |
*** kbringard has quit IRC | 18:59 | |
*** anfrolov has joined #openstack-dev | 18:59 | |
*** aelkikhia has joined #openstack-dev | 18:59 | |
*** sarob has quit IRC | 18:59 | |
*** sarob has joined #openstack-dev | 19:00 | |
*** yolanda has joined #openstack-dev | 19:00 | |
*** sarob has quit IRC | 19:00 | |
*** sarob has joined #openstack-dev | 19:01 | |
openstackgerrit | A change was merged to openstack/python-novaclient: Remove Diablo compatibility options https://review.openstack.org/34595 | 19:02 |
*** kushal has quit IRC | 19:06 | |
*** anniec has joined #openstack-dev | 19:06 | |
*** eharney has joined #openstack-dev | 19:07 | |
*** eharney has quit IRC | 19:07 | |
*** eharney has joined #openstack-dev | 19:07 | |
*** rwsu has joined #openstack-dev | 19:07 | |
*** olaph has quit IRC | 19:11 | |
*** kbringard has joined #openstack-dev | 19:11 | |
*** olaph has joined #openstack-dev | 19:12 | |
jculp | hey markwash : got a minute to talk about https://review.openstack.org/#/c/33986/ | 19:13 |
*** jjmb has quit IRC | 19:13 | |
*** yolanda has quit IRC | 19:15 | |
*** tjones has joined #openstack-dev | 19:15 | |
*** vipul is now known as vipul|away | 19:18 | |
*** kpavel has joined #openstack-dev | 19:18 | |
*** tjones has quit IRC | 19:18 | |
*** cp16net is now known as cp16net|away | 19:19 | |
*** aelkikhia has left #openstack-dev | 19:20 | |
*** michchap has joined #openstack-dev | 19:20 | |
*** freedomhui has quit IRC | 19:24 | |
ayoung | stevemar, been pulled a few different diretions today. I'll take another look at /29130. Anything I should be aware of? | 19:24 |
ayoung | Ah, I see your comment | 19:25 |
stevemar | ayoung: np, i hear ya; just eager to get it in asap | 19:25 |
ayoung | stevemar, So look in the file token/controller.py or auth/controllers.py and checkout the logic for trusts. With oauth, I asssume that at the end of it, the user ends up with a standard Keystone token, right? | 19:26 |
*** cp16net|away is now known as cp16net | 19:27 | |
*** anteaya has joined #openstack-dev | 19:27 | |
*** networkstatic has joined #openstack-dev | 19:27 | |
stevemar | ayoung: main things I need help on: 1) what am i missing re: trusts, 2) your suggestion about putting the db code in a specific repo | 19:27 |
stevemar | ayoung: yep, standard keystone token | 19:27 |
*** sandywalsh has quit IRC | 19:27 | |
ayoung | stevemar, so if I set up oauth so you can get a token on my behalf, is that token impersonating me, or is there some distinction in the token saying "for ayoung, but issued to stevemar" ? | 19:28 |
*** jjmb1 has joined #openstack-dev | 19:28 | |
*** prekarat has quit IRC | 19:28 | |
stevemar | currently, impersonating. | 19:29 |
stevemar | ayoung ^ | 19:29 |
ayoung | stevemar, ok, so that is the first thing, we would actually like to get away from impersonation. It is only in trusts because it seems some swift use cases call for it | 19:29 |
stevemar | ayoung: is there a way to change (not sure if thats the right word) the token to say 'for ayoung, but issued by stevemar'? | 19:30 |
ayoung | stevemar, yep. So look in the trust code for 'impersonate' | 19:30 |
ayoung | I can point you at a unit test | 19:30 |
stevemar | ayoung: alright, let me check it out | 19:30 |
stevemar | ayoung, yes, please do | 19:30 |
openstackgerrit | A change was merged to openstack/nova: Remove trivial cases of unused variables (3) https://review.openstack.org/32924 | 19:31 |
ayoung | stevemar, https://github.com/openstack/keystone/blob/master/tests/test_v3_auth.py#L1122 | 19:31 |
ayoung | All of those unit tests need to pass with oauth tokens | 19:31 |
*** chuckieb has quit IRC | 19:31 | |
ayoung | stevemar, a "trust" is probably safe to parse as "consumer" for oauth | 19:32 |
*** michchap has quit IRC | 19:33 | |
*** jasdeepH has quit IRC | 19:33 | |
ayoung | stevemar, get through that, and we can discuss the database thing. If we end up reusing and modifying the trust table, it probably makes sense to have it in the core migrations, otherwise we probably should put it into an oauth specific migration repo, and then we can test it separately from the rest of the migrations. | 19:35 |
*** marun has joined #openstack-dev | 19:36 | |
*** sushils has joined #openstack-dev | 19:42 | |
*** devoid has joined #openstack-dev | 19:45 | |
*** lloydde has joined #openstack-dev | 19:46 | |
*** sushils has quit IRC | 19:46 | |
*** jjmb1 has quit IRC | 19:46 | |
*** sushils has joined #openstack-dev | 19:47 | |
*** markmcclain has joined #openstack-dev | 19:47 | |
*** sarob has quit IRC | 19:48 | |
*** rkukura has quit IRC | 19:49 | |
*** sarob has joined #openstack-dev | 19:49 | |
*** drewlander has quit IRC | 19:50 | |
*** spzala has quit IRC | 19:51 | |
*** sarob has quit IRC | 19:51 | |
*** terryh has joined #openstack-dev | 19:51 | |
*** sarob has joined #openstack-dev | 19:52 | |
*** zul has quit IRC | 19:52 | |
*** dperaza has quit IRC | 19:53 | |
*** athomas has joined #openstack-dev | 19:54 | |
*** marun has quit IRC | 19:54 | |
*** dperaza has joined #openstack-dev | 19:54 | |
*** vipul|away is now known as vipul | 19:55 | |
*** marun has joined #openstack-dev | 19:55 | |
*** marun has quit IRC | 19:57 | |
*** marun has joined #openstack-dev | 19:58 | |
*** afazekas has quit IRC | 19:58 | |
*** jjmb has joined #openstack-dev | 19:58 | |
*** pcm___ has quit IRC | 19:59 | |
*** michchap has joined #openstack-dev | 19:59 | |
*** sarob_ has joined #openstack-dev | 20:00 | |
*** armax has quit IRC | 20:00 | |
*** sarob_ has quit IRC | 20:02 | |
*** sarob_ has joined #openstack-dev | 20:03 | |
*** anniec has quit IRC | 20:04 | |
*** sarob has quit IRC | 20:04 | |
*** jyhc has joined #openstack-dev | 20:05 | |
*** jcoufal has joined #openstack-dev | 20:05 | |
*** michchap has quit IRC | 20:05 | |
*** rnirmal has quit IRC | 20:06 | |
*** colinmcnamara has joined #openstack-dev | 20:06 | |
*** sandywalsh has joined #openstack-dev | 20:06 | |
openstackgerrit | A change was merged to openstack/quantum: Remove reference to quantum cli in provider network extension https://review.openstack.org/34780 | 20:08 |
*** colinmcnamara has quit IRC | 20:09 | |
*** anniec has joined #openstack-dev | 20:11 | |
*** HenryG_ has quit IRC | 20:12 | |
*** jyhc has quit IRC | 20:12 | |
*** anteaya has quit IRC | 20:13 | |
*** ayoung has quit IRC | 20:13 | |
dragondm | sandywalsh: you rang? | 20:14 |
*** danwent has joined #openstack-dev | 20:15 | |
*** olaph has quit IRC | 20:15 | |
*** spzala has joined #openstack-dev | 20:15 | |
*** neelashah has quit IRC | 20:16 | |
*** olaph has joined #openstack-dev | 20:16 | |
*** jyhc has joined #openstack-dev | 20:17 | |
*** jyhc has quit IRC | 20:17 | |
*** jyhc has joined #openstack-dev | 20:17 | |
*** jyhc has quit IRC | 20:18 | |
*** jyhc has joined #openstack-dev | 20:19 | |
*** jyhc has quit IRC | 20:19 | |
*** sushils has quit IRC | 20:19 | |
*** neelashah has joined #openstack-dev | 20:20 | |
*** sushils has joined #openstack-dev | 20:25 | |
*** mtreinish has quit IRC | 20:31 | |
*** jruzicka has quit IRC | 20:31 | |
*** topol has quit IRC | 20:31 | |
*** michchap has joined #openstack-dev | 20:32 | |
*** sarob_ has quit IRC | 20:32 | |
*** SumitNaiksatam has joined #openstack-dev | 20:34 | |
*** jasdeepH has joined #openstack-dev | 20:34 | |
*** otherwiseguy has quit IRC | 20:37 | |
*** caaasey has joined #openstack-dev | 20:38 | |
*** eglynn has joined #openstack-dev | 20:40 | |
*** neelashah has quit IRC | 20:43 | |
*** Leto2 has joined #openstack-dev | 20:43 | |
*** ctracey is now known as ctracey|away | 20:43 | |
openstackgerrit | A change was merged to openstack/glance: Fix for unencrypted uris in scrubber queue files https://review.openstack.org/29405 | 20:43 |
*** michchap has quit IRC | 20:45 | |
openstackgerrit | A change was merged to openstack-dev/devstack: Create the /images directory used by the resize functionality. https://review.openstack.org/33257 | 20:45 |
openstackgerrit | A change was merged to openstack/swift: Make formpost work with multiple tempurl keys. https://review.openstack.org/34498 | 20:45 |
*** boris-42 has joined #openstack-dev | 20:47 | |
*** tmclaugh[work] has quit IRC | 20:48 | |
*** roampune has joined #openstack-dev | 20:49 | |
*** roampune has quit IRC | 20:49 | |
*** SergeyLukjanov has quit IRC | 20:49 | |
sandywalsh | dragondm, nothing, I think we got it | 20:49 |
sandywalsh | dragondm, I was trying to update russellb on the virt layer calls, that resource tracker uses, that are in xen but not libvirt | 20:50 |
*** eglynn has quit IRC | 20:50 | |
sandywalsh | dragondm, I couldn't remember where they were stemming from (I was looking in compute.manager, etc) | 20:51 |
russellb | yeah, i read the blueprint about the exists notification, looked at where it's emitted, and didn't see any driver calls | 20:51 |
sandywalsh | it builds up the list throughout the day and blasts them out at end-of-day | 20:52 |
russellb | yar | 20:52 |
dragondm | yah, nova/compute/manager.py: _poll_bandwidth_usage | 20:52 |
dragondm | virt function is self.driver.get_all_bw_counters for bw. | 20:53 |
dragondm | it's stubbed for other virts. They will gen the notifications if they are turned on, they just woun't report bw numbers. | 20:54 |
sandywalsh | dragondm, there are other virt layer calls in resource_tracker.py related to this as well, no? | 20:54 |
dragondm | resource_tracker ...? I don't think that's related to notifications. | 20:55 |
sandywalsh | I think they populate usage info | 20:55 |
dragondm | resource _tracker is just used by the scheduler, iirc. | 20:55 |
sandywalsh | heh, I have to look at it again now :) | 20:55 |
*** vartom has joined #openstack-dev | 20:56 | |
sandywalsh | dragondm, it actually has some very handy info in there (orphaned instances, etc) that /should/ be generating notifications though | 20:57 |
dragondm | anyway, that bp is not entirely accurate. nova will emit .exists events for other virts. They just won't have bw data. they will have info on the instance. | 20:57 |
*** rharwood has joined #openstack-dev | 20:58 | |
*** hartsocks has left #openstack-dev | 21:00 | |
*** cmark has joined #openstack-dev | 21:00 | |
*** stevebaker has joined #openstack-dev | 21:00 | |
*** jyhc has joined #openstack-dev | 21:01 | |
dragondm | And the get_all_bw_counters() method for Xen just looks at the if counters on the dom0. libvirt can probably do similar. | 21:01 |
*** noslzzp has quit IRC | 21:02 | |
*** cmark has quit IRC | 21:03 | |
*** sushils has quit IRC | 21:04 | |
*** boris-42 has quit IRC | 21:05 | |
*** boris-42 has joined #openstack-dev | 21:05 | |
*** sushils has joined #openstack-dev | 21:05 | |
*** dprince has quit IRC | 21:06 | |
*** otherwiseguy has joined #openstack-dev | 21:08 | |
*** markmcclain has quit IRC | 21:08 | |
*** markmcclain has joined #openstack-dev | 21:09 | |
*** BobBall has quit IRC | 21:09 | |
*** anteaya has joined #openstack-dev | 21:09 | |
*** dhellmann has quit IRC | 21:09 | |
*** johnthetubaguy has joined #openstack-dev | 21:11 | |
*** anteaya has quit IRC | 21:11 | |
*** michchap has joined #openstack-dev | 21:11 | |
*** rickerc has quit IRC | 21:12 | |
*** novas0x2a|laptop has quit IRC | 21:14 | |
*** athomas has quit IRC | 21:15 | |
*** novas0x2a|laptop has joined #openstack-dev | 21:15 | |
*** prad has quit IRC | 21:17 | |
markwash | jculp: hi | 21:18 |
*** timello has quit IRC | 21:18 | |
markwash | jculp: I'm a bit slammed today | 21:18 |
markwash | jculp: I think your test change works just right, it is just that sometimes I get a bad feeling about mox-based testing | 21:18 |
*** devoid has quit IRC | 21:18 | |
*** devoid has joined #openstack-dev | 21:19 | |
*** jaypipes has quit IRC | 21:19 | |
markwash | jculp: so I was wondering if you had a chance to try to write a more robust test. . but honestly I kinda think we should just merge what you have proposed, now, and revisit the testing at a later date | 21:19 |
*** timello has joined #openstack-dev | 21:19 | |
*** sungju has joined #openstack-dev | 21:20 | |
*** markwash has quit IRC | 21:20 | |
*** mkollaro has quit IRC | 21:21 | |
*** rkukura has joined #openstack-dev | 21:21 | |
*** olaph has quit IRC | 21:21 | |
*** jjmb has quit IRC | 21:23 | |
*** michchap has quit IRC | 21:23 | |
*** rharwood has quit IRC | 21:23 | |
*** dkranz has quit IRC | 21:25 | |
*** melwitt has joined #openstack-dev | 21:25 | |
*** gyee has joined #openstack-dev | 21:25 | |
*** devoid has quit IRC | 21:26 | |
*** devoid1 has joined #openstack-dev | 21:26 | |
*** neelashah has joined #openstack-dev | 21:28 | |
openstackgerrit | A change was merged to openstack-dev/devstack: Update LVM autoextend config for RHEL6 https://review.openstack.org/34640 | 21:28 |
openstackgerrit | A change was merged to openstack-dev/devstack: Add cli_dir to tempest config https://review.openstack.org/34303 | 21:28 |
*** melwitt1 has joined #openstack-dev | 21:30 | |
*** melwitt has quit IRC | 21:30 | |
*** beagles has quit IRC | 21:30 | |
*** caaasey has left #openstack-dev | 21:30 | |
*** dolphm has joined #openstack-dev | 21:33 | |
openstackgerrit | A change was merged to openstack-dev/devstack: Use lowercase section names in Neutron (aka Quantum) https://review.openstack.org/34177 | 21:33 |
*** koolhead17 has quit IRC | 21:34 | |
*** eglynn has joined #openstack-dev | 21:35 | |
*** jimfehlig has joined #openstack-dev | 21:38 | |
*** spzala has quit IRC | 21:40 | |
dolphm | bknudson: what happened on the gate failure? i'm confused as to whether you did something wrong or not | 21:42 |
dolphm | bknudson: (the gate job was going to fail anyway, because of a bad test on my part) | 21:43 |
bknudson | dolphm: I approved it before it passed the gate. | 21:43 |
dolphm | bknudson: i've never known that to cause any issues though | 21:43 |
bknudson | dolphm: I guess it causes a gate reset, whatever that is. | 21:44 |
dolphm | sdague: can you provide any insight into the "gate reset" you referred to? if bknudson did something wrong (approving before the initial gate jobs were completed) then i know i'm guilty of the same in the past | 21:45 |
dolphm | sdague: i would assume that killing the check jobs in favor of skipping to the verification gate would be allowed, and if anything, save on some CI resources | 21:46 |
*** Tross has joined #openstack-dev | 21:46 | |
*** jyhc has quit IRC | 21:47 | |
*** dhellmann has joined #openstack-dev | 21:48 | |
*** jyhc has joined #openstack-dev | 21:48 | |
*** waa has quit IRC | 21:48 | |
*** eglynn has quit IRC | 21:49 | |
*** michchap has joined #openstack-dev | 21:50 | |
*** sungju has quit IRC | 21:50 | |
*** jyhc has quit IRC | 21:52 | |
*** redbeard2 has quit IRC | 21:53 | |
*** xqueralt is now known as xqueralt-afk | 21:53 | |
*** _TheDodd_ has quit IRC | 21:54 | |
*** gmurphy has joined #openstack-dev | 21:56 | |
*** akshayms has joined #openstack-dev | 21:59 | |
*** burt has quit IRC | 21:59 | |
*** vartom has quit IRC | 22:00 | |
*** jtomasek has quit IRC | 22:01 | |
*** michchap has quit IRC | 22:02 | |
*** kbrierly has quit IRC | 22:03 | |
*** tjones has joined #openstack-dev | 22:07 | |
*** otherwiseguy has quit IRC | 22:08 | |
*** neelashah has quit IRC | 22:08 | |
*** johnthetubaguy has quit IRC | 22:08 | |
*** mkollaro has joined #openstack-dev | 22:09 | |
jog0 | dolphm: with regard to https://review.openstack.org/#/c/34650/ I have made it backwards compatable | 22:10 |
clarkb | dolphm: the issue is that we test changes that get approved after a failing over and over until the failing one gets out of the gate | 22:10 |
clarkb | dolphm it wont get kicked until it gets to the head of the queue | 22:11 |
*** melwitt1 has quit IRC | 22:11 | |
clarkb | effectively turning testing into O(n) instead of O(1) | 22:11 |
clarkb | tl;dr it slows everyone else down | 22:12 |
*** melwitt has joined #openstack-dev | 22:12 | |
dolphm | clarkb: hmm, good to know... is that a new issue / something that can be fixed in the long run? | 22:12 |
*** caaasey has joined #openstack-dev | 22:12 | |
*** caaasey has left #openstack-dev | 22:12 | |
clarkb | its not a new issue. it is inherent to testing serialized changes in parallel | 22:13 |
clarkb | we still worst case to being effectively serial | 22:13 |
dolphm | jog0: so, what about kvs is "fake" and how does the kvs token driver differ from every other kvs driver in keystone? why not actually improve the kvs driver with configurable limits, or to purge itself of expired tokens, etc? | 22:13 |
*** rkukura has quit IRC | 22:14 | |
*** lbragstad has quit IRC | 22:14 | |
*** jasondotstar has quit IRC | 22:14 | |
clarkb | we can try to make it handle somd issues better but one of legit fails is hard to understand until no other changes are ahead of it | 22:14 |
lifeless | someone called my name ? | 22:15 |
dolphm | clarkb: i assume you also can't enforce good behavior on our side? ignore/warn about approval votes prior to checks passing? | 22:15 |
jog0 | lifeless: see dolphm's question. I thought you can answer it best | 22:15 |
*** akshayms has quit IRC | 22:16 | |
*** dstufft has quit IRC | 22:16 | |
*** melwitt has quit IRC | 22:17 | |
*** portante has quit IRC | 22:17 | |
*** jayg is now known as jayg|g0n3 | 22:17 | |
lifeless | jog0: which one in particular ? | 22:17 |
lifeless | jog0: oh right kvs | 22:18 |
jog0 | lifeless: yup | 22:18 |
lifeless | dolphm: the in-python store isn't suitable for production use today. I don't think it's different from any other in-python stores in keystone TBH. | 22:18 |
*** dstufft has joined #openstack-dev | 22:18 | |
bknudson | dolphm: I think I answered your comment on https://review.openstack.org/#/c/30176/ if you could look again. | 22:18 |
*** jecarey_ has quit IRC | 22:18 | |
*** akshayms has joined #openstack-dev | 22:19 | |
lifeless | dolphm: they aren't clusterable - no HA; they aren't scalable to even modest load (a single rack overwhelmed the token kvs store which is why clint filed the bug about which should be the default. | 22:19 |
lifeless | dolphm: could you make them better? Yes. But why would you? When would we /want/ to tell folk 'run this new thing rather than memcache+SQL' ? | 22:19 |
dolphm | lifeless: where are we telling people to use the kvs driver? | 22:21 |
dolphm | lifeless: *any* kvs driver? | 22:21 |
*** jyhc has joined #openstack-dev | 22:21 | |
lifeless | dolphm: until a week or so ago it was *the default* | 22:21 |
lifeless | dolphm: but if we aren't telling people to use it, and we won't tell people to use it, why shouldn't we make it clear that they shouldn't use it via the name ? | 22:22 |
bknudson | why even have it if it's not good for anything? | 22:22 |
dolphm | lifeless: 'kvs' indicates what it is, changing it to 'fake' is less descriptive and doesn't actually solve your problem (if you have one?) | 22:23 |
*** marun has quit IRC | 22:24 | |
lifeless | bknudson: jog0 found it easier to rename than removed, because it's used in tests. | 22:24 |
*** kbringard has quit IRC | 22:24 | |
jog0 | bknudson: because it is useful for unit/integration testing (no external dependency) | 22:24 |
lifeless | dolphm: so your objection is that the name doesn't include any mention of the way it does it's storage? | 22:25 |
jog0 | bknudson: I tried to move it into the testing directory but that was non-trivial to do | 22:25 |
bknudson | I don't think it's useful for testing anything either. sqlite is better. | 22:25 |
lifeless | bknudson: +1 | 22:25 |
jog0 | (because of the tests being outside the keystone directory | 22:26 |
*** jcoufal has quit IRC | 22:26 | |
jog0 | bknudson: makes sense to me, thought this would be an easier approach to get accepted | 22:26 |
dolphm | lifeless: jog0: i'd rather not support the driver at all than obfuscate it | 22:26 |
bknudson | It's probably actually bad from a testing perspective since it would give a false sense of security. | 22:26 |
lifeless | dolphm: so sounds to me like jog0 should plug at this a bit longer and delete it | 22:27 |
dolphm | lifeless: if the kvs drivers were only touched by test_backend_kvs, then we could consider them deprecated in havana and delete them after that | 22:28 |
bknudson | also we waste development time updating it and also review time trying to figure out how this weird backend works. | 22:28 |
jog0 | dolphm: sounds good to me, what about the deprecate for one cycle policy though? | 22:28 |
bknudson | have it print out a log message when it's loaded says it's deprecated. | 22:28 |
dolphm | bknudson: +1 | 22:28 |
jog0 | bknudson: done | 22:28 |
*** michchap has joined #openstack-dev | 22:29 | |
jog0 | https://review.openstack.org/#/c/34650/3/keystone/token/backends/kvs.py | 22:29 |
*** dkranz has joined #openstack-dev | 22:29 | |
jog0 | I will undo the rename adn add in the warning and make sure the docstring is explicit | 22:29 |
*** Tross has quit IRC | 22:29 | |
lifeless | dolphm: on the name thing though, if you look at token/backends/kvs.py there is /not/ indication it isn't suitable for prod. So the issue we have is that users have no reason *not* to try KVS, unless they read the implementation and think hard about performance and HA. | 22:29 |
*** pabelanger_ has quit IRC | 22:29 | |
lifeless | dolphm: thats purely a quality thing, not whether TripleO is affected. | 22:29 |
dolphm | lifeless: it shouldn't be documented in end-user documentation | 22:29 |
*** pabelanger has joined #openstack-dev | 22:30 | |
lifeless | dolphm: there isn't even a docstring | 22:30 |
* SpamapS reads backscroll | 22:30 | |
SpamapS | seems to me the way forward is obvious | 22:30 |
SpamapS | switch tests to using sqlite in-memory | 22:30 |
SpamapS | deprecate kvs, remove in "I" | 22:30 |
lifeless | dolphm: from a pure selfish tripleo perspective we dont' need to do anything; what we want to do is help keystone be better though, by chasing the root cause of the issue. | 22:30 |
bknudson | tests already use sqlite in-memory. | 22:30 |
*** andrewbogott is now known as andrewbogott_afk | 22:30 | |
lifeless | bknudson: not all, or jog0 wouldn't have had issues, I presume? | 22:30 |
bknudson | we have tests that cover each backend. | 22:31 |
jog0 | bknudson: https://review.openstack.org/#/c/34650/3/tests/test_overrides.conf | 22:31 |
bknudson | the tests verify each backend works essentially the same. | 22:31 |
jog0 | someting about test_overrides | 22:31 |
*** Tross has joined #openstack-dev | 22:31 | |
jog0 | which defaulted to the kvs backend | 22:32 |
bknudson | there's usually a default config and then other subclass Tests override.... probably override the test_overrides to do other backends. | 22:33 |
dolphm | bknudson: yeah, not completely... we still use kvs in a bunch of places | 22:33 |
*** dkranz has quit IRC | 22:33 | |
lifeless | dolphm: btw I'm not saying kvs *should* be in end user docs.But it's in blog posts: http://www.sebastien-han.fr/blog/2012/12/12/cleanup-keystone-tokens/ | 22:33 |
jog0 | going forward, I will remove the fake driver rename. mark kvs as deprecated and for testing only. and when Icehouse comes around we kill it dead | 22:34 |
jog0 | (along with excise requirement from tests) | 22:34 |
*** otherwiseguy has joined #openstack-dev | 22:34 | |
lifeless | dolphm: so the basic change I'm proposing is that we make it hard for users to use kvs, because its not a production store - AIUI that is. | 22:34 |
lifeless | dolphm: however is best to achieve that, I'm cool with. | 22:34 |
jog0 | dolphm: bknudson: how does that sound? | 22:34 |
dolphm | jog0: that would be awesome | 22:34 |
dolphm | lifeless: +1 | 22:34 |
bknudson | jog0: sounds great! | 22:35 |
lifeless | cool. | 22:35 |
jog0 | oh and add a docimpact flag too | 22:35 |
*** crazed has quit IRC | 22:35 | |
jog0 | thankgs guys, that was much easier then I thought | 22:35 |
bknudson | was just going to say that if there's some docs that could be updated would be good. | 22:35 |
*** jyhc_ has joined #openstack-dev | 22:36 | |
dolphm | bknudson: hopefully there aren't! but it's worth a DocImpact to ensure we double check | 22:36 |
*** jyhc_ has quit IRC | 22:37 | |
*** dkranz has joined #openstack-dev | 22:37 | |
lifeless | jog0: various architecture docs. dev docs have it. Probably some pictures e.g. | 22:37 |
lifeless | page 5 of http://www.slideshare.net/aptira/aptira-presents-openstack-keystone-identity-service | 22:37 |
lifeless | has a pic from the mega openstack arch diagram that references it | 22:37 |
*** jyhc_ has joined #openstack-dev | 22:37 | |
*** anfrolov has quit IRC | 22:38 | |
*** jyhc has quit IRC | 22:39 | |
bknudson | jog0: Here's where we do SQL token tests: https://github.com/openstack/keystone/blob/master/tests/test_backend_sql.py#L245 ... | 22:40 |
bknudson | SqlTests setUp overrides overrides with SQL: https://github.com/openstack/keystone/blob/master/tests/test_backend_sql.py#L43 | 22:40 |
bknudson | convoluted. | 22:40 |
*** ffio has quit IRC | 22:40 | |
*** bdpayne has quit IRC | 22:40 | |
*** galstrom is now known as galstrom_zzz | 22:41 | |
*** michchap has quit IRC | 22:41 | |
*** melwitt has joined #openstack-dev | 22:41 | |
*** rcleere has quit IRC | 22:42 | |
*** luckylittle has joined #openstack-dev | 22:43 | |
*** FunnyLookinHat has quit IRC | 22:43 | |
*** boris-42 has quit IRC | 22:43 | |
*** boris-42 has joined #openstack-dev | 22:44 | |
*** redbeard2 has joined #openstack-dev | 22:45 | |
*** jimfehlig has quit IRC | 22:45 | |
dolphm | lifeless: i'd suggest changing every driver in test_overrides to use sql instead of kvs, and seeing what setUp()'s fail (because they need to db_sync) | 22:46 |
lifeless | jog0: ^ | 22:46 |
lifeless | dolphm: thanks | 22:46 |
*** jyhc has joined #openstack-dev | 22:46 | |
*** tjones has quit IRC | 22:47 | |
*** mlavalle has quit IRC | 22:47 | |
*** danwent has quit IRC | 22:48 | |
*** dolphm has quit IRC | 22:48 | |
bknudson | jog0: You might run into the problem fixed with this: https://review.openstack.org/#/c/29670/ ... so might want to try with that fix if you have a problem. | 22:48 |
openstackgerrit | A change was merged to openstack/cinder: Add Brick iSCSI attach/detach. https://review.openstack.org/32650 | 22:51 |
openstackgerrit | A change was merged to openstack/keystone: Do not raise NEW exceptions https://review.openstack.org/33614 | 22:51 |
*** otherwiseguy has quit IRC | 22:51 | |
*** mkollaro has quit IRC | 22:51 | |
*** jbresnah has quit IRC | 22:52 | |
*** dhellmann has quit IRC | 22:52 | |
*** danwent has joined #openstack-dev | 22:53 | |
*** jyhc has quit IRC | 22:53 | |
*** otherwiseguy has joined #openstack-dev | 22:54 | |
*** jjmb has joined #openstack-dev | 22:55 | |
*** dhellmann has joined #openstack-dev | 22:56 | |
*** bdpayne has joined #openstack-dev | 22:58 | |
*** statik has quit IRC | 22:59 | |
*** pmathews has quit IRC | 23:00 | |
*** jyhc has joined #openstack-dev | 23:01 | |
*** statik has joined #openstack-dev | 23:01 | |
*** krtaylor has quit IRC | 23:02 | |
*** boris-42 has quit IRC | 23:03 | |
openstackgerrit | A change was merged to openstack/nova: Fix a couple typos in the nova.exception module https://review.openstack.org/34583 | 23:04 |
openstackgerrit | A change was merged to openstack/nova: Remove broken config_drive image_href support. https://review.openstack.org/31314 | 23:04 |
*** haleyb has quit IRC | 23:07 | |
*** michchap has joined #openstack-dev | 23:07 | |
*** gyee has quit IRC | 23:08 | |
*** egallen has joined #openstack-dev | 23:09 | |
*** egallen has quit IRC | 23:10 | |
*** atiwari has quit IRC | 23:14 | |
*** jbresnah has joined #openstack-dev | 23:15 | |
*** stevemar has quit IRC | 23:15 | |
*** portante has joined #openstack-dev | 23:18 | |
*** michchap has quit IRC | 23:20 | |
*** luckylittle has quit IRC | 23:21 | |
*** zhuadl has joined #openstack-dev | 23:22 | |
*** gyee has joined #openstack-dev | 23:23 | |
*** mrodden has quit IRC | 23:26 | |
*** lloydde has quit IRC | 23:26 | |
*** sleepsonthefloor has quit IRC | 23:28 | |
*** dolphm has joined #openstack-dev | 23:29 | |
*** dolphm has quit IRC | 23:30 | |
*** devoid1 has quit IRC | 23:30 | |
*** freedomhui has joined #openstack-dev | 23:31 | |
*** bknudson has left #openstack-dev | 23:32 | |
*** dolphm has joined #openstack-dev | 23:32 | |
*** datsun180b has quit IRC | 23:34 | |
*** adjohn has joined #openstack-dev | 23:35 | |
*** kmartin has quit IRC | 23:36 | |
*** prad has joined #openstack-dev | 23:39 | |
*** adjohn has quit IRC | 23:40 | |
*** dolphm has quit IRC | 23:41 | |
*** lloydde has joined #openstack-dev | 23:42 | |
*** prad has quit IRC | 23:45 | |
*** fifieldt has joined #openstack-dev | 23:46 | |
*** michchap has joined #openstack-dev | 23:46 | |
*** jasondotstar has joined #openstack-dev | 23:46 | |
*** lloydde_ has joined #openstack-dev | 23:47 | |
*** lloydde has quit IRC | 23:47 | |
*** michchap has quit IRC | 23:48 | |
*** epim has quit IRC | 23:49 | |
*** michchap has joined #openstack-dev | 23:49 | |
*** krtaylor has joined #openstack-dev | 23:51 | |
*** epim has joined #openstack-dev | 23:55 | |
*** yaguang has joined #openstack-dev | 23:56 | |
*** dolphm has joined #openstack-dev | 23:58 | |
*** darjeeling has quit IRC | 23:58 | |
*** jyhc has quit IRC | 23:58 | |
openstackgerrit | A change was merged to openstack/nova: Fix resizes with attached file-based volumes https://review.openstack.org/32829 | 23:58 |
*** tzumainn has quit IRC | 23:59 | |
*** dolphm has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!