Friday, 2013-01-25

*** e1mer has quit IRC00:00
*** dosaboy has joined #openstack-dev00:00
*** mrodden has quit IRC00:01
openstackgerritA change was merged to openstack/nova: Increase maximum URI size for EC2 API to 16k  https://review.openstack.org/1984200:02
*** eharney has quit IRC00:03
*** dosaboy has quit IRC00:03
*** stevebaker has quit IRC00:05
*** mlavalle has left #openstack-dev00:07
*** brucer has joined #openstack-dev00:14
*** gugl has joined #openstack-dev00:15
guglhi all, does anyone of you install grizzly openstack sucessfully?00:15
*** lloydde has quit IRC00:17
*** bknudson has quit IRC00:19
mordredgugl: every day about 400 times in the CI system00:21
*** kbringard has joined #openstack-dev00:21
mordredbut, to be fair, that's a single machine install via devstack - but it _is_ a grizzly install :)00:22
*** e1mer has joined #openstack-dev00:22
*** roaet-away is now known as roaet00:22
*** kbringard has quit IRC00:24
clarkbmordred: 459 ish times over the last 24 hours00:24
clarkb(according to zuul so that number won't include the periodic jobs)00:24
openstackgerritA change was merged to openstack/cinder: Get updated vol status in volume.api.reserve.  https://review.openstack.org/2030100:25
*** utlemming has quit IRC00:29
*** blamar has joined #openstack-dev00:31
*** utlemming has joined #openstack-dev00:31
*** alunduil has joined #openstack-dev00:34
*** burris has joined #openstack-dev00:37
*** douardda has quit IRC00:37
*** vipul is now known as vipul|away00:39
*** lloydde has joined #openstack-dev00:43
*** yidclare has quit IRC00:43
*** lloydde has quit IRC00:44
matiuWhat would be a good error to raise to say, "your nova db is messed up"00:45
clarkbdevananda: ^00:45
matiuin this case if we find that a host has > 1 availability_zone in the DB ..00:45
*** epim has joined #openstack-dev00:45
*** esp1 has quit IRC00:46
matiulike NotFound, but to say, FoundTooMany ..00:47
devanandaah, so00:47
devanandamatiu: there is work being done to add proper Unique constraints to the db00:47
devanandamatiu: which would prevent that from happening, and would raise DUplicateKeyError if a second entry were attempted to be inserted00:48
devanandamatiu: the problem with raising an error after the fact is that the user shouldn't be told "the db was already messed up before your request, so that's why we didn't do what you asked"00:49
devanandait's also possible I misunderstood the question :)00:50
matiudevananda, yeah it's for the admin api, where the db returns aggregate metadata00:50
matiuwhich can have multiple values00:50
matiubut really a host should only have one availability zone00:51
matiuso I figured because it's the adminapi, they'll probably want to know00:51
matiucurrently it behaves differently in different places00:51
*** adalbas has quit IRC00:52
*** vkmc has quit IRC00:52
*** thingee is now known as thingee_zzz00:53
matiudevananda, any idea what's up with this comment ?00:53
matiu#TODO(bcwaldon): EOL this exception!00:54
matiuclass Duplicate(NovaException):00:54
matiu    pass00:54
devanandamatiu: what file?00:54
matiunova/openstack/exceptions.py00:54
matiunova/openstack/exception.py00:54
*** Ryan_Lane has quit IRC00:54
matiuit's ok I'll use git blame to trace it back ...00:55
devanandamatiu: I think the exception you want is DBDuplicateEntry00:56
*** Ryan_Lane has joined #openstack-dev00:56
*** vipul|away is now known as vipul00:56
devanandamatiu: EOL could mean "end of life", as in, "someone should remove this"00:56
*** esp has joined #openstack-dev00:57
openstackgerritA change was merged to openstack/nova: Support optional 4 arg for nova-dhcpbridge  https://review.openstack.org/2036300:57
matiuthanks devananda .. I'll use that :)00:57
devanandamatiu: these reviews might be of interest to you: https://review.openstack.org/#/q/status:merged+project:openstack/nova+branch:master+topic:bp/db-unique-keys,n,z00:58
*** stevebaker has joined #openstack-dev00:59
devanandamatiu: the actual unique constraints haven't been added yet, but all the ground work for them has landed. I think it's much better to enforce this at the DB level and prevent duplicate records, rather than check it at the db client level (ie, nova) and report errors after the fact (which will probably then require human intervention to fix)01:00
devanandajust my 2c :)01:00
*** salv-orlando has quit IRC01:00
matiudevananda, so that's unique constraints for normal DBs ?01:00
matiuor for like the aggregate host metadata table ..01:00
matiuI'm gussing for normal tables eh01:01
guglmordred: do you have steps for where to download and how to set up...I only have steps for folsom setup...01:02
devanandamatiu: yes. real unique indexes on tables. maybe i dont know what "aggregate host metadata" means?01:03
devanandamatiu: ahhh. it's a key-value table01:03
matiudevananda, there's like a table that just contains key - value pairs01:04
devanandamatiu: right. so enforcing uniqueness on that table isn't in the plans right now -- but it could be done, I think.01:04
matiuyeah, so I'm not 100% sure that might be the right err .. hmm..01:04
devanandayea, not the right error :(01:04
matiuI think for some of its entries it's supposed to allow multiple values01:05
matiubut not for this particular one.01:05
devanandaah01:05
devanandatricky01:05
matiuI might just create a new err01:05
devanandamatiu: when are you checking for duplicates? on every access, or just on writes?01:05
devanandaor something else01:05
*** otherwiseguy has quit IRC01:06
matiuwhen someone requests a list of services, or a single serviec01:06
*** sdake has quit IRC01:06
matiuat the moment one turns it into a , delim'd list01:07
*** halfss has joined #openstack-dev01:07
matiuand the other just takes the first val01:07
matiuI don't think either is the appropriate response ..01:07
matiuas there should only be one availability_zone for a host01:07
openstackgerritA change was merged to openstack/nova: Refactored run_command for better naming  https://review.openstack.org/2041601:08
matiuand if there's more in your DB, something's up, and you'll probably want to know about it01:08
*** vishy is now known as vishy_zz01:12
*** gugl has quit IRC01:12
devanandamatiu: so i'm just guessing, but raising an exception at that point might also not be the right thing to do01:14
devanandamatiu: for example, how could you know which one to delete if trying to list them just raises an error?01:14
matiuyeah, I was thinking to just raise a 404 .. at the api layer maybe ..01:14
matiuyeah, you'd have to check the DB manually01:15
openstackgerritA change was merged to openstack/nova: VMware Compute Driver Volume Management  https://review.openstack.org/1947901:15
matiuhmmm.01:15
matiuI suppose I could just make them both return a ',' delim'd list, but that would look confusing in the code01:15
boris-42Hi all01:15
matiulike one was supposed to have a multiple zones per host,,01:16
*** ladquin_brb has quit IRC01:17
boris-42matiu: I think that it is better to add UC to this table01:18
matiua01:18
*** Ruetobas has quit IRC01:18
matiuboris-42, yeah, it doesn't have a table as such01:18
matiuit comes from a aggregate_metadata table, which is a key value pair table01:19
boris-42And why do you can't add UC to (key, aggregate_id, delete) columns?01:20
*** flaper87 has quit IRC01:20
matiuI think other key values may need to have multiple columns01:20
matiufrom the way the code works, and returns any dup vals in a set01:20
matiubut for this particular key 'availability_zone' .. there should really be only one01:21
*** Ruetobas has joined #openstack-dev01:21
matiuI guess I could add the restraint at the writing port01:21
matiupart01:21
boris-42No i don't think so01:21
matiuand if I find dups when reading, just return the first one, or return a list01:22
boris-42As I have seen in code we are working with such tables as dict -> so keys are unique01:22
matiuthe sqlalchemy api01:23
matiureturns in the format: {'key', set(['val1'], ['val2])}01:23
*** TerryH has quit IRC01:23
matiueven if it only has one val, it returns a set with one element01:23
*** winston-d_ has joined #openstack-dev01:24
matiuso that suggests that generally it like to support multiple vals for a key (to me at least)01:24
matiuso, yeah, I'm thinking now to add the singular constraint in the nova/availability_zones.py01:25
matiumaybe at the writing stage01:25
openstackgerritA change was merged to openstack/glance: Update glance config files with log defaults  https://review.openstack.org/2014901:27
openstackgerritA change was merged to openstack/glance: Make v2 image tags test not load system policy  https://review.openstack.org/2013801:27
*** halfss has quit IRC01:28
*** Ruetobas has quit IRC01:29
*** Ruetobas has joined #openstack-dev01:30
*** halfss has joined #openstack-dev01:31
*** epim has quit IRC01:33
*** epim has joined #openstack-dev01:34
*** zbitter has joined #openstack-dev01:35
*** zaneb has quit IRC01:39
*** shang has joined #openstack-dev01:40
devanandamatiu: ++ check at write. this creates a small race condition, but it's better than nothing.01:45
matiuI'm just gonna add TODOs for it for now :)01:46
matiuand01:46
matiuand make it return a ',' delim'd list :)01:46
matiuso I can get my review in ..01:46
matiuthanks devananda and boris-42 though for the good advice :)01:47
boris-42matiu: np01:50
*** sandywalsh has quit IRC01:51
*** adjohn has quit IRC01:57
*** bencherian has quit IRC01:57
*** alexpilotti has quit IRC01:57
*** danwent has joined #openstack-dev02:01
*** stevebaker has quit IRC02:05
*** andrewbogott is now known as andrewbogott_afk02:06
*** ewindisch has quit IRC02:11
*** stevebaker has joined #openstack-dev02:15
*** novas0x2a|laptop has quit IRC02:18
*** Mandell has quit IRC02:23
*** zhuadl has joined #openstack-dev02:27
*** rkukura has joined #openstack-dev02:38
openstackgerritA change was merged to openstack/cinder: Update EMC SMI-S iSCSI Driver  https://review.openstack.org/1997902:49
*** danwent has quit IRC02:49
*** hattwick has quit IRC02:52
*** jcmartin has quit IRC02:53
*** esp has quit IRC02:54
*** hattwick has joined #openstack-dev02:55
*** Ryan_Lane has quit IRC02:58
*** alexxu has joined #openstack-dev02:59
*** anniec has quit IRC03:03
*** otherwiseguy has joined #openstack-dev03:04
*** gyee has quit IRC03:07
*** vipul is now known as vipul|away03:08
*** sacharya has joined #openstack-dev03:09
*** vipul|away is now known as vipul03:12
*** jog0 has quit IRC03:16
*** pixelbeat has quit IRC03:22
*** markmcclain has joined #openstack-dev03:24
*** jog0 has joined #openstack-dev03:27
*** jog0 has quit IRC03:27
*** jog0 has joined #openstack-dev03:28
*** epim has quit IRC03:28
*** jimfehlig has quit IRC03:29
*** jcmartin has joined #openstack-dev03:30
*** stevebaker has quit IRC03:31
*** ctracey|away has joined #openstack-dev03:33
*** jog0 has quit IRC03:39
*** jog0 has joined #openstack-dev03:40
*** jog0 has left #openstack-dev03:40
*** hillyu has joined #openstack-dev03:40
*** mohits has joined #openstack-dev03:41
*** melwitt has quit IRC03:47
*** stevebaker has joined #openstack-dev03:49
*** jimfehlig has joined #openstack-dev03:53
openstackgerritA change was merged to openstack/nova: Fix double reboot issue during soft reboot  https://review.openstack.org/1915703:53
*** pabelanger has quit IRC03:57
*** galthaus has joined #openstack-dev03:58
*** monst___ has joined #openstack-dev04:00
*** bdpayne has quit IRC04:06
*** halfss has quit IRC04:06
*** zhuadl has quit IRC04:06
*** rpedde_away is now known as rpedde04:08
*** Mandell has joined #openstack-dev04:12
*** Mandell has quit IRC04:14
*** Mandell has joined #openstack-dev04:15
*** Mandell_ has joined #openstack-dev04:16
*** Mandell has quit IRC04:16
*** bdpayne has joined #openstack-dev04:16
*** acemid has quit IRC04:16
*** bencherian has joined #openstack-dev04:19
*** anniec has joined #openstack-dev04:20
*** bencherian has quit IRC04:20
*** boris-42 has quit IRC04:23
*** acemid has joined #openstack-dev04:29
*** mohits has quit IRC04:32
*** megha has quit IRC04:34
*** acemid has quit IRC04:35
*** acemid has joined #openstack-dev04:36
*** markmcclain has quit IRC04:36
*** esp has joined #openstack-dev04:39
*** melwitt has joined #openstack-dev04:40
*** acemid has quit IRC04:40
*** acemid has joined #openstack-dev04:41
*** melwitt1 has joined #openstack-dev04:41
*** mohits has joined #openstack-dev04:43
*** melwitt has quit IRC04:44
*** maurosr has quit IRC04:45
*** monst___ has quit IRC04:45
*** acemid has quit IRC04:45
*** thingee_zzz is now known as thingee04:45
*** acemid has joined #openstack-dev04:46
*** anniec has quit IRC04:48
*** hemna has quit IRC04:48
*** navid has joined #openstack-dev04:48
*** acemid has quit IRC04:53
*** megha has joined #openstack-dev04:54
*** acemid has joined #openstack-dev04:55
*** halfss has joined #openstack-dev05:02
*** acemid has quit IRC05:02
*** acemid has joined #openstack-dev05:03
*** jcmartin has quit IRC05:05
*** Tross has quit IRC05:10
*** jimfehlig has quit IRC05:11
*** pfreund has joined #openstack-dev05:14
*** darjeeling has quit IRC05:20
*** megha has quit IRC05:20
*** Tross has joined #openstack-dev05:21
*** acemid has quit IRC05:22
*** melwitt1 has quit IRC05:24
*** zhuadl has joined #openstack-dev05:25
*** thingee is now known as thingee_zzz05:31
*** esp has left #openstack-dev05:31
*** blamar has quit IRC05:31
*** melwitt has joined #openstack-dev05:35
*** tserong has quit IRC05:39
*** almaisan-away is now known as al-maisan05:40
*** blamar has joined #openstack-dev05:41
*** tserong has joined #openstack-dev05:42
*** al-maisan is now known as almaisan-away05:42
openstackgerritA change was merged to openstack/cinder: Fix hosts extension and enable its tests  https://review.openstack.org/2041105:50
*** adjohn has joined #openstack-dev05:52
*** sacharya has quit IRC05:53
*** nunosantos has quit IRC05:54
*** Tross has quit IRC05:55
afazekasmlavalle: Now there are two pending change about config. I am plannin to spacify the ssh  username for all images separately  (2  nova 1 boto) , and probably we need one for the whitebox section too, but the code part which would use it not in use, it could be removed too.06:00
*** ewindisch has joined #openstack-dev06:09
*** blamar has quit IRC06:10
*** danwent has joined #openstack-dev06:12
*** darjeeling has joined #openstack-dev06:13
*** koolhead17 has quit IRC06:15
*** donaldngo has joined #openstack-dev06:16
*** bdpayne has quit IRC06:18
*** zaitcev has quit IRC06:23
*** donaldngo has quit IRC06:26
*** donaldngo has joined #openstack-dev06:26
*** koolhead17 has joined #openstack-dev06:28
*** boris-42 has joined #openstack-dev06:35
*** koolhead17 has quit IRC06:35
*** danwent has quit IRC06:39
*** avishay has quit IRC06:42
*** rpedde is now known as rpedde_away06:43
*** topol has quit IRC06:44
*** afazekas is now known as afazekas_06:44
*** avishay has joined #openstack-dev06:52
*** megha has joined #openstack-dev06:55
*** danwent has joined #openstack-dev06:56
*** acemid has joined #openstack-dev06:56
*** ondergetekende has quit IRC06:56
*** acemid has quit IRC07:01
*** alobbs has joined #openstack-dev07:03
*** zeriouz has quit IRC07:14
*** mindpixel has joined #openstack-dev07:14
*** armaan has joined #openstack-dev07:16
*** armaan has left #openstack-dev07:18
*** melwitt has quit IRC07:20
*** yolanda has joined #openstack-dev07:20
*** ondergetekende has joined #openstack-dev07:24
*** matiu has quit IRC07:25
*** henrynash has joined #openstack-dev07:25
*** danwent has quit IRC07:28
*** mrunge has joined #openstack-dev07:29
*** armaan has joined #openstack-dev07:30
*** alop has quit IRC07:35
*** Ryan_Lane has joined #openstack-dev07:36
*** burris has quit IRC07:44
*** henrynash has quit IRC07:45
*** shang has quit IRC07:47
*** douardda has joined #openstack-dev07:47
openstackgerritA change was merged to openstack/keystone: Fix pep8 error.  https://review.openstack.org/2044207:48
*** acemid has joined #openstack-dev07:48
*** afazekas has joined #openstack-dev07:49
*** navid has quit IRC07:50
*** matiu has joined #openstack-dev07:53
*** matiu has quit IRC07:53
*** matiu has joined #openstack-dev07:53
*** acemid has quit IRC07:53
*** corXi has joined #openstack-dev07:53
*** acemid has joined #openstack-dev07:53
*** acemid has quit IRC07:53
*** acemid has joined #openstack-dev07:54
*** darjeeling has quit IRC07:54
*** EmilienM has joined #openstack-dev07:54
*** reidrac has joined #openstack-dev07:55
*** acemid has quit IRC07:55
*** acemid has joined #openstack-dev07:56
*** amotoki has joined #openstack-dev07:56
*** jaypipes has quit IRC07:56
*** morganfainberg has quit IRC07:57
*** darjeeling has joined #openstack-dev07:58
*** rafaduran has joined #openstack-dev08:00
*** darjeeling has quit IRC08:02
*** brucer has quit IRC08:06
*** acemid78 has joined #openstack-dev08:08
*** jaypipes has joined #openstack-dev08:08
*** eglynn has joined #openstack-dev08:09
sgranhello08:19
*** koolhead17 has joined #openstack-dev08:19
sgranI have a review at https://review.openstack.org/#/c/20412/ that I would appreciate feedback on08:19
*** zhuadl has quit IRC08:20
sgranI can see two ways of doing this - one using the existing instance-metadata model, and one using a new tags model.  I chose the latter, as it seemed easier at the time, but I'd appreciate feedback on what people think about it08:20
lifelesslooks interesting; if you don't have feedback tomorrowish I'll try to get to it then08:20
lifeless[its too late, and i have too much writing to do, to do so now no matter how interesting]08:21
sgranthat's great, thanks :)08:22
*** halfss has quit IRC08:22
*** halfss has joined #openstack-dev08:24
*** mmagr has joined #openstack-dev08:27
*** navid has joined #openstack-dev08:31
*** Mandell_ has quit IRC08:35
*** acemid78 has quit IRC08:39
*** morganfainberg has joined #openstack-dev08:41
*** acemid78 has joined #openstack-dev08:44
*** pfreund has quit IRC08:45
*** pfreund has joined #openstack-dev08:46
*** navid has quit IRC08:52
*** winston-d_ has quit IRC08:56
*** yjiang5_away is now known as yjiang509:00
*** jpich has joined #openstack-dev09:01
*** Ryan_Lane has quit IRC09:03
*** navid has joined #openstack-dev09:12
*** derekh has joined #openstack-dev09:14
*** armaan has left #openstack-dev09:15
*** mohits has quit IRC09:16
*** pfreund has quit IRC09:17
*** e1mer has quit IRC09:18
*** \etc\bin has joined #openstack-dev09:18
*** anniec has joined #openstack-dev09:23
*** mohits has joined #openstack-dev09:27
*** mnewby has quit IRC09:28
*** pfreund has joined #openstack-dev09:31
*** henrynash has joined #openstack-dev09:31
*** darraghb has joined #openstack-dev09:31
*** shardy_afk is now known as shardy09:33
*** anniec has quit IRC09:36
*** anniec has joined #openstack-dev09:36
*** alexxu has quit IRC09:41
*** almaisan-away has quit IRC09:42
*** zbitter is now known as zaneb09:42
*** almaisan-away has joined #openstack-dev09:43
*** almaisan-away is now known as al-maisan09:43
*** ondergetekende has quit IRC09:45
*** negronjl has quit IRC09:51
*** ijw has joined #openstack-dev09:56
*** negronjl has joined #openstack-dev10:00
*** gongysh has quit IRC10:09
*** adjohn has quit IRC10:17
*** pixelbeat has joined #openstack-dev10:23
*** adjohn has joined #openstack-dev10:27
*** \etc\bin has quit IRC10:30
*** danpb has joined #openstack-dev10:30
*** pfreund has quit IRC10:44
*** corXi has quit IRC10:45
*** salv-orlando has joined #openstack-dev10:45
*** corXi has joined #openstack-dev10:45
*** vkmc has joined #openstack-dev10:48
*** xchu has quit IRC10:50
*** xchu has joined #openstack-dev10:51
*** xchu has quit IRC10:53
*** al-maisan is now known as almaisan-away10:57
*** yjiang5 is now known as yjiang5_away11:00
*** adalbas has joined #openstack-dev11:03
*** halfss has quit IRC11:12
openstackgerritA change was merged to openstack/python-quantumclient: Exception should raise with status code  https://review.openstack.org/2030211:15
*** mindpixel has quit IRC11:22
*** tserong has quit IRC11:23
*** topol has joined #openstack-dev11:33
*** tserong has joined #openstack-dev11:34
*** tserong has quit IRC11:34
*** tserong has joined #openstack-dev11:34
*** arbrandes has joined #openstack-dev11:35
*** zeriouz has joined #openstack-dev11:35
*** mohits has quit IRC11:42
*** vkmc_ has joined #openstack-dev11:47
*** vkmc has quit IRC11:48
*** vkmc_ is now known as vkmc11:48
*** alexpilotti has joined #openstack-dev11:50
*** zbitter has joined #openstack-dev11:50
*** pfreund has joined #openstack-dev11:50
*** gongysh has joined #openstack-dev11:50
*** gongysh has quit IRC11:51
*** gongysh has joined #openstack-dev11:52
*** mindpixel has joined #openstack-dev11:52
*** zaneb has quit IRC11:52
*** zbitter is now known as zaneb11:53
openstackgerritA change was merged to openstack/nova: Avoid stuck task_state on snapshot image failure  https://review.openstack.org/2024611:53
*** gongysh has quit IRC11:54
jpichLaunchpad question: If a bug was fixed in master, and I want to also target it to Folsom -- in the "Target to series" screen, is it enough to only select Folsom, or should something else (grizzly? trunk?) also be selected to avoid "losing" tracking of the bug status in master?11:55
*** gongysh has joined #openstack-dev11:55
danpbjpich: see this page http://wiki.openstack.org/StableBranch#Proposing_Fixes12:07
danpbbasically just nominating the bug for folsom is sufficient according to that page12:07
danpbbut you can explicitly submit the patch for the patch yourself if desired12:07
*** anniec has quit IRC12:11
*** ewindisch has quit IRC12:11
*** gongysh has quit IRC12:11
*** anniec has joined #openstack-dev12:13
*** anniec has quit IRC12:13
*** anniec has joined #openstack-dev12:14
*** markmc has joined #openstack-dev12:14
*** boris-42 has quit IRC12:20
*** koolhead17 has quit IRC12:26
*** adjohn has quit IRC12:28
*** markvoelker has quit IRC12:29
*** navid has quit IRC12:30
*** markvoelker has joined #openstack-dev12:31
*** salv-orlando has quit IRC12:31
*** johngarbutt has joined #openstack-dev12:37
*** maurosr_mob has joined #openstack-dev12:40
*** adepti37 has quit IRC12:41
*** sthaha has quit IRC12:41
*** adepti37 has joined #openstack-dev12:42
*** imsplitbit has joined #openstack-dev12:42
*** boden has joined #openstack-dev12:43
*** maurosr_mob has quit IRC12:51
*** maurosr has joined #openstack-dev12:52
*** xchu has joined #openstack-dev12:52
*** martine has joined #openstack-dev12:53
*** Tross has joined #openstack-dev12:58
jpichdanpb: Thanks! I did submit a patch, I was hoping to set up Launchpad to track it with my new bug supervisor superpowers13:01
*** jog0 has joined #openstack-dev13:04
*** pabelanger has joined #openstack-dev13:05
jpichmarkmc: Thank you for adding the Folsom series to the Horizon UTC bug :) When you "target to series", do you only select Folsom or do you also need to select grizzly or trunk?13:06
markmcjpich, just folsom13:06
*** pabelanger has quit IRC13:06
*** maurosr has quit IRC13:06
*** AndChat|396416 has joined #openstack-dev13:06
markmcjpich, grizzly is tracked by the main task13:06
jpichmarkmc: Ok, it wasn't clear to me if the master branch status information would be lost when only selecting Folsom. Thanks!13:07
markmcjpich, np :)13:07
*** navid has joined #openstack-dev13:07
*** AndChat|396416 has quit IRC13:07
*** maurosr has joined #openstack-dev13:07
*** maurosr has quit IRC13:22
*** mdomsch has quit IRC13:22
*** anniec has quit IRC13:22
*** pabelanger has joined #openstack-dev13:25
*** alunduil has quit IRC13:28
*** jog0 has quit IRC13:29
*** radez_g0n3 is now known as radez13:31
*** maurosr_ has joined #openstack-dev13:32
*** hillyu has left #openstack-dev13:32
*** flaper87 has joined #openstack-dev13:35
*** galthaus has quit IRC13:37
*** maurosr_ has quit IRC13:39
*** mjfork has joined #openstack-dev13:40
*** navid has quit IRC13:40
*** dims_ has quit IRC13:40
*** ijw has quit IRC13:41
*** ijw has joined #openstack-dev13:43
*** maurosr_ has joined #openstack-dev13:43
*** salv-orlando has joined #openstack-dev13:46
*** ewindisch has joined #openstack-dev13:49
*** dims has joined #openstack-dev13:50
*** martines has quit IRC13:54
*** ladquin_brb has joined #openstack-dev13:57
*** ladquin_brb is now known as ladquin13:57
*** anteaya has joined #openstack-dev13:59
*** pfreund has quit IRC14:00
*** mdomsch has joined #openstack-dev14:04
*** mawagon1 has joined #openstack-dev14:06
*** bknudson has joined #openstack-dev14:07
*** olaph has quit IRC14:08
*** maurosr_ has quit IRC14:10
*** roaet is now known as roaet-away14:10
*** bknudson1 has joined #openstack-dev14:12
*** otherwiseguy has quit IRC14:13
*** bknudson has quit IRC14:14
*** maurosr_ has joined #openstack-dev14:15
*** pabelanger is now known as nubbie14:15
*** roaet-away is now known as roaet14:15
*** blamar has joined #openstack-dev14:16
*** maurosr_ has quit IRC14:16
*** anteaya has quit IRC14:16
*** avishay has quit IRC14:20
*** alunduil has joined #openstack-dev14:21
*** anteaya has joined #openstack-dev14:22
*** hillyu has joined #openstack-dev14:23
*** russellb is now known as rustlebee14:25
*** gongysh has joined #openstack-dev14:25
*** alunduil has quit IRC14:28
*** bnemec has joined #openstack-dev14:28
*** bnemec is now known as Guest2277314:29
*** koolhead17 has joined #openstack-dev14:29
*** alunduil has joined #openstack-dev14:29
*** joesavak has joined #openstack-dev14:29
*** almaisan-away is now known as al-maisan14:30
*** jcru has joined #openstack-dev14:31
*** bswartz has quit IRC14:31
*** blamar has quit IRC14:33
*** maurosr_ has joined #openstack-dev14:35
*** dolphm has joined #openstack-dev14:35
*** maurosr_ has quit IRC14:36
*** sandywalsh has joined #openstack-dev14:37
*** burris has joined #openstack-dev14:39
garykamotoki: ping14:39
*** cloudchimp has joined #openstack-dev14:39
*** eharney has joined #openstack-dev14:41
*** alobbs1 has joined #openstack-dev14:41
*** dolphm has quit IRC14:41
*** alobbs has quit IRC14:42
*** koolhead17 has quit IRC14:45
*** zing has joined #openstack-dev14:45
*** arbrandes has quit IRC14:47
*** mtreinish has joined #openstack-dev14:49
*** winston-d_ has joined #openstack-dev14:50
*** bknudson1 has left #openstack-dev14:51
*** acemid has quit IRC14:52
*** burris has quit IRC14:53
*** burris has joined #openstack-dev14:53
*** rnirmal has joined #openstack-dev14:56
*** danwent has joined #openstack-dev14:57
*** galthaus has joined #openstack-dev14:57
*** koolhead17 has joined #openstack-dev14:57
*** jimfehlig has joined #openstack-dev14:57
*** garyTh has joined #openstack-dev14:58
*** rpedde_away is now known as rpedde15:00
*** aeperezt has joined #openstack-dev15:00
*** NobodyCam_brb is now known as NobodyCam15:04
sstentanyone know the current state of the RBAC implementation for horizon?15:04
*** arbrandes has joined #openstack-dev15:04
jpichsstent: I think it's been bumped out of grizzly because it's blocked waiting on keystone for now15:05
*** mrodden has joined #openstack-dev15:05
jpichsstent: https://blueprints.launchpad.net/horizon/+spec/rbac15:07
*** acemid has joined #openstack-dev15:07
*** acemid has quit IRC15:08
*** dosaboy has joined #openstack-dev15:08
*** acemid has joined #openstack-dev15:08
*** maoy has joined #openstack-dev15:08
*** yaguang has joined #openstack-dev15:09
*** maurosr_ has joined #openstack-dev15:10
*** blamar has joined #openstack-dev15:10
*** k3rn has quit IRC15:11
*** al-maisan is now known as almaisan-away15:11
*** burris has quit IRC15:11
*** salgado is now known as salgado-lunch15:13
*** maurosr_ has quit IRC15:13
sstentjpich: cool, thanks15:13
jpichsstent: yw15:13
*** joe5081 has joined #openstack-dev15:14
openstackgerritA change was merged to openstack/tempest: update whitebox testing for deleted type change  https://review.openstack.org/2039115:15
*** markmcclain has joined #openstack-dev15:16
*** alobbs has joined #openstack-dev15:16
*** dolphm has joined #openstack-dev15:16
ayoungjaypipes, does the sqlalchemy migration scripts automatically commit transactions?  And, if so, when?15:16
*** alobbs1 has quit IRC15:17
jaypipesayoung: depends on the underlying db15:17
jaypipesayoung: for Mysql, DDL always triggers a commit of any DML statements in the current session.15:17
*** jcru has quit IRC15:18
jaypipesayoung: for PostgreSQL, not sure, but I believe the entire things is attempted in a single transaction15:18
ayoungjaypipes, I think that the renames need a transaction.15:18
ayoungat least for sqlite15:18
ayoungwill that mess things up for the other RDBMS?15:19
*** joe5081 has quit IRC15:19
jaypipesayoung: shouldn't, no.15:20
*** pmyers has quit IRC15:20
jaypipesayoung: since both PG and MySQL support renames... sqlite doesn't.15:20
*** pmyers has joined #openstack-dev15:21
*** jcru has joined #openstack-dev15:23
*** yaguang has quit IRC15:24
ayounghttp://www.sqlite.org/lang_altertable.html jaypipes looks like it should support renames15:26
jaypipesayoung: perhaps I am thinking of a different DDL statement then... maybe MODIFY COLUMN?15:27
*** darjeeling has joined #openstack-dev15:28
*** monst___ has joined #openstack-dev15:28
*** TerryH has joined #openstack-dev15:29
*** arbrandes has quit IRC15:30
*** rnirmal has quit IRC15:30
*** jog0 has joined #openstack-dev15:30
ayoungjaypipes, yes, you can't delete  or rename columns in sqlite15:30
*** rnirmal has joined #openstack-dev15:31
*** annegentle has joined #openstack-dev15:32
*** rnirmal has quit IRC15:33
*** reed has joined #openstack-dev15:33
*** rnirmal has joined #openstack-dev15:33
*** cp16net is now known as cp16net|away15:33
*** sacharya has joined #openstack-dev15:35
*** sdake has joined #openstack-dev15:35
*** gael_ has joined #openstack-dev15:37
*** danwent has quit IRC15:37
*** salgado-lunch is now known as salgado15:37
maoyis novnc on devstack broken?15:38
*** salgado has quit IRC15:38
*** salgado has joined #openstack-dev15:38
maoy$ cd /opt/stack/nova && /usr/local/bin/nova-novncproxy --config-file /etc/nova/nova.conf --web /opt/stack/noVNC || touch "/opt/stack/status/stack/n-novnc.failure"15:38
maoyTraceback (most recent call last):15:38
maoy  File "/usr/local/bin/nova-novncproxy", line 7, in <module>15:38
maoy    execfile(__file__)15:38
maoy  File "/opt/stack/nova/bin/nova-novncproxy", line 80, in <module>15:38
maoy    server = console.websocketproxy.NovaWebSocketProxy(15:38
maoyAttributeError: 'module' object has no attribute 'websocketproxy'15:38
mjforkI am addressing some review comments, trying to cleanup on error and then let the exception continue to propogate but am getting "TypeError: exceptions must be old-style classes or derived from BaseException, not NoneType"15:38
*** cp16net|away is now known as cp16net15:39
*** sdake has quit IRC15:39
*** thingee_zzz is now known as thingee15:40
*** afazekas has quit IRC15:40
*** bswartz has joined #openstack-dev15:40
*** sdake has joined #openstack-dev15:42
dimsmaoy, see https://review.openstack.org/#/c/20477/15:45
sdaguemjfork: is the code that causes the issue in the review?15:45
maoydims: thanks..15:45
mjforksdague: no, its new code.15:46
mjforksdague: i can paste bin15:46
sdagueyeh, do that, I'll see if I can see something15:46
maoydims: i wish i could made two +2s right away. :D15:46
mjforksdague: http://paste.openstack.org/show/29831/15:46
*** jcru has quit IRC15:47
*** mmagr has quit IRC15:47
*** jcru has joined #openstack-dev15:48
sdaguemjfork: a failed pop isn't going to be a KeyError is it?15:48
*** acemid has quit IRC15:48
mjforksdague: yes, i looked it up.15:48
*** acemid has joined #openstack-dev15:48
mjforks.pop(): remove and return an arbitrary element from s; raises KeyError if empty15:49
*** xchu has quit IRC15:49
sdagueok, yeh15:49
*** Mandell has joined #openstack-dev15:51
*** sacharya has quit IRC15:51
*** annegentle is now known as agentp15:52
*** agentp is now known as agentlee15:52
*** anteaya is now known as anteaya-ya15:52
*** radez is now known as radez_g0n315:52
dimsmaoy, lol :)15:52
*** markvoelker has quit IRC15:53
winston-d_markmc: ping15:53
*** psedlak has quit IRC15:53
sdaguemjfork: ok, you have to except Exception: to be able to trigger the raise I'm pretty sure15:54
mjforksda tried that, same error15:54
mjforksdague: ^15:54
*** bknudson has joined #openstack-dev15:56
*** markvoelker has joined #openstack-dev15:56
sdagueyeh, sorry, someone with more python fu might be required15:58
openstackgerritA change was merged to openstack/quantum: Fix InvalidContentType can't be raised because of error in constructor  https://review.openstack.org/2040015:58
*** henrynash has quit IRC15:59
*** henrynash has joined #openstack-dev16:00
*** jcru is now known as jcru|away16:02
*** jcru|away is now known as jcru16:03
*** henrynash has quit IRC16:04
*** mmagr has joined #openstack-dev16:05
*** yaguang has joined #openstack-dev16:05
*** reidrac has left #openstack-dev16:08
*** aloga has quit IRC16:09
*** pandemicsyn has left #openstack-dev16:10
flaper87Any oslo reviewer around that can take a look here? https://review.openstack.org/#/c/20393/ thanks16:12
*** john5223 has joined #openstack-dev16:14
*** markvoelker1 has joined #openstack-dev16:14
ayoungjaypipes, dolphm Ok, so some more data on the rename issue in the upgrade scripts...I think it has to do with using the meta data to access tables.  If the metadata is not updated when something like table = sqlalchemy.Table(name, self.metadata, autoload=True) is executed, it shows an inconsistant state.  I think we can get around it by doing direct SQL executes instead.16:14
ayoungSo for checking if a table exists, we'll do16:14
ayoungself.engine.execute("select count(*) from '%s'" % table_name)16:14
ayounginstead of the above16:14
eglynnbcwaldon, ameade_: I'd appreciate a quick turnaround on this fix: https://review.openstack.org/#/q/Id601816735e4138cd7623dad4d90be67448292c8,n,z16:14
*** markvoelker has quit IRC16:15
*** vkmc has quit IRC16:15
mjforksdague: i got it to work: https://review.openstack.org/#/c/20280/5/nova/network/manager.py16:15
mjforklifeless: https://review.openstack.org/#/c/20280/516:16
*** vkmc has joined #openstack-dev16:16
*** woodspa has joined #openstack-dev16:16
*** devoid has joined #openstack-dev16:16
*** vkmc is now known as vicks16:17
*** thingee is now known as thingee_zzz16:19
*** edmund has joined #openstack-dev16:20
*** sacharya has joined #openstack-dev16:21
*** cloudchimp has quit IRC16:22
*** thingee_zzz is now known as thingee16:24
*** arbrandes has joined #openstack-dev16:25
*** martine has quit IRC16:27
*** radez_g0n3 is now known as radez16:28
*** vicks has quit IRC16:28
openstackgerritA change was merged to openstack/python-openstackclient: Fix test runner run_tests.sh is broken  https://review.openstack.org/2046816:29
*** afazekas_ is now known as afazekas16:31
*** ijw has quit IRC16:31
*** imsplitbit has quit IRC16:32
*** mmagr has quit IRC16:32
*** eharney has quit IRC16:34
*** hattwick has quit IRC16:34
*** jcmartin has joined #openstack-dev16:35
*** bdpayne has joined #openstack-dev16:36
*** adjohn has joined #openstack-dev16:36
*** hattwick has joined #openstack-dev16:37
*** armaan1 has joined #openstack-dev16:38
matiuI'm trying to write a test for a nova admin api thing for services16:38
matiubut it seems that the policy.json that's being loaded in te testing env, is not the same as the one in my nova/etc/policy.json16:39
matiuis there like a special one created or something at testing ?16:39
*** gongysh has quit IRC16:40
*** acemid has quit IRC16:40
*** adjohn has quit IRC16:40
*** vicks has joined #openstack-dev16:41
*** AnilV4 has quit IRC16:42
sdaguematiu: yes, there is a special one for test16:42
*** e1mer has joined #openstack-dev16:43
matiusdague, where abouts in the source is it generated ?16:43
sdaguelook at nova/test/fake_policy.py16:43
matiuthanks sdague :)16:43
*** wu_wenxiang has joined #openstack-dev16:44
*** kbringard has joined #openstack-dev16:47
*** acemid has joined #openstack-dev16:47
*** corXi has quit IRC16:48
*** gyee has joined #openstack-dev16:50
*** esheffield has joined #openstack-dev16:50
*** acemid has quit IRC16:51
*** maurosr has joined #openstack-dev16:53
flaper87dhellmann: ping16:54
flaper87dhellmann: when you get a chance, could you take a look at this patch? https://review.openstack.org/#/c/20393/16:55
*** armaan1 has left #openstack-dev16:55
flaper87dhellmann: thank you very much16:55
*** donaldngo has quit IRC16:58
wu_wenxiangCould any nova developer help to review: https://review.openstack.org/#/c/20489/. Thank you very much!16:59
*** mdomsch has quit IRC16:59
*** crandquist has joined #openstack-dev17:00
*** jcmartin has quit IRC17:01
*** vishy_zz is now known as vishy17:01
*** acemid has joined #openstack-dev17:01
*** mindpixel has quit IRC17:03
*** bencherian has joined #openstack-dev17:03
*** cloudchimp has joined #openstack-dev17:03
*** esheffield has quit IRC17:04
*** devoid has quit IRC17:04
*** markvoelker has joined #openstack-dev17:04
*** esheffield has joined #openstack-dev17:04
*** devoid has joined #openstack-dev17:04
*** markvoelker1 has quit IRC17:05
*** acemid has quit IRC17:06
*** esheffield1 has joined #openstack-dev17:06
*** blamar has quit IRC17:06
*** esheffield has quit IRC17:07
*** hemnafk is now known as hemna17:08
*** david-lyle has joined #openstack-dev17:08
*** gael_ has quit IRC17:09
*** mnewby has joined #openstack-dev17:10
*** mlavalle has joined #openstack-dev17:10
*** douardda has quit IRC17:10
wu_wenxiangAgain, Beg you any nova developer help to review: https://review.openstack.org/#/c/20489/. Thank you very much!17:11
*** danwent has joined #openstack-dev17:13
*** esheffield1 has quit IRC17:13
*** acemid has joined #openstack-dev17:15
*** Ryan_Lane has joined #openstack-dev17:16
*** henrynash has joined #openstack-dev17:21
matiuis it normal to push up reviews when you know they're not ready ?17:24
matiujust to get the ball rolling ?17:24
matiuor should I make it draft/private ..17:25
jk0you can mark them as drafts or work in progress17:25
*** vishy is now known as vishy_zz17:25
matiuah just like put it in the commit message ?17:26
matiuthanks jk017:26
jk0tbh, I don't recall how to actually mark it as a WIP :)17:26
jk0(I've never done it myself, but I see people do it all the time)17:26
jk0I think it is done in the commit msg though17:26
*** stevemar has joined #openstack-dev17:28
*** esheffield has joined #openstack-dev17:29
*** Ryan_Lane has quit IRC17:29
bknudson'If your code is not ready for review, click "Work in Progress" ...'17:31
bknudsonhttp://wiki.openstack.org/GerritWorkflow17:31
*** jcmartin has joined #openstack-dev17:32
*** devoid has quit IRC17:32
*** devoid has joined #openstack-dev17:33
*** vishy_zz is now known as vishy17:34
*** radez is now known as radez_g0n317:35
*** ewindisch has quit IRC17:37
*** esp1 has joined #openstack-dev17:40
*** derekh has quit IRC17:40
*** lauraglendenning has joined #openstack-dev17:42
*** vishy is now known as vishy_zz17:44
*** megha has quit IRC17:45
*** ctracey|away is now known as ctracey17:47
*** devoid has quit IRC17:50
*** otherwiseguy has joined #openstack-dev17:50
*** arbrandes has quit IRC17:50
*** imsplitbit has joined #openstack-dev17:52
*** vishy_zz is now known as vishy17:52
*** Ryan_Lane has joined #openstack-dev17:54
*** adjohn has joined #openstack-dev17:56
*** shardy is now known as shardy_afk17:59
*** epim has joined #openstack-dev17:59
*** cdub_ has joined #openstack-dev17:59
*** blamar has joined #openstack-dev17:59
*** megha has joined #openstack-dev18:00
*** andrewbogott_afk is now known as andrewbogott18:00
*** epim_ has joined #openstack-dev18:02
*** rafaduran has quit IRC18:02
*** yidclare has joined #openstack-dev18:03
*** epim has quit IRC18:03
*** epim has joined #openstack-dev18:04
*** epim has quit IRC18:04
*** markmc has quit IRC18:04
openstackgerritA change was merged to openstack/glance: Removed unncessary code  https://review.openstack.org/2048818:05
*** epim_ has quit IRC18:06
davidkranzmlavalle, afrittoli : Commits to tempest are now running (non-gating) gate-tempest-devstack-vm-quantum-full but it is failing.18:13
*** bswartz has quit IRC18:13
davidkranzWho should look into this?18:13
*** mjfork has quit IRC18:13
*** bswartz has joined #openstack-dev18:13
davidkranzHere is a sample log: http://logs.openstack.org/20182/6/check/gate-tempest-devstack-vm-quantum-full/4/console.html.gz18:14
mlavalledavidkranz: leaving for a meeting. will get back to you later in the afternoon18:15
davidkranzmlavalle: k18:16
mlavalledavidkranz: what's you time zone? I am in central18:16
davidkranzmlavalle: eastern18:16
mlavalledavidkranz: ;-)18:16
*** zing has quit IRC18:18
openstackgerritA change was merged to openstack/nova: Fix bad imports that cause nova-novncproxy to fail  https://review.openstack.org/2047718:18
openstackgerritA change was merged to openstack/nova: Added sample tests to floating-ip-pools API.  https://review.openstack.org/2034418:18
openstackgerritA change was merged to openstack/nova: clean up api_samples documentation  https://review.openstack.org/2049418:18
*** devoid has joined #openstack-dev18:19
*** vipul is now known as vipul|away18:19
*** gugl has joined #openstack-dev18:19
guglmordred: do you have any steps for setting up grizzly openstack not devstack?18:20
*** dosaboy has quit IRC18:20
*** vipul|away is now known as vipul18:22
*** darraghb has quit IRC18:22
*** epim has joined #openstack-dev18:22
*** dolphm has quit IRC18:24
*** agentlee has quit IRC18:24
*** bswartz has quit IRC18:24
*** arbrandes has joined #openstack-dev18:24
*** bswartz has joined #openstack-dev18:25
*** dosaboy has joined #openstack-dev18:25
*** vipul is now known as vipul|away18:25
*** vipul|away is now known as vipul18:25
*** bdpayne has quit IRC18:25
*** henrynash has quit IRC18:26
harlowjabcwaldon: yt? got a horizon question18:27
*** armaan has joined #openstack-dev18:28
*** acemid has quit IRC18:29
*** bdpayne has joined #openstack-dev18:29
*** acemid has joined #openstack-dev18:32
*** armaan has quit IRC18:35
*** acemid has quit IRC18:37
*** andrewbogott is now known as andrewbogott_afk18:37
*** EmilienM has left #openstack-dev18:37
*** andrewbogott_afk is now known as andrewbogott18:38
*** Ader has joined #openstack-dev18:38
*** eharney has joined #openstack-dev18:39
*** dolphm has joined #openstack-dev18:40
*** vipul is now known as vipul|away18:40
*** yaguang has quit IRC18:40
*** devoid has quit IRC18:44
*** armaan has joined #openstack-dev18:44
*** devoid has joined #openstack-dev18:45
*** yaguang has joined #openstack-dev18:45
*** esheffield has quit IRC18:46
*** acemid has joined #openstack-dev18:47
*** ewindisch has joined #openstack-dev18:49
*** acemid has quit IRC18:52
*** armaan has quit IRC18:52
*** yidclare has quit IRC18:53
*** Ryan_Lane has quit IRC18:54
mnewbygaryk: hi!18:55
*** yaguang has quit IRC18:58
*** henrynash has joined #openstack-dev18:59
*** armaan has joined #openstack-dev18:59
*** acemid has joined #openstack-dev19:02
*** yidclare has joined #openstack-dev19:04
*** vicks has quit IRC19:06
*** acemid has quit IRC19:06
*** vkmc has joined #openstack-dev19:06
*** morganfainberg has quit IRC19:07
*** Gordonz has joined #openstack-dev19:08
openstackgerritA change was merged to openstack/tempest: Credentials Configuration changes  https://review.openstack.org/2018219:09
*** henrynash has quit IRC19:10
*** yaguang has joined #openstack-dev19:10
doudeHi, all. I work on a bp. I've 2 reviews in this pb. How I can create a same topic name for reviews ?19:10
doudehabitualy, I use set the topic nme with the branch name of my branch code on my local git19:11
*** cp16net is now known as cp16net|away19:11
*** yaguang has quit IRC19:12
doudebut I cannot set the same name to 2 different branches on my local git19:12
*** cp16net|away is now known as cp16net19:12
bknudsondoude: git-review --topic TOPIC19:12
doudebknudson: thanks a lot19:13
doudebknudson: the topic git-review name doesn't depend on the branch name ?19:14
bknudsondoude: use git-review -nv --topic TOPIC and it will tell you what it's going to do.19:14
doudebknudson: ok19:14
*** jpich has quit IRC19:15
*** fesp has joined #openstack-dev19:15
doudebknudson: thanks19:15
bknudsondoude: np19:15
*** flaper87 has quit IRC19:16
*** dosaboy has quit IRC19:17
*** acemid has joined #openstack-dev19:17
*** radez_g0n3 is now known as radez19:17
*** bencherian has quit IRC19:18
*** danpb has quit IRC19:18
*** bencherian has joined #openstack-dev19:19
*** bencherian has quit IRC19:20
*** flaper87 has joined #openstack-dev19:20
*** fesp has quit IRC19:21
*** acemid has quit IRC19:21
*** markmcclain has quit IRC19:29
*** acemid has joined #openstack-dev19:31
*** vipul|away is now known as vipul19:34
*** markmcclain has joined #openstack-dev19:34
*** salv-orlando_ has joined #openstack-dev19:34
*** esp1 has quit IRC19:35
*** douardda has joined #openstack-dev19:36
*** Ryan_Lane has joined #openstack-dev19:36
*** acemid has quit IRC19:36
*** novas0x2a|laptop has joined #openstack-dev19:37
*** mikal_ has joined #openstack-dev19:38
*** salv-orlando_ has quit IRC19:40
*** salv-orlando has quit IRC19:42
*** mikal has quit IRC19:42
openstackgerritA change was merged to openstack/nova: Enable N302: Import modules only  https://review.openstack.org/2050019:42
*** nubbie has quit IRC19:43
*** esp1 has joined #openstack-dev19:44
*** lauraglendenning has quit IRC19:45
*** stevemar has quit IRC19:45
*** acemid has joined #openstack-dev19:47
*** techlife has quit IRC19:47
*** techlife has joined #openstack-dev19:47
*** devoid has quit IRC19:48
*** techlife has joined #openstack-dev19:49
*** bknudson has left #openstack-dev19:49
*** bknudson has joined #openstack-dev19:49
*** EmilienM has joined #openstack-dev19:49
*** esheffield has joined #openstack-dev19:50
*** techlife has joined #openstack-dev19:50
*** acemid has quit IRC19:51
*** techlife has joined #openstack-dev19:51
*** techlife has joined #openstack-dev19:52
*** techlife has joined #openstack-dev19:52
*** techlife has joined #openstack-dev19:53
*** bencherian has joined #openstack-dev19:54
*** techlife has joined #openstack-dev19:54
*** esheffield has quit IRC19:55
vishyalexpilotti: how is the get_password support coming?19:55
alexpilottivishy: as I told I'm gonna add it before Grizzly19:56
alexpilottinow I'm busy with some Nova refactoring, resize and Quantum NVGRE19:56
vishyalexpilotti: just checking in :) want to demo it19:57
vishyalexpilotti: cool no worries19:57
alexpilottivishy: sure, I'm gonna add it ASAP.19:57
*** salv-orlando has joined #openstack-dev19:57
*** devoid has joined #openstack-dev19:57
*** melwitt has joined #openstack-dev19:57
*** yidclare has quit IRC19:59
mordreddoude: also, git-review will do it magically for you if you reference the blueprint in your commit message (preceded by the word blueprint or bp)19:59
*** imsplitbit has quit IRC19:59
*** bencherian has quit IRC20:00
doudemordred: ho ok. I understand now20:00
doudemordred: thanks20:00
*** yidclare has joined #openstack-dev20:01
*** acemid has joined #openstack-dev20:01
*** bswartz has quit IRC20:03
*** Ader has quit IRC20:04
*** bdpayne has quit IRC20:04
*** bdpayne has joined #openstack-dev20:05
*** acemid has quit IRC20:06
*** melwitt1 has joined #openstack-dev20:09
*** esheffield has joined #openstack-dev20:10
*** esp1 has quit IRC20:11
*** morganfainberg has joined #openstack-dev20:11
*** melwitt has quit IRC20:11
*** mawagon1 is now known as [laph20:12
openstackgerritA change was merged to openstack/keystone: rename tenant to project in sql  https://review.openstack.org/2048020:12
arosenping garyk:20:12
openstackgerritA change was merged to openstack/nova: Avoid db lookup in info_from_instance().  https://review.openstack.org/2035420:12
*** [laph is now known as olaph20:13
*** jcru is now known as jcru|away20:13
*** fesp has joined #openstack-dev20:14
*** jcru|away is now known as jcru20:14
*** dosaboy has joined #openstack-dev20:16
*** flaper87 has quit IRC20:16
*** acemid has joined #openstack-dev20:16
*** eglynn has quit IRC20:18
*** zaitcev has joined #openstack-dev20:18
*** acemid has quit IRC20:21
mlavalledavidkranz: i'm back. let me take a look on the log. give a few minutes20:23
*** flaper87 has joined #openstack-dev20:23
*** arbrandes has quit IRC20:24
*** esp1 has joined #openstack-dev20:24
davidkranzmlavalle: Take your time. I really just wanted to make sure the people who could fix it knew about it because it was just turned on.20:24
mlavalledavidkranz: ;-)20:25
*** fesp has quit IRC20:25
*** yolanda has quit IRC20:25
*** john5223 has quit IRC20:26
*** acemid has joined #openstack-dev20:31
*** gugl has quit IRC20:33
*** flaper87 has quit IRC20:33
*** esp1 has quit IRC20:34
*** acemid has quit IRC20:36
mlavalledavidkranz: wow, all the tests are failling20:39
*** vkmc has quit IRC20:40
mlavalledavidkranz: i think i know what the problem is. Last weekend there was a commit: "Refactor identity". The associated comment states: "the credentials will be moved to the identity section, in a future commit".20:43
mlavalledavidkranz: but the "future commit" is not there yet. so tests are running without credentials. i'll reach out to that person and see what his plan is20:44
davidkranzmlavalle: OK, great.20:44
davidkranzmlavalle: At least this should be the last time that is possible :)20:45
mlavalledavidkranz: yeah!!! have a nice weekend. i'll keep you posted20:46
*** imsplitbit has joined #openstack-dev20:46
*** acemid has joined #openstack-dev20:47
*** flaper87 has joined #openstack-dev20:47
*** bknudson has quit IRC20:48
*** dolphm has quit IRC20:50
*** blamar has quit IRC20:50
*** acemid has quit IRC20:51
*** esp has joined #openstack-dev20:52
mlavalleafazekas: hi20:53
*** nunosantos has joined #openstack-dev20:55
*** otherwiseguy has quit IRC20:57
*** dolphm has joined #openstack-dev20:57
*** capnkooc has joined #openstack-dev20:58
anteaya-yaif anyone is feeling generous this Friday afternoon and is willing to offer some constructive support to an intern: https://review.openstack.org/#/c/20525/ and thank you20:58
*** jog0 has quit IRC20:59
afazekasmlavalle: hi20:59
gyeedolphm, need your blessing. https://review.openstack.org/#/c/20524/21:01
mlavalleafazekas: you pushed a tempest commit this past weekend: "Refactor identity". In the comment, you indicate that you will move credentials to the identity section. when are you planning to do that?21:01
afazekasmlavalle: merged21:01
*** acemid has joined #openstack-dev21:02
*** fesp has joined #openstack-dev21:02
*** dolphm has quit IRC21:02
*** dolphm has joined #openstack-dev21:02
*** yidclare has joined #openstack-dev21:02
mlavalleafazekas: thanks! we need it. some tests are failling now21:02
mlavalleafazekas: have a nice weekend! :-)21:03
afazekasmlavalle: have nice weekend21:03
*** flaper87 has quit IRC21:04
afazekasmlavalle: https://review.openstack.org/#/c/20086/ this an another config change (merge fail)21:04
*** acemid has quit IRC21:06
mlavalleafazekas: are you going to push it again?21:06
*** EmilienM has left #openstack-dev21:07
afazekasmlavalle: whitebox related things will get a new section, and the ssh_users question is not clear yet21:07
afazekasmlavalle: yes21:07
mlavalleafazekas: cool. thx again21:08
*** bknudson has joined #openstack-dev21:08
*** sacharya has quit IRC21:10
*** annegentle has joined #openstack-dev21:10
*** andrewbogott is now known as andrewbogott_afk21:12
*** bknudson has quit IRC21:12
*** dosaboy has quit IRC21:16
devoidFirst time using gerrit, how do I select a stable/release branch to submit a commit to review?21:16
*** acemid has joined #openstack-dev21:17
*** koolhead17 has quit IRC21:19
clarkbdevoid: you are looking to submit code to a stable/release branch? or you wanto get the stable/release branch?21:20
annegentledevoid: We've written it up for docs at http://wiki.openstack.org/Documentation/HowTo#How_to_a_cherry-pick_a_change_to_a_stable_branch, but clarkb can probably help with your exact case.21:20
devoidclarkb: submit code to stable/essex21:20
clarkbdevoid: on your topic branch based on stable/essex run `git review stable/essex`21:21
*** acemid has quit IRC21:21
devoidlooks like I'm invalid! :)21:22
devoid ! [remote rejected] HEAD -> refs/publish/stable/essex/bug/1097984 (invalid committer)21:22
clarkbthere may be restrictions on who can push commits to the stable branch for that project21:22
clarkbwhich project is this for?21:22
devoidopenstack-dev/devstack21:23
*** bswartz has joined #openstack-dev21:24
*** dolphm has quit IRC21:24
clarkbdevoid: did you set up an account in gerrit?21:25
devoidyea21:25
clarkblooks like all registered users should be able to push to devstack21:25
*** otherwiseguy has joined #openstack-dev21:26
*** bknudson has joined #openstack-dev21:27
devoidclarkb: the only thing I can think of is under Settings > Identities the "Status" field is blank.21:27
clarkbis there an email address at https://review.openstack.org/#/settings/ ?21:28
clarkband a name?21:28
clarkbI think those both need to be set and your git commit will need to match those values21:28
*** dolphm has joined #openstack-dev21:30
*** hillyu has quit IRC21:30
*** boris-42 has joined #openstack-dev21:31
*** nubbie has joined #openstack-dev21:31
*** acemid has joined #openstack-dev21:31
*** annegentle has quit IRC21:32
*** annegentle has joined #openstack-dev21:33
*** nubbie has quit IRC21:33
*** nubbie has joined #openstack-dev21:33
*** bswartz has quit IRC21:35
*** acemid has quit IRC21:36
*** annegentle has quit IRC21:36
devoidclarkb: Yes that was it. I had my @gmail.com address in the commit. Thanks!21:37
devoidhttps://review.openstack.org/#/c/20528/21:37
*** mrunge has quit IRC21:38
*** bencherian has joined #openstack-dev21:38
clarkbnp21:38
*** Tross has left #openstack-dev21:39
*** dims has quit IRC21:42
*** markvoelker1 has joined #openstack-dev21:45
*** Ryan_Lane has quit IRC21:46
*** acemid has joined #openstack-dev21:47
*** Ryan_Lane has joined #openstack-dev21:47
*** lifeless has quit IRC21:48
*** markvoelker has quit IRC21:48
*** dims has joined #openstack-dev21:49
*** acemid has quit IRC21:51
*** andrewbogott_afk is now known as andrewbogott21:56
*** kbringard has quit IRC21:56
*** mtreinish has quit IRC21:59
*** acemid has joined #openstack-dev22:01
dimsAny quantum folks around? would really appreciate a review - https://review.openstack.org/#/c/20459/22:02
*** bswartz has joined #openstack-dev22:02
*** lifeless has joined #openstack-dev22:05
*** acemid has quit IRC22:06
*** hillyu has joined #openstack-dev22:07
*** galthaus has quit IRC22:07
*** sandywalsh has quit IRC22:08
*** markvoelker1 has quit IRC22:09
*** martine has joined #openstack-dev22:13
*** vipul is now known as vipul|away22:15
*** dolphm has quit IRC22:16
*** anniec has joined #openstack-dev22:16
*** acemid has joined #openstack-dev22:17
*** adjohn has quit IRC22:17
*** boden has quit IRC22:17
*** annegentle has joined #openstack-dev22:18
*** anteaya-ya has left #openstack-dev22:18
*** anniec_ has joined #openstack-dev22:19
*** joesavak has quit IRC22:21
*** acemid has quit IRC22:21
*** anniec has quit IRC22:22
*** anniec_ is now known as anniec22:22
devoidannegentle: thanks for the link, that worked!22:22
annegentledevoid: ok, cool!22:23
*** lloydde has joined #openstack-dev22:28
*** martine has quit IRC22:31
*** hillyu has left #openstack-dev22:31
*** acemid has joined #openstack-dev22:32
*** lcheng has joined #openstack-dev22:33
*** swaT30 has quit IRC22:36
*** acemid has quit IRC22:37
*** boris-42 has quit IRC22:37
*** jaypipes has quit IRC22:40
*** dhellmann is now known as dhellmann-afk22:45
*** acemid has joined #openstack-dev22:46
*** zg has left #openstack-dev22:48
*** olaph has quit IRC22:49
*** olaph has joined #openstack-dev22:49
*** armaan has left #openstack-dev22:50
*** vipul|away is now known as vipul22:50
*** acemid has quit IRC22:51
*** maurosr has quit IRC22:51
*** cp16net is now known as cp16net|away22:58
*** cp16net|away is now known as cp16net23:01
*** acemid has joined #openstack-dev23:02
*** benner has quit IRC23:02
*** benner has joined #openstack-dev23:02
*** nunosantos has quit IRC23:02
*** radez is now known as radez_g0n323:04
*** rnirmal has quit IRC23:05
*** acemid has quit IRC23:06
*** mawagon1 has joined #openstack-dev23:07
*** jcru is now known as jcru|away23:08
*** annegentle has quit IRC23:13
*** garyTh has quit IRC23:16
*** acemid has joined #openstack-dev23:17
*** edmund has quit IRC23:18
*** vipul is now known as vipul|away23:18
*** ladquin is now known as ladquin_brb23:18
openstackgerritA change was merged to openstack/glance: Removed unnecessary code  https://review.openstack.org/2053023:20
*** lcheng has quit IRC23:21
*** lcheng has joined #openstack-dev23:21
*** acemid has quit IRC23:22
*** lcheng has quit IRC23:22
*** lcheng has joined #openstack-dev23:22
*** lcheng has quit IRC23:22
openstackgerritA change was merged to openstack/python-glanceclient: Migrate to testr.  https://review.openstack.org/1863523:22
*** lcheng has joined #openstack-dev23:23
*** lcheng has quit IRC23:24
*** lcheng has joined #openstack-dev23:24
*** lcheng has quit IRC23:25
*** dolphm has joined #openstack-dev23:25
*** lcheng has joined #openstack-dev23:25
*** lcheng has quit IRC23:26
*** lcheng has joined #openstack-dev23:26
*** aeperezt has quit IRC23:26
*** alunduil has quit IRC23:27
*** jimfehlig has quit IRC23:27
*** alobbs has quit IRC23:28
*** woodspa has quit IRC23:29
*** nubbie has quit IRC23:29
*** esheffield has quit IRC23:31
*** acemid has joined #openstack-dev23:32
*** crandquist has quit IRC23:32
openstackgerritA change was merged to openstack/quantum: Ensure that correct root helper is used  https://review.openstack.org/2048223:35
*** jcru|away is now known as jcru23:36
*** acemid has quit IRC23:36
*** mawagon1 has quit IRC23:37
*** zaitcev has quit IRC23:38
*** rpedde is now known as rpedde_away23:38
*** sdake has quit IRC23:43
*** lifeless has quit IRC23:44
*** lcheng has quit IRC23:45
*** armaan has joined #openstack-dev23:46
*** david-lyle has quit IRC23:46
*** acemid has joined #openstack-dev23:47
*** armaan has left #openstack-dev23:48
*** acemid has quit IRC23:51
*** bknudson has quit IRC23:55
*** fesp has quit IRC23:55
*** vipul|away is now known as vipul23:56
*** lifeless has joined #openstack-dev23:56
*** markmcclain has quit IRC23:57
BLZbubbahi guys, how does openstack choose the libvirt options such as "cache=none" ?23:59

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