*** e1mer has quit IRC | 00:00 | |
*** dosaboy has joined #openstack-dev | 00:00 | |
*** mrodden has quit IRC | 00:01 | |
openstackgerrit | A change was merged to openstack/nova: Increase maximum URI size for EC2 API to 16k https://review.openstack.org/19842 | 00:02 |
---|---|---|
*** eharney has quit IRC | 00:03 | |
*** dosaboy has quit IRC | 00:03 | |
*** stevebaker has quit IRC | 00:05 | |
*** mlavalle has left #openstack-dev | 00:07 | |
*** brucer has joined #openstack-dev | 00:14 | |
*** gugl has joined #openstack-dev | 00:15 | |
gugl | hi all, does anyone of you install grizzly openstack sucessfully? | 00:15 |
*** lloydde has quit IRC | 00:17 | |
*** bknudson has quit IRC | 00:19 | |
mordred | gugl: every day about 400 times in the CI system | 00:21 |
*** kbringard has joined #openstack-dev | 00:21 | |
mordred | but, to be fair, that's a single machine install via devstack - but it _is_ a grizzly install :) | 00:22 |
*** e1mer has joined #openstack-dev | 00:22 | |
*** roaet-away is now known as roaet | 00:22 | |
*** kbringard has quit IRC | 00:24 | |
clarkb | mordred: 459 ish times over the last 24 hours | 00:24 |
clarkb | (according to zuul so that number won't include the periodic jobs) | 00:24 |
openstackgerrit | A change was merged to openstack/cinder: Get updated vol status in volume.api.reserve. https://review.openstack.org/20301 | 00:25 |
*** utlemming has quit IRC | 00:29 | |
*** blamar has joined #openstack-dev | 00:31 | |
*** utlemming has joined #openstack-dev | 00:31 | |
*** alunduil has joined #openstack-dev | 00:34 | |
*** burris has joined #openstack-dev | 00:37 | |
*** douardda has quit IRC | 00:37 | |
*** vipul is now known as vipul|away | 00:39 | |
*** lloydde has joined #openstack-dev | 00:43 | |
*** yidclare has quit IRC | 00:43 | |
*** lloydde has quit IRC | 00:44 | |
matiu | What would be a good error to raise to say, "your nova db is messed up" | 00:45 |
clarkb | devananda: ^ | 00:45 |
matiu | in this case if we find that a host has > 1 availability_zone in the DB .. | 00:45 |
*** epim has joined #openstack-dev | 00:45 | |
*** esp1 has quit IRC | 00:46 | |
matiu | like NotFound, but to say, FoundTooMany .. | 00:47 |
devananda | ah, so | 00:47 |
devananda | matiu: there is work being done to add proper Unique constraints to the db | 00:47 |
devananda | matiu: which would prevent that from happening, and would raise DUplicateKeyError if a second entry were attempted to be inserted | 00:48 |
devananda | matiu: 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 |
devananda | it's also possible I misunderstood the question :) | 00:50 |
matiu | devananda, yeah it's for the admin api, where the db returns aggregate metadata | 00:50 |
matiu | which can have multiple values | 00:50 |
matiu | but really a host should only have one availability zone | 00:51 |
matiu | so I figured because it's the adminapi, they'll probably want to know | 00:51 |
matiu | currently it behaves differently in different places | 00:51 |
*** adalbas has quit IRC | 00:52 | |
*** vkmc has quit IRC | 00:52 | |
*** thingee is now known as thingee_zzz | 00:53 | |
matiu | devananda, any idea what's up with this comment ? | 00:53 |
matiu | #TODO(bcwaldon): EOL this exception! | 00:54 |
matiu | class Duplicate(NovaException): | 00:54 |
matiu | pass | 00:54 |
devananda | matiu: what file? | 00:54 |
matiu | nova/openstack/exceptions.py | 00:54 |
matiu | nova/openstack/exception.py | 00:54 |
*** Ryan_Lane has quit IRC | 00:54 | |
matiu | it's ok I'll use git blame to trace it back ... | 00:55 |
devananda | matiu: I think the exception you want is DBDuplicateEntry | 00:56 |
*** Ryan_Lane has joined #openstack-dev | 00:56 | |
*** vipul|away is now known as vipul | 00:56 | |
devananda | matiu: EOL could mean "end of life", as in, "someone should remove this" | 00:56 |
*** esp has joined #openstack-dev | 00:57 | |
openstackgerrit | A change was merged to openstack/nova: Support optional 4 arg for nova-dhcpbridge https://review.openstack.org/20363 | 00:57 |
matiu | thanks devananda .. I'll use that :) | 00:57 |
devananda | matiu: 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,z | 00:58 |
*** stevebaker has joined #openstack-dev | 00:59 | |
devananda | matiu: 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 |
devananda | just my 2c :) | 01:00 |
*** salv-orlando has quit IRC | 01:00 | |
matiu | devananda, so that's unique constraints for normal DBs ? | 01:00 |
matiu | or for like the aggregate host metadata table .. | 01:00 |
matiu | I'm gussing for normal tables eh | 01:01 |
gugl | mordred: do you have steps for where to download and how to set up...I only have steps for folsom setup... | 01:02 |
devananda | matiu: yes. real unique indexes on tables. maybe i dont know what "aggregate host metadata" means? | 01:03 |
devananda | matiu: ahhh. it's a key-value table | 01:03 |
matiu | devananda, there's like a table that just contains key - value pairs | 01:04 |
devananda | matiu: right. so enforcing uniqueness on that table isn't in the plans right now -- but it could be done, I think. | 01:04 |
matiu | yeah, so I'm not 100% sure that might be the right err .. hmm.. | 01:04 |
devananda | yea, not the right error :( | 01:04 |
matiu | I think for some of its entries it's supposed to allow multiple values | 01:05 |
matiu | but not for this particular one. | 01:05 |
devananda | ah | 01:05 |
devananda | tricky | 01:05 |
matiu | I might just create a new err | 01:05 |
devananda | matiu: when are you checking for duplicates? on every access, or just on writes? | 01:05 |
devananda | or something else | 01:05 |
*** otherwiseguy has quit IRC | 01:06 | |
matiu | when someone requests a list of services, or a single serviec | 01:06 |
*** sdake has quit IRC | 01:06 | |
matiu | at the moment one turns it into a , delim'd list | 01:07 |
*** halfss has joined #openstack-dev | 01:07 | |
matiu | and the other just takes the first val | 01:07 |
matiu | I don't think either is the appropriate response .. | 01:07 |
matiu | as there should only be one availability_zone for a host | 01:07 |
openstackgerrit | A change was merged to openstack/nova: Refactored run_command for better naming https://review.openstack.org/20416 | 01:08 |
matiu | and if there's more in your DB, something's up, and you'll probably want to know about it | 01:08 |
*** vishy is now known as vishy_zz | 01:12 | |
*** gugl has quit IRC | 01:12 | |
devananda | matiu: so i'm just guessing, but raising an exception at that point might also not be the right thing to do | 01:14 |
devananda | matiu: for example, how could you know which one to delete if trying to list them just raises an error? | 01:14 |
matiu | yeah, I was thinking to just raise a 404 .. at the api layer maybe .. | 01:14 |
matiu | yeah, you'd have to check the DB manually | 01:15 |
openstackgerrit | A change was merged to openstack/nova: VMware Compute Driver Volume Management https://review.openstack.org/19479 | 01:15 |
matiu | hmmm. | 01:15 |
matiu | I suppose I could just make them both return a ',' delim'd list, but that would look confusing in the code | 01:15 |
boris-42 | Hi all | 01:15 |
matiu | like one was supposed to have a multiple zones per host,, | 01:16 |
*** ladquin_brb has quit IRC | 01:17 | |
boris-42 | matiu: I think that it is better to add UC to this table | 01:18 |
matiu | a | 01:18 |
*** Ruetobas has quit IRC | 01:18 | |
matiu | boris-42, yeah, it doesn't have a table as such | 01:18 |
matiu | it comes from a aggregate_metadata table, which is a key value pair table | 01:19 |
boris-42 | And why do you can't add UC to (key, aggregate_id, delete) columns? | 01:20 |
*** flaper87 has quit IRC | 01:20 | |
matiu | I think other key values may need to have multiple columns | 01:20 |
matiu | from the way the code works, and returns any dup vals in a set | 01:20 |
matiu | but for this particular key 'availability_zone' .. there should really be only one | 01:21 |
*** Ruetobas has joined #openstack-dev | 01:21 | |
matiu | I guess I could add the restraint at the writing port | 01:21 |
matiu | part | 01:21 |
boris-42 | No i don't think so | 01:21 |
matiu | and if I find dups when reading, just return the first one, or return a list | 01:22 |
boris-42 | As I have seen in code we are working with such tables as dict -> so keys are unique | 01:22 |
matiu | the sqlalchemy api | 01:23 |
matiu | returns in the format: {'key', set(['val1'], ['val2])} | 01:23 |
*** TerryH has quit IRC | 01:23 | |
matiu | even if it only has one val, it returns a set with one element | 01:23 |
*** winston-d_ has joined #openstack-dev | 01:24 | |
matiu | so that suggests that generally it like to support multiple vals for a key (to me at least) | 01:24 |
matiu | so, yeah, I'm thinking now to add the singular constraint in the nova/availability_zones.py | 01:25 |
matiu | maybe at the writing stage | 01:25 |
openstackgerrit | A change was merged to openstack/glance: Update glance config files with log defaults https://review.openstack.org/20149 | 01:27 |
openstackgerrit | A change was merged to openstack/glance: Make v2 image tags test not load system policy https://review.openstack.org/20138 | 01:27 |
*** halfss has quit IRC | 01:28 | |
*** Ruetobas has quit IRC | 01:29 | |
*** Ruetobas has joined #openstack-dev | 01:30 | |
*** halfss has joined #openstack-dev | 01:31 | |
*** epim has quit IRC | 01:33 | |
*** epim has joined #openstack-dev | 01:34 | |
*** zbitter has joined #openstack-dev | 01:35 | |
*** zaneb has quit IRC | 01:39 | |
*** shang has joined #openstack-dev | 01:40 | |
devananda | matiu: ++ check at write. this creates a small race condition, but it's better than nothing. | 01:45 |
matiu | I'm just gonna add TODOs for it for now :) | 01:46 |
matiu | and | 01:46 |
matiu | and make it return a ',' delim'd list :) | 01:46 |
matiu | so I can get my review in .. | 01:46 |
matiu | thanks devananda and boris-42 though for the good advice :) | 01:47 |
boris-42 | matiu: np | 01:50 |
*** sandywalsh has quit IRC | 01:51 | |
*** adjohn has quit IRC | 01:57 | |
*** bencherian has quit IRC | 01:57 | |
*** alexpilotti has quit IRC | 01:57 | |
*** danwent has joined #openstack-dev | 02:01 | |
*** stevebaker has quit IRC | 02:05 | |
*** andrewbogott is now known as andrewbogott_afk | 02:06 | |
*** ewindisch has quit IRC | 02:11 | |
*** stevebaker has joined #openstack-dev | 02:15 | |
*** novas0x2a|laptop has quit IRC | 02:18 | |
*** Mandell has quit IRC | 02:23 | |
*** zhuadl has joined #openstack-dev | 02:27 | |
*** rkukura has joined #openstack-dev | 02:38 | |
openstackgerrit | A change was merged to openstack/cinder: Update EMC SMI-S iSCSI Driver https://review.openstack.org/19979 | 02:49 |
*** danwent has quit IRC | 02:49 | |
*** hattwick has quit IRC | 02:52 | |
*** jcmartin has quit IRC | 02:53 | |
*** esp has quit IRC | 02:54 | |
*** hattwick has joined #openstack-dev | 02:55 | |
*** Ryan_Lane has quit IRC | 02:58 | |
*** alexxu has joined #openstack-dev | 02:59 | |
*** anniec has quit IRC | 03:03 | |
*** otherwiseguy has joined #openstack-dev | 03:04 | |
*** gyee has quit IRC | 03:07 | |
*** vipul is now known as vipul|away | 03:08 | |
*** sacharya has joined #openstack-dev | 03:09 | |
*** vipul|away is now known as vipul | 03:12 | |
*** jog0 has quit IRC | 03:16 | |
*** pixelbeat has quit IRC | 03:22 | |
*** markmcclain has joined #openstack-dev | 03:24 | |
*** jog0 has joined #openstack-dev | 03:27 | |
*** jog0 has quit IRC | 03:27 | |
*** jog0 has joined #openstack-dev | 03:28 | |
*** epim has quit IRC | 03:28 | |
*** jimfehlig has quit IRC | 03:29 | |
*** jcmartin has joined #openstack-dev | 03:30 | |
*** stevebaker has quit IRC | 03:31 | |
*** ctracey|away has joined #openstack-dev | 03:33 | |
*** jog0 has quit IRC | 03:39 | |
*** jog0 has joined #openstack-dev | 03:40 | |
*** jog0 has left #openstack-dev | 03:40 | |
*** hillyu has joined #openstack-dev | 03:40 | |
*** mohits has joined #openstack-dev | 03:41 | |
*** melwitt has quit IRC | 03:47 | |
*** stevebaker has joined #openstack-dev | 03:49 | |
*** jimfehlig has joined #openstack-dev | 03:53 | |
openstackgerrit | A change was merged to openstack/nova: Fix double reboot issue during soft reboot https://review.openstack.org/19157 | 03:53 |
*** pabelanger has quit IRC | 03:57 | |
*** galthaus has joined #openstack-dev | 03:58 | |
*** monst___ has joined #openstack-dev | 04:00 | |
*** bdpayne has quit IRC | 04:06 | |
*** halfss has quit IRC | 04:06 | |
*** zhuadl has quit IRC | 04:06 | |
*** rpedde_away is now known as rpedde | 04:08 | |
*** Mandell has joined #openstack-dev | 04:12 | |
*** Mandell has quit IRC | 04:14 | |
*** Mandell has joined #openstack-dev | 04:15 | |
*** Mandell_ has joined #openstack-dev | 04:16 | |
*** Mandell has quit IRC | 04:16 | |
*** bdpayne has joined #openstack-dev | 04:16 | |
*** acemid has quit IRC | 04:16 | |
*** bencherian has joined #openstack-dev | 04:19 | |
*** anniec has joined #openstack-dev | 04:20 | |
*** bencherian has quit IRC | 04:20 | |
*** boris-42 has quit IRC | 04:23 | |
*** acemid has joined #openstack-dev | 04:29 | |
*** mohits has quit IRC | 04:32 | |
*** megha has quit IRC | 04:34 | |
*** acemid has quit IRC | 04:35 | |
*** acemid has joined #openstack-dev | 04:36 | |
*** markmcclain has quit IRC | 04:36 | |
*** esp has joined #openstack-dev | 04:39 | |
*** melwitt has joined #openstack-dev | 04:40 | |
*** acemid has quit IRC | 04:40 | |
*** acemid has joined #openstack-dev | 04:41 | |
*** melwitt1 has joined #openstack-dev | 04:41 | |
*** mohits has joined #openstack-dev | 04:43 | |
*** melwitt has quit IRC | 04:44 | |
*** maurosr has quit IRC | 04:45 | |
*** monst___ has quit IRC | 04:45 | |
*** acemid has quit IRC | 04:45 | |
*** thingee_zzz is now known as thingee | 04:45 | |
*** acemid has joined #openstack-dev | 04:46 | |
*** anniec has quit IRC | 04:48 | |
*** hemna has quit IRC | 04:48 | |
*** navid has joined #openstack-dev | 04:48 | |
*** acemid has quit IRC | 04:53 | |
*** megha has joined #openstack-dev | 04:54 | |
*** acemid has joined #openstack-dev | 04:55 | |
*** halfss has joined #openstack-dev | 05:02 | |
*** acemid has quit IRC | 05:02 | |
*** acemid has joined #openstack-dev | 05:03 | |
*** jcmartin has quit IRC | 05:05 | |
*** Tross has quit IRC | 05:10 | |
*** jimfehlig has quit IRC | 05:11 | |
*** pfreund has joined #openstack-dev | 05:14 | |
*** darjeeling has quit IRC | 05:20 | |
*** megha has quit IRC | 05:20 | |
*** Tross has joined #openstack-dev | 05:21 | |
*** acemid has quit IRC | 05:22 | |
*** melwitt1 has quit IRC | 05:24 | |
*** zhuadl has joined #openstack-dev | 05:25 | |
*** thingee is now known as thingee_zzz | 05:31 | |
*** esp has left #openstack-dev | 05:31 | |
*** blamar has quit IRC | 05:31 | |
*** melwitt has joined #openstack-dev | 05:35 | |
*** tserong has quit IRC | 05:39 | |
*** almaisan-away is now known as al-maisan | 05:40 | |
*** blamar has joined #openstack-dev | 05:41 | |
*** tserong has joined #openstack-dev | 05:42 | |
*** al-maisan is now known as almaisan-away | 05:42 | |
openstackgerrit | A change was merged to openstack/cinder: Fix hosts extension and enable its tests https://review.openstack.org/20411 | 05:50 |
*** adjohn has joined #openstack-dev | 05:52 | |
*** sacharya has quit IRC | 05:53 | |
*** nunosantos has quit IRC | 05:54 | |
*** Tross has quit IRC | 05:55 | |
afazekas | mlavalle: 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-dev | 06:09 | |
*** blamar has quit IRC | 06:10 | |
*** danwent has joined #openstack-dev | 06:12 | |
*** darjeeling has joined #openstack-dev | 06:13 | |
*** koolhead17 has quit IRC | 06:15 | |
*** donaldngo has joined #openstack-dev | 06:16 | |
*** bdpayne has quit IRC | 06:18 | |
*** zaitcev has quit IRC | 06:23 | |
*** donaldngo has quit IRC | 06:26 | |
*** donaldngo has joined #openstack-dev | 06:26 | |
*** koolhead17 has joined #openstack-dev | 06:28 | |
*** boris-42 has joined #openstack-dev | 06:35 | |
*** koolhead17 has quit IRC | 06:35 | |
*** danwent has quit IRC | 06:39 | |
*** avishay has quit IRC | 06:42 | |
*** rpedde is now known as rpedde_away | 06:43 | |
*** topol has quit IRC | 06:44 | |
*** afazekas is now known as afazekas_ | 06:44 | |
*** avishay has joined #openstack-dev | 06:52 | |
*** megha has joined #openstack-dev | 06:55 | |
*** danwent has joined #openstack-dev | 06:56 | |
*** acemid has joined #openstack-dev | 06:56 | |
*** ondergetekende has quit IRC | 06:56 | |
*** acemid has quit IRC | 07:01 | |
*** alobbs has joined #openstack-dev | 07:03 | |
*** zeriouz has quit IRC | 07:14 | |
*** mindpixel has joined #openstack-dev | 07:14 | |
*** armaan has joined #openstack-dev | 07:16 | |
*** armaan has left #openstack-dev | 07:18 | |
*** melwitt has quit IRC | 07:20 | |
*** yolanda has joined #openstack-dev | 07:20 | |
*** ondergetekende has joined #openstack-dev | 07:24 | |
*** matiu has quit IRC | 07:25 | |
*** henrynash has joined #openstack-dev | 07:25 | |
*** danwent has quit IRC | 07:28 | |
*** mrunge has joined #openstack-dev | 07:29 | |
*** armaan has joined #openstack-dev | 07:30 | |
*** alop has quit IRC | 07:35 | |
*** Ryan_Lane has joined #openstack-dev | 07:36 | |
*** burris has quit IRC | 07:44 | |
*** henrynash has quit IRC | 07:45 | |
*** shang has quit IRC | 07:47 | |
*** douardda has joined #openstack-dev | 07:47 | |
openstackgerrit | A change was merged to openstack/keystone: Fix pep8 error. https://review.openstack.org/20442 | 07:48 |
*** acemid has joined #openstack-dev | 07:48 | |
*** afazekas has joined #openstack-dev | 07:49 | |
*** navid has quit IRC | 07:50 | |
*** matiu has joined #openstack-dev | 07:53 | |
*** matiu has quit IRC | 07:53 | |
*** matiu has joined #openstack-dev | 07:53 | |
*** acemid has quit IRC | 07:53 | |
*** corXi has joined #openstack-dev | 07:53 | |
*** acemid has joined #openstack-dev | 07:53 | |
*** acemid has quit IRC | 07:53 | |
*** acemid has joined #openstack-dev | 07:54 | |
*** darjeeling has quit IRC | 07:54 | |
*** EmilienM has joined #openstack-dev | 07:54 | |
*** reidrac has joined #openstack-dev | 07:55 | |
*** acemid has quit IRC | 07:55 | |
*** acemid has joined #openstack-dev | 07:56 | |
*** amotoki has joined #openstack-dev | 07:56 | |
*** jaypipes has quit IRC | 07:56 | |
*** morganfainberg has quit IRC | 07:57 | |
*** darjeeling has joined #openstack-dev | 07:58 | |
*** rafaduran has joined #openstack-dev | 08:00 | |
*** darjeeling has quit IRC | 08:02 | |
*** brucer has quit IRC | 08:06 | |
*** acemid78 has joined #openstack-dev | 08:08 | |
*** jaypipes has joined #openstack-dev | 08:08 | |
*** eglynn has joined #openstack-dev | 08:09 | |
sgran | hello | 08:19 |
*** koolhead17 has joined #openstack-dev | 08:19 | |
sgran | I have a review at https://review.openstack.org/#/c/20412/ that I would appreciate feedback on | 08:19 |
*** zhuadl has quit IRC | 08:20 | |
sgran | I 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 it | 08:20 |
lifeless | looks interesting; if you don't have feedback tomorrowish I'll try to get to it then | 08:20 |
lifeless | [its too late, and i have too much writing to do, to do so now no matter how interesting] | 08:21 |
sgran | that's great, thanks :) | 08:22 |
*** halfss has quit IRC | 08:22 | |
*** halfss has joined #openstack-dev | 08:24 | |
*** mmagr has joined #openstack-dev | 08:27 | |
*** navid has joined #openstack-dev | 08:31 | |
*** Mandell_ has quit IRC | 08:35 | |
*** acemid78 has quit IRC | 08:39 | |
*** morganfainberg has joined #openstack-dev | 08:41 | |
*** acemid78 has joined #openstack-dev | 08:44 | |
*** pfreund has quit IRC | 08:45 | |
*** pfreund has joined #openstack-dev | 08:46 | |
*** navid has quit IRC | 08:52 | |
*** winston-d_ has quit IRC | 08:56 | |
*** yjiang5_away is now known as yjiang5 | 09:00 | |
*** jpich has joined #openstack-dev | 09:01 | |
*** Ryan_Lane has quit IRC | 09:03 | |
*** navid has joined #openstack-dev | 09:12 | |
*** derekh has joined #openstack-dev | 09:14 | |
*** armaan has left #openstack-dev | 09:15 | |
*** mohits has quit IRC | 09:16 | |
*** pfreund has quit IRC | 09:17 | |
*** e1mer has quit IRC | 09:18 | |
*** \etc\bin has joined #openstack-dev | 09:18 | |
*** anniec has joined #openstack-dev | 09:23 | |
*** mohits has joined #openstack-dev | 09:27 | |
*** mnewby has quit IRC | 09:28 | |
*** pfreund has joined #openstack-dev | 09:31 | |
*** henrynash has joined #openstack-dev | 09:31 | |
*** darraghb has joined #openstack-dev | 09:31 | |
*** shardy_afk is now known as shardy | 09:33 | |
*** anniec has quit IRC | 09:36 | |
*** anniec has joined #openstack-dev | 09:36 | |
*** alexxu has quit IRC | 09:41 | |
*** almaisan-away has quit IRC | 09:42 | |
*** zbitter is now known as zaneb | 09:42 | |
*** almaisan-away has joined #openstack-dev | 09:43 | |
*** almaisan-away is now known as al-maisan | 09:43 | |
*** ondergetekende has quit IRC | 09:45 | |
*** negronjl has quit IRC | 09:51 | |
*** ijw has joined #openstack-dev | 09:56 | |
*** negronjl has joined #openstack-dev | 10:00 | |
*** gongysh has quit IRC | 10:09 | |
*** adjohn has quit IRC | 10:17 | |
*** pixelbeat has joined #openstack-dev | 10:23 | |
*** adjohn has joined #openstack-dev | 10:27 | |
*** \etc\bin has quit IRC | 10:30 | |
*** danpb has joined #openstack-dev | 10:30 | |
*** pfreund has quit IRC | 10:44 | |
*** corXi has quit IRC | 10:45 | |
*** salv-orlando has joined #openstack-dev | 10:45 | |
*** corXi has joined #openstack-dev | 10:45 | |
*** vkmc has joined #openstack-dev | 10:48 | |
*** xchu has quit IRC | 10:50 | |
*** xchu has joined #openstack-dev | 10:51 | |
*** xchu has quit IRC | 10:53 | |
*** al-maisan is now known as almaisan-away | 10:57 | |
*** yjiang5 is now known as yjiang5_away | 11:00 | |
*** adalbas has joined #openstack-dev | 11:03 | |
*** halfss has quit IRC | 11:12 | |
openstackgerrit | A change was merged to openstack/python-quantumclient: Exception should raise with status code https://review.openstack.org/20302 | 11:15 |
*** mindpixel has quit IRC | 11:22 | |
*** tserong has quit IRC | 11:23 | |
*** topol has joined #openstack-dev | 11:33 | |
*** tserong has joined #openstack-dev | 11:34 | |
*** tserong has quit IRC | 11:34 | |
*** tserong has joined #openstack-dev | 11:34 | |
*** arbrandes has joined #openstack-dev | 11:35 | |
*** zeriouz has joined #openstack-dev | 11:35 | |
*** mohits has quit IRC | 11:42 | |
*** vkmc_ has joined #openstack-dev | 11:47 | |
*** vkmc has quit IRC | 11:48 | |
*** vkmc_ is now known as vkmc | 11:48 | |
*** alexpilotti has joined #openstack-dev | 11:50 | |
*** zbitter has joined #openstack-dev | 11:50 | |
*** pfreund has joined #openstack-dev | 11:50 | |
*** gongysh has joined #openstack-dev | 11:50 | |
*** gongysh has quit IRC | 11:51 | |
*** gongysh has joined #openstack-dev | 11:52 | |
*** mindpixel has joined #openstack-dev | 11:52 | |
*** zaneb has quit IRC | 11:52 | |
*** zbitter is now known as zaneb | 11:53 | |
openstackgerrit | A change was merged to openstack/nova: Avoid stuck task_state on snapshot image failure https://review.openstack.org/20246 | 11:53 |
*** gongysh has quit IRC | 11:54 | |
jpich | Launchpad 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-dev | 11:55 | |
danpb | jpich: see this page http://wiki.openstack.org/StableBranch#Proposing_Fixes | 12:07 |
danpb | basically just nominating the bug for folsom is sufficient according to that page | 12:07 |
danpb | but you can explicitly submit the patch for the patch yourself if desired | 12:07 |
*** anniec has quit IRC | 12:11 | |
*** ewindisch has quit IRC | 12:11 | |
*** gongysh has quit IRC | 12:11 | |
*** anniec has joined #openstack-dev | 12:13 | |
*** anniec has quit IRC | 12:13 | |
*** anniec has joined #openstack-dev | 12:14 | |
*** markmc has joined #openstack-dev | 12:14 | |
*** boris-42 has quit IRC | 12:20 | |
*** koolhead17 has quit IRC | 12:26 | |
*** adjohn has quit IRC | 12:28 | |
*** markvoelker has quit IRC | 12:29 | |
*** navid has quit IRC | 12:30 | |
*** markvoelker has joined #openstack-dev | 12:31 | |
*** salv-orlando has quit IRC | 12:31 | |
*** johngarbutt has joined #openstack-dev | 12:37 | |
*** maurosr_mob has joined #openstack-dev | 12:40 | |
*** adepti37 has quit IRC | 12:41 | |
*** sthaha has quit IRC | 12:41 | |
*** adepti37 has joined #openstack-dev | 12:42 | |
*** imsplitbit has joined #openstack-dev | 12:42 | |
*** boden has joined #openstack-dev | 12:43 | |
*** maurosr_mob has quit IRC | 12:51 | |
*** maurosr has joined #openstack-dev | 12:52 | |
*** xchu has joined #openstack-dev | 12:52 | |
*** martine has joined #openstack-dev | 12:53 | |
*** Tross has joined #openstack-dev | 12:58 | |
jpich | danpb: Thanks! I did submit a patch, I was hoping to set up Launchpad to track it with my new bug supervisor superpowers | 13:01 |
*** jog0 has joined #openstack-dev | 13:04 | |
*** pabelanger has joined #openstack-dev | 13:05 | |
jpich | markmc: 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 |
markmc | jpich, just folsom | 13:06 |
*** pabelanger has quit IRC | 13:06 | |
*** maurosr has quit IRC | 13:06 | |
*** AndChat|396416 has joined #openstack-dev | 13:06 | |
markmc | jpich, grizzly is tracked by the main task | 13:06 |
jpich | markmc: Ok, it wasn't clear to me if the master branch status information would be lost when only selecting Folsom. Thanks! | 13:07 |
markmc | jpich, np :) | 13:07 |
*** navid has joined #openstack-dev | 13:07 | |
*** AndChat|396416 has quit IRC | 13:07 | |
*** maurosr has joined #openstack-dev | 13:07 | |
*** maurosr has quit IRC | 13:22 | |
*** mdomsch has quit IRC | 13:22 | |
*** anniec has quit IRC | 13:22 | |
*** pabelanger has joined #openstack-dev | 13:25 | |
*** alunduil has quit IRC | 13:28 | |
*** jog0 has quit IRC | 13:29 | |
*** radez_g0n3 is now known as radez | 13:31 | |
*** maurosr_ has joined #openstack-dev | 13:32 | |
*** hillyu has left #openstack-dev | 13:32 | |
*** flaper87 has joined #openstack-dev | 13:35 | |
*** galthaus has quit IRC | 13:37 | |
*** maurosr_ has quit IRC | 13:39 | |
*** mjfork has joined #openstack-dev | 13:40 | |
*** navid has quit IRC | 13:40 | |
*** dims_ has quit IRC | 13:40 | |
*** ijw has quit IRC | 13:41 | |
*** ijw has joined #openstack-dev | 13:43 | |
*** maurosr_ has joined #openstack-dev | 13:43 | |
*** salv-orlando has joined #openstack-dev | 13:46 | |
*** ewindisch has joined #openstack-dev | 13:49 | |
*** dims has joined #openstack-dev | 13:50 | |
*** martines has quit IRC | 13:54 | |
*** ladquin_brb has joined #openstack-dev | 13:57 | |
*** ladquin_brb is now known as ladquin | 13:57 | |
*** anteaya has joined #openstack-dev | 13:59 | |
*** pfreund has quit IRC | 14:00 | |
*** mdomsch has joined #openstack-dev | 14:04 | |
*** mawagon1 has joined #openstack-dev | 14:06 | |
*** bknudson has joined #openstack-dev | 14:07 | |
*** olaph has quit IRC | 14:08 | |
*** maurosr_ has quit IRC | 14:10 | |
*** roaet is now known as roaet-away | 14:10 | |
*** bknudson1 has joined #openstack-dev | 14:12 | |
*** otherwiseguy has quit IRC | 14:13 | |
*** bknudson has quit IRC | 14:14 | |
*** maurosr_ has joined #openstack-dev | 14:15 | |
*** pabelanger is now known as nubbie | 14:15 | |
*** roaet-away is now known as roaet | 14:15 | |
*** blamar has joined #openstack-dev | 14:16 | |
*** maurosr_ has quit IRC | 14:16 | |
*** anteaya has quit IRC | 14:16 | |
*** avishay has quit IRC | 14:20 | |
*** alunduil has joined #openstack-dev | 14:21 | |
*** anteaya has joined #openstack-dev | 14:22 | |
*** hillyu has joined #openstack-dev | 14:23 | |
*** russellb is now known as rustlebee | 14:25 | |
*** gongysh has joined #openstack-dev | 14:25 | |
*** alunduil has quit IRC | 14:28 | |
*** bnemec has joined #openstack-dev | 14:28 | |
*** bnemec is now known as Guest22773 | 14:29 | |
*** koolhead17 has joined #openstack-dev | 14:29 | |
*** alunduil has joined #openstack-dev | 14:29 | |
*** joesavak has joined #openstack-dev | 14:29 | |
*** almaisan-away is now known as al-maisan | 14:30 | |
*** jcru has joined #openstack-dev | 14:31 | |
*** bswartz has quit IRC | 14:31 | |
*** blamar has quit IRC | 14:33 | |
*** maurosr_ has joined #openstack-dev | 14:35 | |
*** dolphm has joined #openstack-dev | 14:35 | |
*** maurosr_ has quit IRC | 14:36 | |
*** sandywalsh has joined #openstack-dev | 14:37 | |
*** burris has joined #openstack-dev | 14:39 | |
garyk | amotoki: ping | 14:39 |
*** cloudchimp has joined #openstack-dev | 14:39 | |
*** eharney has joined #openstack-dev | 14:41 | |
*** alobbs1 has joined #openstack-dev | 14:41 | |
*** dolphm has quit IRC | 14:41 | |
*** alobbs has quit IRC | 14:42 | |
*** koolhead17 has quit IRC | 14:45 | |
*** zing has joined #openstack-dev | 14:45 | |
*** arbrandes has quit IRC | 14:47 | |
*** mtreinish has joined #openstack-dev | 14:49 | |
*** winston-d_ has joined #openstack-dev | 14:50 | |
*** bknudson1 has left #openstack-dev | 14:51 | |
*** acemid has quit IRC | 14:52 | |
*** burris has quit IRC | 14:53 | |
*** burris has joined #openstack-dev | 14:53 | |
*** rnirmal has joined #openstack-dev | 14:56 | |
*** danwent has joined #openstack-dev | 14:57 | |
*** galthaus has joined #openstack-dev | 14:57 | |
*** koolhead17 has joined #openstack-dev | 14:57 | |
*** jimfehlig has joined #openstack-dev | 14:57 | |
*** garyTh has joined #openstack-dev | 14:58 | |
*** rpedde_away is now known as rpedde | 15:00 | |
*** aeperezt has joined #openstack-dev | 15:00 | |
*** NobodyCam_brb is now known as NobodyCam | 15:04 | |
sstent | anyone know the current state of the RBAC implementation for horizon? | 15:04 |
*** arbrandes has joined #openstack-dev | 15:04 | |
jpich | sstent: I think it's been bumped out of grizzly because it's blocked waiting on keystone for now | 15:05 |
*** mrodden has joined #openstack-dev | 15:05 | |
jpich | sstent: https://blueprints.launchpad.net/horizon/+spec/rbac | 15:07 |
*** acemid has joined #openstack-dev | 15:07 | |
*** acemid has quit IRC | 15:08 | |
*** dosaboy has joined #openstack-dev | 15:08 | |
*** acemid has joined #openstack-dev | 15:08 | |
*** maoy has joined #openstack-dev | 15:08 | |
*** yaguang has joined #openstack-dev | 15:09 | |
*** maurosr_ has joined #openstack-dev | 15:10 | |
*** blamar has joined #openstack-dev | 15:10 | |
*** k3rn has quit IRC | 15:11 | |
*** al-maisan is now known as almaisan-away | 15:11 | |
*** burris has quit IRC | 15:11 | |
*** salgado is now known as salgado-lunch | 15:13 | |
*** maurosr_ has quit IRC | 15:13 | |
sstent | jpich: cool, thanks | 15:13 |
jpich | sstent: yw | 15:13 |
*** joe5081 has joined #openstack-dev | 15:14 | |
openstackgerrit | A change was merged to openstack/tempest: update whitebox testing for deleted type change https://review.openstack.org/20391 | 15:15 |
*** markmcclain has joined #openstack-dev | 15:16 | |
*** alobbs has joined #openstack-dev | 15:16 | |
*** dolphm has joined #openstack-dev | 15:16 | |
ayoung | jaypipes, does the sqlalchemy migration scripts automatically commit transactions? And, if so, when? | 15:16 |
*** alobbs1 has quit IRC | 15:17 | |
jaypipes | ayoung: depends on the underlying db | 15:17 |
jaypipes | ayoung: for Mysql, DDL always triggers a commit of any DML statements in the current session. | 15:17 |
*** jcru has quit IRC | 15:18 | |
jaypipes | ayoung: for PostgreSQL, not sure, but I believe the entire things is attempted in a single transaction | 15:18 |
ayoung | jaypipes, I think that the renames need a transaction. | 15:18 |
ayoung | at least for sqlite | 15:18 |
ayoung | will that mess things up for the other RDBMS? | 15:19 |
*** joe5081 has quit IRC | 15:19 | |
jaypipes | ayoung: shouldn't, no. | 15:20 |
*** pmyers has quit IRC | 15:20 | |
jaypipes | ayoung: since both PG and MySQL support renames... sqlite doesn't. | 15:20 |
*** pmyers has joined #openstack-dev | 15:21 | |
*** jcru has joined #openstack-dev | 15:23 | |
*** yaguang has quit IRC | 15:24 | |
ayoung | http://www.sqlite.org/lang_altertable.html jaypipes looks like it should support renames | 15:26 |
jaypipes | ayoung: perhaps I am thinking of a different DDL statement then... maybe MODIFY COLUMN? | 15:27 |
*** darjeeling has joined #openstack-dev | 15:28 | |
*** monst___ has joined #openstack-dev | 15:28 | |
*** TerryH has joined #openstack-dev | 15:29 | |
*** arbrandes has quit IRC | 15:30 | |
*** rnirmal has quit IRC | 15:30 | |
*** jog0 has joined #openstack-dev | 15:30 | |
ayoung | jaypipes, yes, you can't delete or rename columns in sqlite | 15:30 |
*** rnirmal has joined #openstack-dev | 15:31 | |
*** annegentle has joined #openstack-dev | 15:32 | |
*** rnirmal has quit IRC | 15:33 | |
*** reed has joined #openstack-dev | 15:33 | |
*** rnirmal has joined #openstack-dev | 15:33 | |
*** cp16net is now known as cp16net|away | 15:33 | |
*** sacharya has joined #openstack-dev | 15:35 | |
*** sdake has joined #openstack-dev | 15:35 | |
*** gael_ has joined #openstack-dev | 15:37 | |
*** danwent has quit IRC | 15:37 | |
*** salgado-lunch is now known as salgado | 15:37 | |
maoy | is novnc on devstack broken? | 15:38 |
*** salgado has quit IRC | 15:38 | |
*** salgado has joined #openstack-dev | 15: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 |
maoy | Traceback (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 |
maoy | AttributeError: 'module' object has no attribute 'websocketproxy' | 15:38 |
mjfork | I 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 cp16net | 15:39 | |
*** sdake has quit IRC | 15:39 | |
*** thingee_zzz is now known as thingee | 15:40 | |
*** afazekas has quit IRC | 15:40 | |
*** bswartz has joined #openstack-dev | 15:40 | |
*** sdake has joined #openstack-dev | 15:42 | |
dims | maoy, see https://review.openstack.org/#/c/20477/ | 15:45 |
sdague | mjfork: is the code that causes the issue in the review? | 15:45 |
maoy | dims: thanks.. | 15:45 |
mjfork | sdague: no, its new code. | 15:46 |
mjfork | sdague: i can paste bin | 15:46 |
sdague | yeh, do that, I'll see if I can see something | 15:46 |
maoy | dims: i wish i could made two +2s right away. :D | 15:46 |
mjfork | sdague: http://paste.openstack.org/show/29831/ | 15:46 |
*** jcru has quit IRC | 15:47 | |
*** mmagr has quit IRC | 15:47 | |
*** jcru has joined #openstack-dev | 15:48 | |
sdague | mjfork: a failed pop isn't going to be a KeyError is it? | 15:48 |
*** acemid has quit IRC | 15:48 | |
mjfork | sdague: yes, i looked it up. | 15:48 |
*** acemid has joined #openstack-dev | 15:48 | |
mjfork | s.pop(): remove and return an arbitrary element from s; raises KeyError if empty | 15:49 |
*** xchu has quit IRC | 15:49 | |
sdague | ok, yeh | 15:49 |
*** Mandell has joined #openstack-dev | 15:51 | |
*** sacharya has quit IRC | 15:51 | |
*** annegentle is now known as agentp | 15:52 | |
*** agentp is now known as agentlee | 15:52 | |
*** anteaya is now known as anteaya-ya | 15:52 | |
*** radez is now known as radez_g0n3 | 15:52 | |
dims | maoy, lol :) | 15:52 |
*** markvoelker has quit IRC | 15:53 | |
winston-d_ | markmc: ping | 15:53 |
*** psedlak has quit IRC | 15:53 | |
sdague | mjfork: ok, you have to except Exception: to be able to trigger the raise I'm pretty sure | 15:54 |
mjfork | sda tried that, same error | 15:54 |
mjfork | sdague: ^ | 15:54 |
*** bknudson has joined #openstack-dev | 15:56 | |
*** markvoelker has joined #openstack-dev | 15:56 | |
sdague | yeh, sorry, someone with more python fu might be required | 15:58 |
openstackgerrit | A change was merged to openstack/quantum: Fix InvalidContentType can't be raised because of error in constructor https://review.openstack.org/20400 | 15:58 |
*** henrynash has quit IRC | 15:59 | |
*** henrynash has joined #openstack-dev | 16:00 | |
*** jcru is now known as jcru|away | 16:02 | |
*** jcru|away is now known as jcru | 16:03 | |
*** henrynash has quit IRC | 16:04 | |
*** mmagr has joined #openstack-dev | 16:05 | |
*** yaguang has joined #openstack-dev | 16:05 | |
*** reidrac has left #openstack-dev | 16:08 | |
*** aloga has quit IRC | 16:09 | |
*** pandemicsyn has left #openstack-dev | 16:10 | |
flaper87 | Any oslo reviewer around that can take a look here? https://review.openstack.org/#/c/20393/ thanks | 16:12 |
*** john5223 has joined #openstack-dev | 16:14 | |
*** markvoelker1 has joined #openstack-dev | 16:14 | |
ayoung | jaypipes, 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 |
ayoung | So for checking if a table exists, we'll do | 16:14 |
ayoung | self.engine.execute("select count(*) from '%s'" % table_name) | 16:14 |
ayoung | instead of the above | 16:14 |
eglynn | bcwaldon, ameade_: I'd appreciate a quick turnaround on this fix: https://review.openstack.org/#/q/Id601816735e4138cd7623dad4d90be67448292c8,n,z | 16:14 |
*** markvoelker has quit IRC | 16:15 | |
*** vkmc has quit IRC | 16:15 | |
mjfork | sdague: i got it to work: https://review.openstack.org/#/c/20280/5/nova/network/manager.py | 16:15 |
mjfork | lifeless: https://review.openstack.org/#/c/20280/5 | 16:16 |
*** vkmc has joined #openstack-dev | 16:16 | |
*** woodspa has joined #openstack-dev | 16:16 | |
*** devoid has joined #openstack-dev | 16:16 | |
*** vkmc is now known as vicks | 16:17 | |
*** thingee is now known as thingee_zzz | 16:19 | |
*** edmund has joined #openstack-dev | 16:20 | |
*** sacharya has joined #openstack-dev | 16:21 | |
*** cloudchimp has quit IRC | 16:22 | |
*** thingee_zzz is now known as thingee | 16:24 | |
*** arbrandes has joined #openstack-dev | 16:25 | |
*** martine has quit IRC | 16:27 | |
*** radez_g0n3 is now known as radez | 16:28 | |
*** vicks has quit IRC | 16:28 | |
openstackgerrit | A change was merged to openstack/python-openstackclient: Fix test runner run_tests.sh is broken https://review.openstack.org/20468 | 16:29 |
*** afazekas_ is now known as afazekas | 16:31 | |
*** ijw has quit IRC | 16:31 | |
*** imsplitbit has quit IRC | 16:32 | |
*** mmagr has quit IRC | 16:32 | |
*** eharney has quit IRC | 16:34 | |
*** hattwick has quit IRC | 16:34 | |
*** jcmartin has joined #openstack-dev | 16:35 | |
*** bdpayne has joined #openstack-dev | 16:36 | |
*** adjohn has joined #openstack-dev | 16:36 | |
*** hattwick has joined #openstack-dev | 16:37 | |
*** armaan1 has joined #openstack-dev | 16:38 | |
matiu | I'm trying to write a test for a nova admin api thing for services | 16:38 |
matiu | but 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.json | 16:39 |
matiu | is there like a special one created or something at testing ? | 16:39 |
*** gongysh has quit IRC | 16:40 | |
*** acemid has quit IRC | 16:40 | |
*** adjohn has quit IRC | 16:40 | |
*** vicks has joined #openstack-dev | 16:41 | |
*** AnilV4 has quit IRC | 16:42 | |
sdague | matiu: yes, there is a special one for test | 16:42 |
*** e1mer has joined #openstack-dev | 16:43 | |
matiu | sdague, where abouts in the source is it generated ? | 16:43 |
sdague | look at nova/test/fake_policy.py | 16:43 |
matiu | thanks sdague :) | 16:43 |
*** wu_wenxiang has joined #openstack-dev | 16:44 | |
*** kbringard has joined #openstack-dev | 16:47 | |
*** acemid has joined #openstack-dev | 16:47 | |
*** corXi has quit IRC | 16:48 | |
*** gyee has joined #openstack-dev | 16:50 | |
*** esheffield has joined #openstack-dev | 16:50 | |
*** acemid has quit IRC | 16:51 | |
*** maurosr has joined #openstack-dev | 16:53 | |
flaper87 | dhellmann: ping | 16:54 |
flaper87 | dhellmann: 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-dev | 16:55 | |
flaper87 | dhellmann: thank you very much | 16:55 |
*** donaldngo has quit IRC | 16:58 | |
wu_wenxiang | Could any nova developer help to review: https://review.openstack.org/#/c/20489/. Thank you very much! | 16:59 |
*** mdomsch has quit IRC | 16:59 | |
*** crandquist has joined #openstack-dev | 17:00 | |
*** jcmartin has quit IRC | 17:01 | |
*** vishy_zz is now known as vishy | 17:01 | |
*** acemid has joined #openstack-dev | 17:01 | |
*** mindpixel has quit IRC | 17:03 | |
*** bencherian has joined #openstack-dev | 17:03 | |
*** cloudchimp has joined #openstack-dev | 17:03 | |
*** esheffield has quit IRC | 17:04 | |
*** devoid has quit IRC | 17:04 | |
*** markvoelker has joined #openstack-dev | 17:04 | |
*** esheffield has joined #openstack-dev | 17:04 | |
*** devoid has joined #openstack-dev | 17:04 | |
*** markvoelker1 has quit IRC | 17:05 | |
*** acemid has quit IRC | 17:06 | |
*** esheffield1 has joined #openstack-dev | 17:06 | |
*** blamar has quit IRC | 17:06 | |
*** esheffield has quit IRC | 17:07 | |
*** hemnafk is now known as hemna | 17:08 | |
*** david-lyle has joined #openstack-dev | 17:08 | |
*** gael_ has quit IRC | 17:09 | |
*** mnewby has joined #openstack-dev | 17:10 | |
*** mlavalle has joined #openstack-dev | 17:10 | |
*** douardda has quit IRC | 17:10 | |
wu_wenxiang | Again, Beg you any nova developer help to review: https://review.openstack.org/#/c/20489/. Thank you very much! | 17:11 |
*** danwent has joined #openstack-dev | 17:13 | |
*** esheffield1 has quit IRC | 17:13 | |
*** acemid has joined #openstack-dev | 17:15 | |
*** Ryan_Lane has joined #openstack-dev | 17:16 | |
*** henrynash has joined #openstack-dev | 17:21 | |
matiu | is it normal to push up reviews when you know they're not ready ? | 17:24 |
matiu | just to get the ball rolling ? | 17:24 |
matiu | or should I make it draft/private .. | 17:25 |
jk0 | you can mark them as drafts or work in progress | 17:25 |
*** vishy is now known as vishy_zz | 17:25 | |
matiu | ah just like put it in the commit message ? | 17:26 |
matiu | thanks jk0 | 17:26 |
jk0 | tbh, 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 |
jk0 | I think it is done in the commit msg though | 17:26 |
*** stevemar has joined #openstack-dev | 17:28 | |
*** esheffield has joined #openstack-dev | 17:29 | |
*** Ryan_Lane has quit IRC | 17:29 | |
bknudson | 'If your code is not ready for review, click "Work in Progress" ...' | 17:31 |
bknudson | http://wiki.openstack.org/GerritWorkflow | 17:31 |
*** jcmartin has joined #openstack-dev | 17:32 | |
*** devoid has quit IRC | 17:32 | |
*** devoid has joined #openstack-dev | 17:33 | |
*** vishy_zz is now known as vishy | 17:34 | |
*** radez is now known as radez_g0n3 | 17:35 | |
*** ewindisch has quit IRC | 17:37 | |
*** esp1 has joined #openstack-dev | 17:40 | |
*** derekh has quit IRC | 17:40 | |
*** lauraglendenning has joined #openstack-dev | 17:42 | |
*** vishy is now known as vishy_zz | 17:44 | |
*** megha has quit IRC | 17:45 | |
*** ctracey|away is now known as ctracey | 17:47 | |
*** devoid has quit IRC | 17:50 | |
*** otherwiseguy has joined #openstack-dev | 17:50 | |
*** arbrandes has quit IRC | 17:50 | |
*** imsplitbit has joined #openstack-dev | 17:52 | |
*** vishy_zz is now known as vishy | 17:52 | |
*** Ryan_Lane has joined #openstack-dev | 17:54 | |
*** adjohn has joined #openstack-dev | 17:56 | |
*** shardy is now known as shardy_afk | 17:59 | |
*** epim has joined #openstack-dev | 17:59 | |
*** cdub_ has joined #openstack-dev | 17:59 | |
*** blamar has joined #openstack-dev | 17:59 | |
*** megha has joined #openstack-dev | 18:00 | |
*** andrewbogott_afk is now known as andrewbogott | 18:00 | |
*** epim_ has joined #openstack-dev | 18:02 | |
*** rafaduran has quit IRC | 18:02 | |
*** yidclare has joined #openstack-dev | 18:03 | |
*** epim has quit IRC | 18:03 | |
*** epim has joined #openstack-dev | 18:04 | |
*** epim has quit IRC | 18:04 | |
*** markmc has quit IRC | 18:04 | |
openstackgerrit | A change was merged to openstack/glance: Removed unncessary code https://review.openstack.org/20488 | 18:05 |
*** epim_ has quit IRC | 18:06 | |
davidkranz | mlavalle, afrittoli : Commits to tempest are now running (non-gating) gate-tempest-devstack-vm-quantum-full but it is failing. | 18:13 |
*** bswartz has quit IRC | 18:13 | |
davidkranz | Who should look into this? | 18:13 |
*** mjfork has quit IRC | 18:13 | |
*** bswartz has joined #openstack-dev | 18:13 | |
davidkranz | Here is a sample log: http://logs.openstack.org/20182/6/check/gate-tempest-devstack-vm-quantum-full/4/console.html.gz | 18:14 |
mlavalle | davidkranz: leaving for a meeting. will get back to you later in the afternoon | 18:15 |
davidkranz | mlavalle: k | 18:16 |
mlavalle | davidkranz: what's you time zone? I am in central | 18:16 |
davidkranz | mlavalle: eastern | 18:16 |
mlavalle | davidkranz: ;-) | 18:16 |
*** zing has quit IRC | 18:18 | |
openstackgerrit | A change was merged to openstack/nova: Fix bad imports that cause nova-novncproxy to fail https://review.openstack.org/20477 | 18:18 |
openstackgerrit | A change was merged to openstack/nova: Added sample tests to floating-ip-pools API. https://review.openstack.org/20344 | 18:18 |
openstackgerrit | A change was merged to openstack/nova: clean up api_samples documentation https://review.openstack.org/20494 | 18:18 |
*** devoid has joined #openstack-dev | 18:19 | |
*** vipul is now known as vipul|away | 18:19 | |
*** gugl has joined #openstack-dev | 18:19 | |
gugl | mordred: do you have any steps for setting up grizzly openstack not devstack? | 18:20 |
*** dosaboy has quit IRC | 18:20 | |
*** vipul|away is now known as vipul | 18:22 | |
*** darraghb has quit IRC | 18:22 | |
*** epim has joined #openstack-dev | 18:22 | |
*** dolphm has quit IRC | 18:24 | |
*** agentlee has quit IRC | 18:24 | |
*** bswartz has quit IRC | 18:24 | |
*** arbrandes has joined #openstack-dev | 18:24 | |
*** bswartz has joined #openstack-dev | 18:25 | |
*** dosaboy has joined #openstack-dev | 18:25 | |
*** vipul is now known as vipul|away | 18:25 | |
*** vipul|away is now known as vipul | 18:25 | |
*** bdpayne has quit IRC | 18:25 | |
*** henrynash has quit IRC | 18:26 | |
harlowja | bcwaldon: yt? got a horizon question | 18:27 |
*** armaan has joined #openstack-dev | 18:28 | |
*** acemid has quit IRC | 18:29 | |
*** bdpayne has joined #openstack-dev | 18:29 | |
*** acemid has joined #openstack-dev | 18:32 | |
*** armaan has quit IRC | 18:35 | |
*** acemid has quit IRC | 18:37 | |
*** andrewbogott is now known as andrewbogott_afk | 18:37 | |
*** EmilienM has left #openstack-dev | 18:37 | |
*** andrewbogott_afk is now known as andrewbogott | 18:38 | |
*** Ader has joined #openstack-dev | 18:38 | |
*** eharney has joined #openstack-dev | 18:39 | |
*** dolphm has joined #openstack-dev | 18:40 | |
*** vipul is now known as vipul|away | 18:40 | |
*** yaguang has quit IRC | 18:40 | |
*** devoid has quit IRC | 18:44 | |
*** armaan has joined #openstack-dev | 18:44 | |
*** devoid has joined #openstack-dev | 18:45 | |
*** yaguang has joined #openstack-dev | 18:45 | |
*** esheffield has quit IRC | 18:46 | |
*** acemid has joined #openstack-dev | 18:47 | |
*** ewindisch has joined #openstack-dev | 18:49 | |
*** acemid has quit IRC | 18:52 | |
*** armaan has quit IRC | 18:52 | |
*** yidclare has quit IRC | 18:53 | |
*** Ryan_Lane has quit IRC | 18:54 | |
mnewby | garyk: hi! | 18:55 |
*** yaguang has quit IRC | 18:58 | |
*** henrynash has joined #openstack-dev | 18:59 | |
*** armaan has joined #openstack-dev | 18:59 | |
*** acemid has joined #openstack-dev | 19:02 | |
*** yidclare has joined #openstack-dev | 19:04 | |
*** vicks has quit IRC | 19:06 | |
*** acemid has quit IRC | 19:06 | |
*** vkmc has joined #openstack-dev | 19:06 | |
*** morganfainberg has quit IRC | 19:07 | |
*** Gordonz has joined #openstack-dev | 19:08 | |
openstackgerrit | A change was merged to openstack/tempest: Credentials Configuration changes https://review.openstack.org/20182 | 19:09 |
*** henrynash has quit IRC | 19:10 | |
*** yaguang has joined #openstack-dev | 19:10 | |
doude | Hi, 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 |
doude | habitualy, I use set the topic nme with the branch name of my branch code on my local git | 19:11 |
*** cp16net is now known as cp16net|away | 19:11 | |
*** yaguang has quit IRC | 19:12 | |
doude | but I cannot set the same name to 2 different branches on my local git | 19:12 |
*** cp16net|away is now known as cp16net | 19:12 | |
bknudson | doude: git-review --topic TOPIC | 19:12 |
doude | bknudson: thanks a lot | 19:13 |
doude | bknudson: the topic git-review name doesn't depend on the branch name ? | 19:14 |
bknudson | doude: use git-review -nv --topic TOPIC and it will tell you what it's going to do. | 19:14 |
doude | bknudson: ok | 19:14 |
*** jpich has quit IRC | 19:15 | |
*** fesp has joined #openstack-dev | 19:15 | |
doude | bknudson: thanks | 19:15 |
bknudson | doude: np | 19:15 |
*** flaper87 has quit IRC | 19:16 | |
*** dosaboy has quit IRC | 19:17 | |
*** acemid has joined #openstack-dev | 19:17 | |
*** radez_g0n3 is now known as radez | 19:17 | |
*** bencherian has quit IRC | 19:18 | |
*** danpb has quit IRC | 19:18 | |
*** bencherian has joined #openstack-dev | 19:19 | |
*** bencherian has quit IRC | 19:20 | |
*** flaper87 has joined #openstack-dev | 19:20 | |
*** fesp has quit IRC | 19:21 | |
*** acemid has quit IRC | 19:21 | |
*** markmcclain has quit IRC | 19:29 | |
*** acemid has joined #openstack-dev | 19:31 | |
*** vipul|away is now known as vipul | 19:34 | |
*** markmcclain has joined #openstack-dev | 19:34 | |
*** salv-orlando_ has joined #openstack-dev | 19:34 | |
*** esp1 has quit IRC | 19:35 | |
*** douardda has joined #openstack-dev | 19:36 | |
*** Ryan_Lane has joined #openstack-dev | 19:36 | |
*** acemid has quit IRC | 19:36 | |
*** novas0x2a|laptop has joined #openstack-dev | 19:37 | |
*** mikal_ has joined #openstack-dev | 19:38 | |
*** salv-orlando_ has quit IRC | 19:40 | |
*** salv-orlando has quit IRC | 19:42 | |
*** mikal has quit IRC | 19:42 | |
openstackgerrit | A change was merged to openstack/nova: Enable N302: Import modules only https://review.openstack.org/20500 | 19:42 |
*** nubbie has quit IRC | 19:43 | |
*** esp1 has joined #openstack-dev | 19:44 | |
*** lauraglendenning has quit IRC | 19:45 | |
*** stevemar has quit IRC | 19:45 | |
*** acemid has joined #openstack-dev | 19:47 | |
*** techlife has quit IRC | 19:47 | |
*** techlife has joined #openstack-dev | 19:47 | |
*** devoid has quit IRC | 19:48 | |
*** techlife has joined #openstack-dev | 19:49 | |
*** bknudson has left #openstack-dev | 19:49 | |
*** bknudson has joined #openstack-dev | 19:49 | |
*** EmilienM has joined #openstack-dev | 19:49 | |
*** esheffield has joined #openstack-dev | 19:50 | |
*** techlife has joined #openstack-dev | 19:50 | |
*** acemid has quit IRC | 19:51 | |
*** techlife has joined #openstack-dev | 19:51 | |
*** techlife has joined #openstack-dev | 19:52 | |
*** techlife has joined #openstack-dev | 19:52 | |
*** techlife has joined #openstack-dev | 19:53 | |
*** bencherian has joined #openstack-dev | 19:54 | |
*** techlife has joined #openstack-dev | 19:54 | |
*** esheffield has quit IRC | 19:55 | |
vishy | alexpilotti: how is the get_password support coming? | 19:55 |
alexpilotti | vishy: as I told I'm gonna add it before Grizzly | 19:56 |
alexpilotti | now I'm busy with some Nova refactoring, resize and Quantum NVGRE | 19:56 |
vishy | alexpilotti: just checking in :) want to demo it | 19:57 |
vishy | alexpilotti: cool no worries | 19:57 |
alexpilotti | vishy: sure, I'm gonna add it ASAP. | 19:57 |
*** salv-orlando has joined #openstack-dev | 19:57 | |
*** devoid has joined #openstack-dev | 19:57 | |
*** melwitt has joined #openstack-dev | 19:57 | |
*** yidclare has quit IRC | 19:59 | |
mordred | doude: 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 IRC | 19:59 | |
*** bencherian has quit IRC | 20:00 | |
doude | mordred: ho ok. I understand now | 20:00 |
doude | mordred: thanks | 20:00 |
*** yidclare has joined #openstack-dev | 20:01 | |
*** acemid has joined #openstack-dev | 20:01 | |
*** bswartz has quit IRC | 20:03 | |
*** Ader has quit IRC | 20:04 | |
*** bdpayne has quit IRC | 20:04 | |
*** bdpayne has joined #openstack-dev | 20:05 | |
*** acemid has quit IRC | 20:06 | |
*** melwitt1 has joined #openstack-dev | 20:09 | |
*** esheffield has joined #openstack-dev | 20:10 | |
*** esp1 has quit IRC | 20:11 | |
*** morganfainberg has joined #openstack-dev | 20:11 | |
*** melwitt has quit IRC | 20:11 | |
*** mawagon1 is now known as [laph | 20:12 | |
openstackgerrit | A change was merged to openstack/keystone: rename tenant to project in sql https://review.openstack.org/20480 | 20:12 |
arosen | ping garyk: | 20:12 |
openstackgerrit | A change was merged to openstack/nova: Avoid db lookup in info_from_instance(). https://review.openstack.org/20354 | 20:12 |
*** [laph is now known as olaph | 20:13 | |
*** jcru is now known as jcru|away | 20:13 | |
*** fesp has joined #openstack-dev | 20:14 | |
*** jcru|away is now known as jcru | 20:14 | |
*** dosaboy has joined #openstack-dev | 20:16 | |
*** flaper87 has quit IRC | 20:16 | |
*** acemid has joined #openstack-dev | 20:16 | |
*** eglynn has quit IRC | 20:18 | |
*** zaitcev has joined #openstack-dev | 20:18 | |
*** acemid has quit IRC | 20:21 | |
mlavalle | davidkranz: i'm back. let me take a look on the log. give a few minutes | 20:23 |
*** flaper87 has joined #openstack-dev | 20:23 | |
*** arbrandes has quit IRC | 20:24 | |
*** esp1 has joined #openstack-dev | 20:24 | |
davidkranz | mlavalle: 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 |
mlavalle | davidkranz: ;-) | 20:25 |
*** fesp has quit IRC | 20:25 | |
*** yolanda has quit IRC | 20:25 | |
*** john5223 has quit IRC | 20:26 | |
*** acemid has joined #openstack-dev | 20:31 | |
*** gugl has quit IRC | 20:33 | |
*** flaper87 has quit IRC | 20:33 | |
*** esp1 has quit IRC | 20:34 | |
*** acemid has quit IRC | 20:36 | |
mlavalle | davidkranz: wow, all the tests are failling | 20:39 |
*** vkmc has quit IRC | 20:40 | |
mlavalle | davidkranz: 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 |
mlavalle | davidkranz: 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 is | 20:44 |
davidkranz | mlavalle: OK, great. | 20:44 |
davidkranz | mlavalle: At least this should be the last time that is possible :) | 20:45 |
mlavalle | davidkranz: yeah!!! have a nice weekend. i'll keep you posted | 20:46 |
*** imsplitbit has joined #openstack-dev | 20:46 | |
*** acemid has joined #openstack-dev | 20:47 | |
*** flaper87 has joined #openstack-dev | 20:47 | |
*** bknudson has quit IRC | 20:48 | |
*** dolphm has quit IRC | 20:50 | |
*** blamar has quit IRC | 20:50 | |
*** acemid has quit IRC | 20:51 | |
*** esp has joined #openstack-dev | 20:52 | |
mlavalle | afazekas: hi | 20:53 |
*** nunosantos has joined #openstack-dev | 20:55 | |
*** otherwiseguy has quit IRC | 20:57 | |
*** dolphm has joined #openstack-dev | 20:57 | |
*** capnkooc has joined #openstack-dev | 20:58 | |
anteaya-ya | if 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 you | 20:58 |
*** jog0 has quit IRC | 20:59 | |
afazekas | mlavalle: hi | 20:59 |
gyee | dolphm, need your blessing. https://review.openstack.org/#/c/20524/ | 21:01 |
mlavalle | afazekas: 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 |
afazekas | mlavalle: merged | 21:01 |
*** acemid has joined #openstack-dev | 21:02 | |
*** fesp has joined #openstack-dev | 21:02 | |
*** dolphm has quit IRC | 21:02 | |
*** dolphm has joined #openstack-dev | 21:02 | |
*** yidclare has joined #openstack-dev | 21:02 | |
mlavalle | afazekas: thanks! we need it. some tests are failling now | 21:02 |
mlavalle | afazekas: have a nice weekend! :-) | 21:03 |
afazekas | mlavalle: have nice weekend | 21:03 |
*** flaper87 has quit IRC | 21:04 | |
afazekas | mlavalle: https://review.openstack.org/#/c/20086/ this an another config change (merge fail) | 21:04 |
*** acemid has quit IRC | 21:06 | |
mlavalle | afazekas: are you going to push it again? | 21:06 |
*** EmilienM has left #openstack-dev | 21:07 | |
afazekas | mlavalle: whitebox related things will get a new section, and the ssh_users question is not clear yet | 21:07 |
afazekas | mlavalle: yes | 21:07 |
mlavalle | afazekas: cool. thx again | 21:08 |
*** bknudson has joined #openstack-dev | 21:08 | |
*** sacharya has quit IRC | 21:10 | |
*** annegentle has joined #openstack-dev | 21:10 | |
*** andrewbogott is now known as andrewbogott_afk | 21:12 | |
*** bknudson has quit IRC | 21:12 | |
*** dosaboy has quit IRC | 21:16 | |
devoid | First time using gerrit, how do I select a stable/release branch to submit a commit to review? | 21:16 |
*** acemid has joined #openstack-dev | 21:17 | |
*** koolhead17 has quit IRC | 21:19 | |
clarkb | devoid: you are looking to submit code to a stable/release branch? or you wanto get the stable/release branch? | 21:20 |
annegentle | devoid: 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 |
devoid | clarkb: submit code to stable/essex | 21:20 |
clarkb | devoid: on your topic branch based on stable/essex run `git review stable/essex` | 21:21 |
*** acemid has quit IRC | 21:21 | |
devoid | looks like I'm invalid! :) | 21:22 |
devoid | ! [remote rejected] HEAD -> refs/publish/stable/essex/bug/1097984 (invalid committer) | 21:22 |
clarkb | there may be restrictions on who can push commits to the stable branch for that project | 21:22 |
clarkb | which project is this for? | 21:22 |
devoid | openstack-dev/devstack | 21:23 |
*** bswartz has joined #openstack-dev | 21:24 | |
*** dolphm has quit IRC | 21:24 | |
clarkb | devoid: did you set up an account in gerrit? | 21:25 |
devoid | yea | 21:25 |
clarkb | looks like all registered users should be able to push to devstack | 21:25 |
*** otherwiseguy has joined #openstack-dev | 21:26 | |
*** bknudson has joined #openstack-dev | 21:27 | |
devoid | clarkb: the only thing I can think of is under Settings > Identities the "Status" field is blank. | 21:27 |
clarkb | is there an email address at https://review.openstack.org/#/settings/ ? | 21:28 |
clarkb | and a name? | 21:28 |
clarkb | I think those both need to be set and your git commit will need to match those values | 21:28 |
*** dolphm has joined #openstack-dev | 21:30 | |
*** hillyu has quit IRC | 21:30 | |
*** boris-42 has joined #openstack-dev | 21:31 | |
*** nubbie has joined #openstack-dev | 21:31 | |
*** acemid has joined #openstack-dev | 21:31 | |
*** annegentle has quit IRC | 21:32 | |
*** annegentle has joined #openstack-dev | 21:33 | |
*** nubbie has quit IRC | 21:33 | |
*** nubbie has joined #openstack-dev | 21:33 | |
*** bswartz has quit IRC | 21:35 | |
*** acemid has quit IRC | 21:36 | |
*** annegentle has quit IRC | 21:36 | |
devoid | clarkb: Yes that was it. I had my @gmail.com address in the commit. Thanks! | 21:37 |
devoid | https://review.openstack.org/#/c/20528/ | 21:37 |
*** mrunge has quit IRC | 21:38 | |
*** bencherian has joined #openstack-dev | 21:38 | |
clarkb | np | 21:38 |
*** Tross has left #openstack-dev | 21:39 | |
*** dims has quit IRC | 21:42 | |
*** markvoelker1 has joined #openstack-dev | 21:45 | |
*** Ryan_Lane has quit IRC | 21:46 | |
*** acemid has joined #openstack-dev | 21:47 | |
*** Ryan_Lane has joined #openstack-dev | 21:47 | |
*** lifeless has quit IRC | 21:48 | |
*** markvoelker has quit IRC | 21:48 | |
*** dims has joined #openstack-dev | 21:49 | |
*** acemid has quit IRC | 21:51 | |
*** andrewbogott_afk is now known as andrewbogott | 21:56 | |
*** kbringard has quit IRC | 21:56 | |
*** mtreinish has quit IRC | 21:59 | |
*** acemid has joined #openstack-dev | 22:01 | |
dims | Any quantum folks around? would really appreciate a review - https://review.openstack.org/#/c/20459/ | 22:02 |
*** bswartz has joined #openstack-dev | 22:02 | |
*** lifeless has joined #openstack-dev | 22:05 | |
*** acemid has quit IRC | 22:06 | |
*** hillyu has joined #openstack-dev | 22:07 | |
*** galthaus has quit IRC | 22:07 | |
*** sandywalsh has quit IRC | 22:08 | |
*** markvoelker1 has quit IRC | 22:09 | |
*** martine has joined #openstack-dev | 22:13 | |
*** vipul is now known as vipul|away | 22:15 | |
*** dolphm has quit IRC | 22:16 | |
*** anniec has joined #openstack-dev | 22:16 | |
*** acemid has joined #openstack-dev | 22:17 | |
*** adjohn has quit IRC | 22:17 | |
*** boden has quit IRC | 22:17 | |
*** annegentle has joined #openstack-dev | 22:18 | |
*** anteaya-ya has left #openstack-dev | 22:18 | |
*** anniec_ has joined #openstack-dev | 22:19 | |
*** joesavak has quit IRC | 22:21 | |
*** acemid has quit IRC | 22:21 | |
*** anniec has quit IRC | 22:22 | |
*** anniec_ is now known as anniec | 22:22 | |
devoid | annegentle: thanks for the link, that worked! | 22:22 |
annegentle | devoid: ok, cool! | 22:23 |
*** lloydde has joined #openstack-dev | 22:28 | |
*** martine has quit IRC | 22:31 | |
*** hillyu has left #openstack-dev | 22:31 | |
*** acemid has joined #openstack-dev | 22:32 | |
*** lcheng has joined #openstack-dev | 22:33 | |
*** swaT30 has quit IRC | 22:36 | |
*** acemid has quit IRC | 22:37 | |
*** boris-42 has quit IRC | 22:37 | |
*** jaypipes has quit IRC | 22:40 | |
*** dhellmann is now known as dhellmann-afk | 22:45 | |
*** acemid has joined #openstack-dev | 22:46 | |
*** zg has left #openstack-dev | 22:48 | |
*** olaph has quit IRC | 22:49 | |
*** olaph has joined #openstack-dev | 22:49 | |
*** armaan has left #openstack-dev | 22:50 | |
*** vipul|away is now known as vipul | 22:50 | |
*** acemid has quit IRC | 22:51 | |
*** maurosr has quit IRC | 22:51 | |
*** cp16net is now known as cp16net|away | 22:58 | |
*** cp16net|away is now known as cp16net | 23:01 | |
*** acemid has joined #openstack-dev | 23:02 | |
*** benner has quit IRC | 23:02 | |
*** benner has joined #openstack-dev | 23:02 | |
*** nunosantos has quit IRC | 23:02 | |
*** radez is now known as radez_g0n3 | 23:04 | |
*** rnirmal has quit IRC | 23:05 | |
*** acemid has quit IRC | 23:06 | |
*** mawagon1 has joined #openstack-dev | 23:07 | |
*** jcru is now known as jcru|away | 23:08 | |
*** annegentle has quit IRC | 23:13 | |
*** garyTh has quit IRC | 23:16 | |
*** acemid has joined #openstack-dev | 23:17 | |
*** edmund has quit IRC | 23:18 | |
*** vipul is now known as vipul|away | 23:18 | |
*** ladquin is now known as ladquin_brb | 23:18 | |
openstackgerrit | A change was merged to openstack/glance: Removed unnecessary code https://review.openstack.org/20530 | 23:20 |
*** lcheng has quit IRC | 23:21 | |
*** lcheng has joined #openstack-dev | 23:21 | |
*** acemid has quit IRC | 23:22 | |
*** lcheng has quit IRC | 23:22 | |
*** lcheng has joined #openstack-dev | 23:22 | |
*** lcheng has quit IRC | 23:22 | |
openstackgerrit | A change was merged to openstack/python-glanceclient: Migrate to testr. https://review.openstack.org/18635 | 23:22 |
*** lcheng has joined #openstack-dev | 23:23 | |
*** lcheng has quit IRC | 23:24 | |
*** lcheng has joined #openstack-dev | 23:24 | |
*** lcheng has quit IRC | 23:25 | |
*** dolphm has joined #openstack-dev | 23:25 | |
*** lcheng has joined #openstack-dev | 23:25 | |
*** lcheng has quit IRC | 23:26 | |
*** lcheng has joined #openstack-dev | 23:26 | |
*** aeperezt has quit IRC | 23:26 | |
*** alunduil has quit IRC | 23:27 | |
*** jimfehlig has quit IRC | 23:27 | |
*** alobbs has quit IRC | 23:28 | |
*** woodspa has quit IRC | 23:29 | |
*** nubbie has quit IRC | 23:29 | |
*** esheffield has quit IRC | 23:31 | |
*** acemid has joined #openstack-dev | 23:32 | |
*** crandquist has quit IRC | 23:32 | |
openstackgerrit | A change was merged to openstack/quantum: Ensure that correct root helper is used https://review.openstack.org/20482 | 23:35 |
*** jcru|away is now known as jcru | 23:36 | |
*** acemid has quit IRC | 23:36 | |
*** mawagon1 has quit IRC | 23:37 | |
*** zaitcev has quit IRC | 23:38 | |
*** rpedde is now known as rpedde_away | 23:38 | |
*** sdake has quit IRC | 23:43 | |
*** lifeless has quit IRC | 23:44 | |
*** lcheng has quit IRC | 23:45 | |
*** armaan has joined #openstack-dev | 23:46 | |
*** david-lyle has quit IRC | 23:46 | |
*** acemid has joined #openstack-dev | 23:47 | |
*** armaan has left #openstack-dev | 23:48 | |
*** acemid has quit IRC | 23:51 | |
*** bknudson has quit IRC | 23:55 | |
*** fesp has quit IRC | 23:55 | |
*** vipul|away is now known as vipul | 23:56 | |
*** lifeless has joined #openstack-dev | 23:56 | |
*** markmcclain has quit IRC | 23:57 | |
BLZbubba | hi 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!