*** mgiles has joined #openstack-dev | 00:00 | |
*** michchap_ has joined #openstack-dev | 00:01 | |
*** michchap has quit IRC | 00:01 | |
jamielennox | ayoung: i'm fixing a couple of tests. This function https://github.com/openstack/keystone/blob/master/tests/test_backend.py#L1960 creates a token of size ~200 chars even though our db can only take 64. Is this left over from before? can i just change it to a uuid4? | 00:01 |
---|---|---|
*** jasdeepH has quit IRC | 00:02 | |
jamielennox | actually 608 chars | 00:03 |
*** bknudson has quit IRC | 00:05 | |
*** jzigmund has quit IRC | 00:06 | |
*** morganfainberg has quit IRC | 00:06 | |
*** mrodden has quit IRC | 00:06 | |
*** sudorandom has quit IRC | 00:08 | |
*** shardy_afk has quit IRC | 00:08 | |
*** vipul is now known as vipul|away | 00:10 | |
*** jaypipes has quit IRC | 00:12 | |
*** ndipanov has quit IRC | 00:12 | |
*** manip has joined #openstack-dev | 00:12 | |
*** jasondotstar has joined #openstack-dev | 00:12 | |
*** manip has left #openstack-dev | 00:13 | |
*** halj has quit IRC | 00:14 | |
*** topol has quit IRC | 00:14 | |
*** lauria has quit IRC | 00:14 | |
*** lauria_ has joined #openstack-dev | 00:14 | |
*** lauria_ is now known as lauria | 00:14 | |
*** morganfainberg has joined #openstack-dev | 00:14 | |
*** CaptTofu has quit IRC | 00:16 | |
*** terryh has quit IRC | 00:17 | |
*** yidclare has quit IRC | 00:17 | |
*** galstrom_zzz is now known as galstrom | 00:18 | |
*** armax_ has joined #openstack-dev | 00:19 | |
*** armax_ has left #openstack-dev | 00:19 | |
*** hemna_ has joined #openstack-dev | 00:19 | |
*** cp16net_ has joined #openstack-dev | 00:20 | |
*** edleafe has quit IRC | 00:20 | |
*** cp16net has quit IRC | 00:20 | |
*** kashyap has quit IRC | 00:20 | |
*** cp16net_ is now known as cp16net | 00:20 | |
*** gyee has quit IRC | 00:21 | |
*** hemnafk has quit IRC | 00:21 | |
*** shadower has quit IRC | 00:21 | |
*** shadower has joined #openstack-dev | 00:21 | |
*** edleafe has joined #openstack-dev | 00:21 | |
*** kashyap has joined #openstack-dev | 00:21 | |
*** bswartz has joined #openstack-dev | 00:22 | |
*** sudorandom has joined #openstack-dev | 00:24 | |
*** lloydde has quit IRC | 00:26 | |
*** alexpilotti has quit IRC | 00:27 | |
*** kagan has quit IRC | 00:30 | |
*** zaitcev has quit IRC | 00:31 | |
*** vipul|away is now known as vipul | 00:32 | |
*** FatDarrel has joined #openstack-dev | 00:36 | |
FatDarrel | ok how do i regenerate keystone admin keys again? | 00:36 |
*** jamespage_ has quit IRC | 00:39 | |
*** shang has joined #openstack-dev | 00:40 | |
*** Ryan_Lane has quit IRC | 00:41 | |
*** jamespage_ has joined #openstack-dev | 00:42 | |
*** dolphm has joined #openstack-dev | 00:42 | |
*** shang has quit IRC | 00:46 | |
*** dolphm has quit IRC | 00:47 | |
*** vipul is now known as vipul|away | 00:48 | |
*** martine has joined #openstack-dev | 00:50 | |
*** vkmc has quit IRC | 00:50 | |
*** vipul|away is now known as vipul | 00:52 | |
*** rcleere has quit IRC | 00:53 | |
*** maoy has joined #openstack-dev | 00:55 | |
*** salv-orlando has quit IRC | 00:55 | |
*** lloydde has joined #openstack-dev | 00:56 | |
*** mgiles has quit IRC | 01:00 | |
*** lloydde has quit IRC | 01:01 | |
*** danwent has quit IRC | 01:02 | |
*** toddnni has quit IRC | 01:06 | |
*** toddnni has joined #openstack-dev | 01:07 | |
*** riskable has quit IRC | 01:07 | |
*** jhesketh has joined #openstack-dev | 01:07 | |
ayoung | jamielennox, just saw your post...looking now | 01:08 |
ayoung | jamielennox, that value should get hashed. We shouldn't be storing all 200 chars. THat was working before, I believe | 01:10 |
jamielennox | i'm pretty sure that sqlite just ignores sql column limits | 01:10 |
jamielennox | and that mysql just truncates the value | 01:10 |
jamielennox | pg will raise an error and fail | 01:11 |
*** reed has quit IRC | 01:12 | |
*** zb has joined #openstack-dev | 01:13 | |
*** zaneb has quit IRC | 01:16 | |
ayoung | jamielennox, but the function should conver the long value to the right length... | 01:17 |
ayoung | self.token_api.create_token(token_id, data) | 01:17 |
ayoung | jamielennox, ends up calling https://github.com/openstack/keystone/blob/master/keystone/token/backends/sql.py#L64 | 01:18 |
ayoung | which is | 01:18 |
jamielennox | yea, i'm looking there now | 01:18 |
ayoung | https://github.com/openstack/keystone/blob/master/keystone/token/core.py#L45 | 01:19 |
*** FatDarrel has quit IRC | 01:19 | |
jamielennox | hmm | 01:19 |
ayoung | jamielennox, and cms.hash_token should be short enough | 01:19 |
*** freedomhui has joined #openstack-dev | 01:19 | |
ayoung | that was why the test data was so long, to check that logic | 01:19 |
ayoung | jamielennox, so I am still contemplating the amount of changes in the patch... | 01:20 |
jamielennox | yea, | 01:20 |
jamielennox | it turned out large | 01:20 |
jamielennox | i was hoping to keep the reorganize and the webtest bit seperate | 01:20 |
jamielennox | but honestly i couldn't keep track of all the dependencies without the reorganize | 01:21 |
*** bdpayne has quit IRC | 01:21 | |
ayoung | its not bad, its just going to be a hard sell | 01:21 |
ayoung | I'd like to have a bit more concrete value from webtest before we try to sell it | 01:21 |
jamielennox | maybe if i'd done the reorganize first i could have put the webtest on top rather than the other way round but by the time i realized how much it was changing it was too late | 01:21 |
*** arosen has quit IRC | 01:23 | |
*** sarob has joined #openstack-dev | 01:23 | |
ayoung | I was hoping for a bit more performance gain out of removing the eventlet startup code. THat would make it much more valuable | 01:23 |
ayoung | jamielennox, but I am beating on sql alchemy right now....PITA | 01:24 |
jamielennox | yea, the bottleneck isn't eventlet here | 01:25 |
*** sarob_ has quit IRC | 01:25 | |
jamielennox | there is a whole lot of setup with fixtures and such, particularly when on a sql (not sqlite) backend that is reset on every test | 01:25 |
ayoung | yeah. | 01:26 |
*** CaptTofu has joined #openstack-dev | 01:26 | |
ayoung | would be nice to avoid that | 01:26 |
ayoung | jamielennox, pretty sure https://review.openstack.org/#/c/27878/3 is wrong | 01:27 |
ayoung | https://review.openstack.org/#/c/27878/3/tests/test_backend_memcache.py | 01:27 |
ayoung | explic uuid ? | 01:27 |
ayoung | self._create_token_id() should not be replaced with uuid.uuid4().hex | 01:28 |
ayoung | ah..just test code, nevermind. probably fine | 01:28 |
*** comay has quit IRC | 01:28 | |
*** martine has quit IRC | 01:29 | |
jamielennox | yea | 01:29 |
ayoung | jamielennox, also, I think the domain_id was intentionally left off most of those functions as they need to support the v2 api as well as v3, but only v3 does domains | 01:29 |
ayoung | ah./...ok..I'm tired | 01:29 |
jamielennox | i didn't realize the cms unique_id thing in token/core | 01:30 |
ayoung | you are just creating a domain for the functions as a fixture..that is probably fine | 01:30 |
jamielennox | the domain thing is purely because otherwise PG gives foreign key constraint errors | 01:30 |
ayoung | good stuff. | 01:30 |
ayoung | we should drop a bunch of the fixture set up, as we don't need it for every test, but we build it for every test. | 01:31 |
jamielennox | i would really like to do a lot of that stuff on class_setup rather than setup | 01:31 |
jamielennox | same with pulling down and setting up sql tablse | 01:31 |
*** lauria_ has joined #openstack-dev | 01:33 | |
ayoung | sql alchemy migrations will be the death of me | 01:33 |
ayoung | I've been battling this all day: | 01:33 |
*** lauria has quit IRC | 01:33 | |
*** winston-d has joined #openstack-dev | 01:34 | |
*** lauria_ is now known as lauria | 01:34 | |
ayoung | http://www.fpaste.org/10980/67976850/ | 01:34 |
ayoung | jamielennox, so the tenant table is now the proejct table, but somehow our migrations still hold on to the old name...Something with the metadata not getting updated, I think | 01:34 |
ayoung | but if I run this code, I get an error | 01:35 |
ayoung | NoReferencedColumnError: Could not create ForeignKey 'tenant.id' on table 'credential': table 'tenant' has no column named 'id' | 01:35 |
ayoung | even though I am trying to create the FK on project, not tenant | 01:35 |
ayoung | line 35. | 01:35 |
jamielennox | this is a new migration | 01:35 |
jamielennox | ? | 01:35 |
ayoung | raise exc.NoSuchTableError(table.name) | 01:36 |
ayoung | NoSuchTableError: credential | 01:36 |
ayoung | yeah, it is | 01:36 |
ayoung | jamielennox, it goes along with this patch: https://review.openstack.org/#/c/28372/ | 01:37 |
*** terry7 has quit IRC | 01:37 | |
jamielennox | yea, i saw that but you pull it so i haven't done anything about it | 01:37 |
ayoung | it is just the downgrade that fails, too. I need to try this against Postgres, bet it runs find | 01:37 |
ayoung | fine | 01:37 |
ayoung | can't merge without the DB work. | 01:37 |
jamielennox | just was wondering if it was an existing error as i hadn't seen it | 01:38 |
ayoung | first step in this: | 01:38 |
ayoung | https://etherpad.openstack.org/split-identity | 01:39 |
*** topol has joined #openstack-dev | 01:39 | |
jamielennox | you've got proj_table = twice in the downgrade, that's not the error though | 01:39 |
*** cmark has quit IRC | 01:40 | |
*** esheffield has quit IRC | 01:40 | |
jamielennox | same thing if you don't load the tenant table at all | 01:41 |
jamielennox | ? | 01:41 |
ayoung | yeah, I've even commented it out, etc | 01:41 |
jamielennox | doesn't explain it, even if so | 01:41 |
ayoung | jamielennox, I'm going to crash | 01:43 |
ayoung | maybe this will make sense in the morning. | 01:43 |
jamielennox | yea, no worries | 01:43 |
jamielennox | any suggestions about that giant patch or just wait and see what people say/ | 01:43 |
jamielennox | ayoung: hey, i see the error with the token hashing | 01:45 |
*** sthaha has quit IRC | 01:45 | |
jamielennox | https://github.com/openstack/keystone/blob/master/keystone/common/cms.py#L169 | 01:45 |
*** sthaha has joined #openstack-dev | 01:46 | |
jamielennox | the token is random so fails the asn1 test and so is returned as is. Thoughts? | 01:46 |
jamielennox | lol, cheat and prefix with PKI_ANS1_PREFIX = 'MII' | 01:47 |
jamielennox | but it's still an issue | 01:47 |
*** gnorth has quit IRC | 01:51 | |
*** yaguang has joined #openstack-dev | 01:55 | |
*** koolhead17 has joined #openstack-dev | 01:57 | |
*** lloydde has joined #openstack-dev | 01:57 | |
*** bing_bu has joined #openstack-dev | 02:00 | |
*** anniec has quit IRC | 02:00 | |
*** lloydde has quit IRC | 02:02 | |
*** stevemar has joined #openstack-dev | 02:03 | |
*** adjohn has quit IRC | 02:05 | |
*** CaptTofu has quit IRC | 02:07 | |
*** adalbas has quit IRC | 02:08 | |
*** cmark has joined #openstack-dev | 02:08 | |
*** CaptTofu has joined #openstack-dev | 02:09 | |
*** cmark has quit IRC | 02:14 | |
*** sthaha has quit IRC | 02:19 | |
ayoung | jamielennox, actually, you need to prefix it with MII | 02:20 |
ayoung | I think.... | 02:20 |
ayoung | going to bed | 02:20 |
jamielennox | yea, i'll do the prefix. Good night. | 02:20 |
*** ayoung is now known as ayoung-gnight | 02:21 | |
*** rcleere has joined #openstack-dev | 02:24 | |
*** stevemar has quit IRC | 02:27 | |
*** lauria has quit IRC | 02:31 | |
*** lauria_ has joined #openstack-dev | 02:31 | |
*** lauria_ is now known as lauria | 02:31 | |
*** galstrom is now known as galstrom_zzz | 02:35 | |
*** sthaha has joined #openstack-dev | 02:38 | |
*** woodspa has joined #openstack-dev | 02:39 | |
*** novas0x2a|laptop has quit IRC | 02:39 | |
*** woodspa has quit IRC | 02:41 | |
*** cmark has joined #openstack-dev | 02:42 | |
*** jbresnah has quit IRC | 02:43 | |
*** cmark has joined #openstack-dev | 02:43 | |
openstackgerrit | A change was merged to openstack/nova: Imported Translations from Transifex https://review.openstack.org/28454 | 02:43 |
*** sandywalsh has quit IRC | 02:43 | |
openstackgerrit | A change was merged to openstack/nova: Add an index to compute_node_stats https://review.openstack.org/28447 | 02:45 |
openstackgerrit | A change was merged to openstack/nova: libvirt: ignore NOSTATE in resume_state_on_host_boot() method. https://review.openstack.org/28301 | 02:49 |
openstackgerrit | A change was merged to openstack/nova: Transition from openstack.common.setup to pbr. https://review.openstack.org/26330 | 02:51 |
clarkb | mordred: ^ | 02:52 |
*** lauria has quit IRC | 02:52 | |
*** lauria has joined #openstack-dev | 02:52 | |
*** sandywalsh has joined #openstack-dev | 02:56 | |
*** jasondotstar has quit IRC | 02:56 | |
*** galstrom_zzz is now known as galstrom | 02:57 | |
*** mrodden has joined #openstack-dev | 02:57 | |
*** baba has joined #openstack-dev | 02:57 | |
*** megha has quit IRC | 02:57 | |
*** lloydde has joined #openstack-dev | 02:58 | |
*** SumitNaiksatam has quit IRC | 03:02 | |
*** lloydde has quit IRC | 03:02 | |
*** mgiles has joined #openstack-dev | 03:06 | |
*** adjohn has joined #openstack-dev | 03:15 | |
*** novas0x2a|laptop has joined #openstack-dev | 03:16 | |
*** SumitNaiksatam has joined #openstack-dev | 03:18 | |
*** adjohn_ has joined #openstack-dev | 03:19 | |
*** adjohn has quit IRC | 03:20 | |
*** lauria has quit IRC | 03:27 | |
*** lauria_ has joined #openstack-dev | 03:27 | |
*** lauria_ is now known as lauria | 03:27 | |
*** nunosantos has quit IRC | 03:31 | |
*** galstrom is now known as galstrom_zzz | 03:37 | |
*** martine has joined #openstack-dev | 03:41 | |
*** adjohn_ has quit IRC | 03:44 | |
*** martine has quit IRC | 03:49 | |
*** jergerber has quit IRC | 03:52 | |
*** jclift_ has quit IRC | 03:53 | |
*** boris-42 has joined #openstack-dev | 03:56 | |
*** lloydde has joined #openstack-dev | 03:59 | |
*** michchap_ has quit IRC | 04:01 | |
*** michchap has joined #openstack-dev | 04:02 | |
*** lloydde has quit IRC | 04:03 | |
*** adjohn has joined #openstack-dev | 04:06 | |
*** adjohn has quit IRC | 04:06 | |
*** yaguang has quit IRC | 04:07 | |
*** blamar has quit IRC | 04:08 | |
*** stevemar has joined #openstack-dev | 04:08 | |
*** yaguang has joined #openstack-dev | 04:08 | |
*** garyk has joined #openstack-dev | 04:09 | |
*** adjohn has joined #openstack-dev | 04:09 | |
*** lauria has quit IRC | 04:09 | |
*** lauria_ has joined #openstack-dev | 04:10 | |
*** lauria_ is now known as lauria | 04:10 | |
*** sudorandom has quit IRC | 04:10 | |
*** terryh has joined #openstack-dev | 04:13 | |
*** terryh has quit IRC | 04:13 | |
*** stevemar has quit IRC | 04:14 | |
*** SergeyLukjanov has joined #openstack-dev | 04:15 | |
*** basha has joined #openstack-dev | 04:15 | |
*** melwitt has quit IRC | 04:16 | |
*** glikson has joined #openstack-dev | 04:16 | |
*** andrewbogott is now known as andrewbogott_afk | 04:19 | |
*** stevemar has joined #openstack-dev | 04:20 | |
*** vipul is now known as vipul|away | 04:21 | |
*** mgiles has quit IRC | 04:22 | |
*** vipul|away is now known as vipul | 04:24 | |
*** boris-42 has quit IRC | 04:24 | |
*** michchap_ has joined #openstack-dev | 04:25 | |
*** michchap has quit IRC | 04:25 | |
*** blamar has joined #openstack-dev | 04:26 | |
*** swaT30 has quit IRC | 04:26 | |
*** danwent has joined #openstack-dev | 04:29 | |
*** koolhead17 has quit IRC | 04:33 | |
*** maurosr has quit IRC | 04:34 | |
*** maurosr has joined #openstack-dev | 04:34 | |
*** freedomhui has quit IRC | 04:35 | |
*** lauria has quit IRC | 04:41 | |
*** garyk has quit IRC | 04:41 | |
*** sudorandom has joined #openstack-dev | 04:42 | |
*** FatDarrel has joined #openstack-dev | 04:43 | |
*** boris-42 has joined #openstack-dev | 04:44 | |
*** koolhead17 has joined #openstack-dev | 04:46 | |
*** basha has quit IRC | 04:51 | |
*** vipul is now known as vipul|away | 04:53 | |
*** maoy has quit IRC | 04:55 | |
*** basha has joined #openstack-dev | 04:57 | |
*** FnordDownUnder has joined #openstack-dev | 04:58 | |
*** sarob has quit IRC | 04:58 | |
*** sarob has joined #openstack-dev | 04:59 | |
*** Gman2 has joined #openstack-dev | 05:01 | |
*** sarob has quit IRC | 05:04 | |
*** stevemar has quit IRC | 05:05 | |
*** crazed has quit IRC | 05:05 | |
*** Hien has quit IRC | 05:06 | |
*** adjohn has quit IRC | 05:07 | |
*** Gman2 has quit IRC | 05:07 | |
*** Gman2 has joined #openstack-dev | 05:08 | |
*** koolhead17 has quit IRC | 05:08 | |
*** theEXA has joined #openstack-dev | 05:09 | |
*** sacharya has quit IRC | 05:10 | |
*** jhesketh has quit IRC | 05:11 | |
*** brunnhilde has quit IRC | 05:15 | |
*** boris-42 has quit IRC | 05:15 | |
*** Gman2 has quit IRC | 05:17 | |
*** jamespage_ has quit IRC | 05:17 | |
*** crazed has joined #openstack-dev | 05:18 | |
*** sudorandom has quit IRC | 05:20 | |
*** Hien has joined #openstack-dev | 05:21 | |
*** Hien has quit IRC | 05:25 | |
*** vartom1119 has joined #openstack-dev | 05:27 | |
*** crazed has quit IRC | 05:28 | |
*** vartom1119 has quit IRC | 05:28 | |
*** Hien has joined #openstack-dev | 05:30 | |
*** freedomhui has joined #openstack-dev | 05:31 | |
*** crazed has joined #openstack-dev | 05:31 | |
*** marun has quit IRC | 05:32 | |
*** koolhead17 has joined #openstack-dev | 05:45 | |
*** Gman2 has joined #openstack-dev | 05:45 | |
*** SergeyLukjanov has quit IRC | 05:49 | |
*** prekarat has joined #openstack-dev | 05:51 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Copy Nova's workaround for RHEL6 eventlet issue https://review.openstack.org/28020 | 05:53 |
*** k4n0 has joined #openstack-dev | 05:55 | |
*** prekarat has quit IRC | 05:55 | |
*** amotoki has joined #openstack-dev | 05:56 | |
*** navid_ has joined #openstack-dev | 05:58 | |
*** jbresnah has joined #openstack-dev | 05:58 | |
*** Gman2 has quit IRC | 06:04 | |
*** lloydde has joined #openstack-dev | 06:07 | |
*** mrunge has joined #openstack-dev | 06:09 | |
*** lloydde has quit IRC | 06:10 | |
*** cmark has quit IRC | 06:11 | |
*** prekarat has joined #openstack-dev | 06:11 | |
*** garyk has joined #openstack-dev | 06:12 | |
*** nati_ueno has joined #openstack-dev | 06:14 | |
*** FatDarrel has quit IRC | 06:21 | |
*** tzumainn has joined #openstack-dev | 06:21 | |
*** danwent has quit IRC | 06:25 | |
*** Mandell has joined #openstack-dev | 06:28 | |
*** ondergetekende has joined #openstack-dev | 06:30 | |
*** boris-42 has joined #openstack-dev | 06:30 | |
*** brunnhilde has joined #openstack-dev | 06:35 | |
*** afazekas has joined #openstack-dev | 06:36 | |
*** FnordDownUnder has quit IRC | 06:38 | |
*** flaper87 has joined #openstack-dev | 06:45 | |
*** rushiagr has joined #openstack-dev | 06:45 | |
*** winston-d has quit IRC | 06:50 | |
*** brunnhilde has quit IRC | 06:55 | |
*** belmoreira has joined #openstack-dev | 06:56 | |
*** boris-42 has quit IRC | 06:59 | |
*** glikson has quit IRC | 07:01 | |
*** boris-42 has joined #openstack-dev | 07:02 | |
*** shardy has joined #openstack-dev | 07:02 | |
*** reidrac has joined #openstack-dev | 07:06 | |
*** zb is now known as zaneb | 07:09 | |
*** topol has quit IRC | 07:10 | |
*** alexpilotti has joined #openstack-dev | 07:13 | |
*** basha has quit IRC | 07:16 | |
*** m4xmr has joined #openstack-dev | 07:17 | |
*** glikson has joined #openstack-dev | 07:18 | |
*** FatDarrel has joined #openstack-dev | 07:19 | |
*** m4xmr has left #openstack-dev | 07:21 | |
*** aloga has joined #openstack-dev | 07:21 | |
*** eglynn has joined #openstack-dev | 07:26 | |
*** corXi has joined #openstack-dev | 07:28 | |
*** toddnni_ has joined #openstack-dev | 07:31 | |
*** toddnni has quit IRC | 07:33 | |
*** Mandell has quit IRC | 07:33 | |
*** tzumainn has quit IRC | 07:34 | |
*** gnorth has joined #openstack-dev | 07:35 | |
*** sthaha has quit IRC | 07:36 | |
*** nati_ueno has quit IRC | 07:43 | |
*** kpavel has quit IRC | 07:49 | |
*** kpavel has joined #openstack-dev | 07:49 | |
*** kpavel_ has joined #openstack-dev | 07:51 | |
*** kpavel has quit IRC | 07:55 | |
*** kpavel_ is now known as kpavel | 07:55 | |
*** salv-orlando has joined #openstack-dev | 07:57 | |
*** jog0 has quit IRC | 08:01 | |
*** mmagr has joined #openstack-dev | 08:04 | |
*** lucasagomes has joined #openstack-dev | 08:05 | |
*** basha has joined #openstack-dev | 08:09 | |
*** derekh has joined #openstack-dev | 08:12 | |
*** Hien has quit IRC | 08:18 | |
openstackgerrit | A change was merged to openstack/nova: Fixes mock calls in Hyper-V test method https://review.openstack.org/28487 | 08:20 |
*** jpich has joined #openstack-dev | 08:21 | |
*** mmagr has quit IRC | 08:22 | |
*** FatDarrel has quit IRC | 08:22 | |
*** basha has quit IRC | 08:23 | |
*** pixelbeat_ has joined #openstack-dev | 08:23 | |
*** prekarat has quit IRC | 08:25 | |
*** prekarat has joined #openstack-dev | 08:25 | |
koolhead17 | prekarat: hi | 08:26 |
prekarat | koolhead17: hi | 08:26 |
*** SergeyLukjanov has joined #openstack-dev | 08:27 | |
*** kpavel_ has joined #openstack-dev | 08:36 | |
*** abhishekkr has joined #openstack-dev | 08:37 | |
*** kpavel has quit IRC | 08:38 | |
*** kpavel_ is now known as kpavel | 08:38 | |
*** SergeyLukjanov has quit IRC | 08:45 | |
*** johnthetubaguy has joined #openstack-dev | 08:45 | |
rushiagr | is anyone else having problem with latest devstack? This the error I'm encountering: die 640 'nova-api did not start' | 08:52 |
*** SergeyLukjanov has joined #openstack-dev | 08:55 | |
*** tomoiaga has joined #openstack-dev | 08:58 | |
*** bing_bu has quit IRC | 08:59 | |
openstackgerrit | A change was merged to openstack/horizon: Ensure to use keyword parameters in format string in create_instance.py https://review.openstack.org/28495 | 09:02 |
*** tomoiaga_ has joined #openstack-dev | 09:03 | |
rushiagr | it seems like the devstack is not creating nova directory at /opt/stack | 09:03 |
rushiagr | I hope this is the right channel, or should I try openstack-nova? | 09:04 |
tomoiaga_ | it's github's fault | 09:04 |
*** obondarev_ has joined #openstack-dev | 09:04 | |
*** athomas has joined #openstack-dev | 09:05 | |
tomoiaga_ | devstack can't get nova because there's a problem with github right now | 09:05 |
rushiagr | tomoiaga_: so you mean to say github is not letting the devstack scripts download nova repo? | 09:05 |
rushiagr | tomoiaga_: oh, even I saw a glitch an hour back, but the status.github.com says everything operating normally :/ | 09:05 |
* rushiagr tries to manually download nova repo | 09:05 | |
tomoiaga_ | rushiagr: yes, there is a problem at this time at least with github. The error appears in the devstack logs also. | 09:05 |
tomoiaga_ | rushiagr: status pages are just there most of the times | 09:06 |
tomoiaga_ | rushiagr: this url doesn't work: https://github.com/openstack/nova.git/info/refs?service=git-upload-pack (mainly on git clone ..nova) | 09:06 |
*** haleyb_ has joined #openstack-dev | 09:06 | |
*** hewbrocc` has joined #openstack-dev | 09:06 | |
rushiagr | oh yeah, its showing error 503 when I'm trying to download nova | 09:07 |
*** trapni has joined #openstack-dev | 09:07 | |
*** trapni has joined #openstack-dev | 09:07 | |
tomoiaga_ | rushiagr: yeap | 09:07 |
rushiagr | I was tweaking cinder repo, but for a fresh install deleted everything from the VM. Why :/ | 09:08 |
*** mkollaro has joined #openstack-dev | 09:09 | |
*** ociuhandu_ has joined #openstack-dev | 09:09 | |
tomoiaga_ | rushiagr: it seems we are doing the same thing. Cinder here too, testing brick :) | 09:10 |
*** phschwartz__ has joined #openstack-dev | 09:10 | |
*** k4n01 has joined #openstack-dev | 09:10 | |
*** k4n01 has left #openstack-dev | 09:10 | |
rushiagr | jgriffith's brick? | 09:10 |
tomoiaga_ | rushiagr: yes | 09:10 |
rushiagr | cool! nice :) | 09:10 |
*** cyeoh_ has joined #openstack-dev | 09:10 | |
*** jduhamel_ has joined #openstack-dev | 09:11 | |
*** mkerrin1 has joined #openstack-dev | 09:11 | |
*** esmute_ has joined #openstack-dev | 09:11 | |
*** iccha has joined #openstack-dev | 09:12 | |
*** notmyname_ has joined #openstack-dev | 09:12 | |
*** llu_linux is now known as llu | 09:12 | |
*** jcooley_ has joined #openstack-dev | 09:13 | |
*** BLZbubba_ has joined #openstack-dev | 09:13 | |
*** saschpe_ has joined #openstack-dev | 09:14 | |
*** uvirtbot has quit IRC | 09:14 | |
*** saschpe has quit IRC | 09:14 | |
*** lcheng has quit IRC | 09:14 | |
*** egallen has joined #openstack-dev | 09:14 | |
*** edmund1 has quit IRC | 09:14 | |
*** phschwartz_ has quit IRC | 09:14 | |
*** tomoiaga has quit IRC | 09:14 | |
*** obondarev has quit IRC | 09:14 | |
*** epopt37 has quit IRC | 09:14 | |
*** hewbrocca has quit IRC | 09:14 | |
*** markkropf has quit IRC | 09:14 | |
*** n0ano has quit IRC | 09:14 | |
*** jcooley has quit IRC | 09:14 | |
*** notmyname has quit IRC | 09:14 | |
*** adepti37 has quit IRC | 09:14 | |
*** haleyb has quit IRC | 09:14 | |
*** notmyname_ is now known as notmyname | 09:14 | |
*** jcooley_ is now known as jcooley | 09:14 | |
*** uvirtbot has joined #openstack-dev | 09:15 | |
*** pleia2 has quit IRC | 09:15 | |
*** pleia2 has joined #openstack-dev | 09:15 | |
*** lcheng has joined #openstack-dev | 09:15 | |
*** markkropf has joined #openstack-dev | 09:15 | |
*** danpb has joined #openstack-dev | 09:16 | |
*** epopt37 has joined #openstack-dev | 09:19 | |
*** adepti37 has joined #openstack-dev | 09:19 | |
*** tomoiaga_ is now known as tomoiaga | 09:19 | |
*** athomas has quit IRC | 09:21 | |
*** k4n0 has quit IRC | 09:21 | |
*** ociuhandu has quit IRC | 09:21 | |
*** mkerrin has quit IRC | 09:21 | |
*** jjmb has quit IRC | 09:21 | |
*** BLZbubba has quit IRC | 09:21 | |
*** briancline has quit IRC | 09:21 | |
*** cyeoh has quit IRC | 09:21 | |
*** jduhamel has quit IRC | 09:21 | |
*** esmute has quit IRC | 09:21 | |
*** iccha__ has quit IRC | 09:21 | |
*** jduhamel_ is now known as jduhamel | 09:21 | |
*** ociuhandu_ is now known as ociuhandu | 09:21 | |
*** esmute_ is now known as esmute | 09:21 | |
*** giulivo has joined #openstack-dev | 09:21 | |
danpb | anyone else seeing this error when pulling nova git | 09:32 |
danpb | fatal: remote error: | 09:32 |
danpb | Storage server temporarily offline. See http://status.github.com for GitHub system status. | 09:32 |
*** egallen has quit IRC | 09:32 | |
tomoiaga | danpb: yes, it's github | 09:33 |
ekarlso | danpb: that's github :) | 09:33 |
danpb | (no, the status.github.com page gives no useful info) | 09:33 |
danpb | i know it is github, just wondering if there was any indication of the problem, given that their status page says it is 100% operational | 09:33 |
*** alexxu has quit IRC | 09:33 | |
*** m4xmr has joined #openstack-dev | 09:37 | |
*** prekarat has quit IRC | 09:40 | |
*** SergeyLukjanov has quit IRC | 09:41 | |
*** prekarat has joined #openstack-dev | 09:41 | |
*** basha has joined #openstack-dev | 09:43 | |
*** SergeyLukjanov has joined #openstack-dev | 09:43 | |
*** basha has quit IRC | 09:55 | |
*** m4xmr has left #openstack-dev | 09:59 | |
*** zoresvit has joined #openstack-dev | 10:00 | |
*** belmoreira has quit IRC | 10:01 | |
*** alexpilotti has quit IRC | 10:06 | |
*** boris-42 has quit IRC | 10:10 | |
*** belmoreira has joined #openstack-dev | 10:14 | |
*** pcm___ has joined #openstack-dev | 10:14 | |
*** pcm__ has joined #openstack-dev | 10:15 | |
*** rohitk has joined #openstack-dev | 10:16 | |
*** afazekas has quit IRC | 10:16 | |
*** SergeyLukjanov has quit IRC | 10:19 | |
*** sride has joined #openstack-dev | 10:21 | |
*** alexxu has joined #openstack-dev | 10:25 | |
*** rnirmal has joined #openstack-dev | 10:28 | |
*** afazekas has joined #openstack-dev | 10:29 | |
*** SergeyLukjanov has joined #openstack-dev | 10:30 | |
*** briancline has joined #openstack-dev | 10:30 | |
*** jjmb has joined #openstack-dev | 10:30 | |
*** johndescs has left #openstack-dev | 10:38 | |
*** jcoufal has joined #openstack-dev | 10:39 | |
*** prekarat has quit IRC | 10:42 | |
*** mgiles has joined #openstack-dev | 10:49 | |
*** mgiles has quit IRC | 10:50 | |
*** freedomhui has quit IRC | 10:54 | |
*** SergeyLukjanov has quit IRC | 10:54 | |
*** sride has quit IRC | 10:57 | |
*** megha has joined #openstack-dev | 10:57 | |
*** baba has quit IRC | 10:58 | |
*** jcoufal has quit IRC | 10:59 | |
*** acfleury has joined #openstack-dev | 11:02 | |
*** yamahata_ has joined #openstack-dev | 11:05 | |
*** yaguang has quit IRC | 11:08 | |
*** phschwartz has quit IRC | 11:09 | |
*** phschwartz has joined #openstack-dev | 11:10 | |
*** drewlander has joined #openstack-dev | 11:12 | |
*** ndipanov has joined #openstack-dev | 11:13 | |
*** SergeyLukjanov has joined #openstack-dev | 11:22 | |
*** dhellmann-away has quit IRC | 11:23 | |
*** rkukura has quit IRC | 11:27 | |
*** martine has joined #openstack-dev | 11:28 | |
*** jclift_ has joined #openstack-dev | 11:33 | |
*** boris-42 has joined #openstack-dev | 11:35 | |
*** michchap_ has quit IRC | 11:36 | |
*** michchap has joined #openstack-dev | 11:36 | |
*** maoy has joined #openstack-dev | 11:40 | |
*** ladquin_brb is now known as ladquin | 11:42 | |
*** tzumainn has joined #openstack-dev | 11:42 | |
*** tzumainn has quit IRC | 11:50 | |
*** yamahata_ has quit IRC | 11:50 | |
*** topol has joined #openstack-dev | 11:52 | |
*** tzumainn has joined #openstack-dev | 11:52 | |
*** SergeyLukjanov has quit IRC | 11:55 | |
*** matiu has quit IRC | 12:00 | |
*** dprince has joined #openstack-dev | 12:03 | |
*** freedomhui has joined #openstack-dev | 12:04 | |
*** mrunge has quit IRC | 12:05 | |
*** matiu has joined #openstack-dev | 12:08 | |
*** matiu has joined #openstack-dev | 12:08 | |
*** SergeyLukjanov has joined #openstack-dev | 12:08 | |
*** galstrom_zzz is now known as galstrom | 12:13 | |
*** eglynn has quit IRC | 12:18 | |
*** athomas has joined #openstack-dev | 12:21 | |
*** radez_g0n3 is now known as radez | 12:23 | |
*** dguitarbite has joined #openstack-dev | 12:25 | |
*** yamahata_ has joined #openstack-dev | 12:28 | |
*** galstrom is now known as galstrom_zzz | 12:28 | |
*** ayoung-gnight is now known as ayoung | 12:29 | |
*** tzumainn has quit IRC | 12:31 | |
*** morazi has quit IRC | 12:31 | |
*** jecarey has joined #openstack-dev | 12:32 | |
*** martine has quit IRC | 12:34 | |
*** eharney has joined #openstack-dev | 12:34 | |
*** eharney has joined #openstack-dev | 12:34 | |
*** jecarey has quit IRC | 12:36 | |
*** dosaboy has quit IRC | 12:37 | |
*** jecarey has joined #openstack-dev | 12:37 | |
*** dosaboy has joined #openstack-dev | 12:39 | |
*** rushiagr has quit IRC | 12:40 | |
*** Thor has quit IRC | 12:41 | |
*** markmc has joined #openstack-dev | 12:41 | |
*** Thor has joined #openstack-dev | 12:41 | |
*** martine_ has joined #openstack-dev | 12:43 | |
*** bing_bu has joined #openstack-dev | 12:43 | |
*** jasondotstar has joined #openstack-dev | 12:44 | |
*** michchap has quit IRC | 12:44 | |
*** michchap has joined #openstack-dev | 12:44 | |
*** athomas has quit IRC | 12:44 | |
*** digitalsanctum has joined #openstack-dev | 12:45 | |
*** bknudson has joined #openstack-dev | 12:47 | |
*** salv-orlando has quit IRC | 12:48 | |
*** salv-orlando has joined #openstack-dev | 12:48 | |
*** gargya has joined #openstack-dev | 12:50 | |
*** athomas has joined #openstack-dev | 12:51 | |
*** bmclaughlin has joined #openstack-dev | 12:52 | |
*** eglynn has joined #openstack-dev | 12:53 | |
*** jergerber has joined #openstack-dev | 12:56 | |
*** belmoreira1 has joined #openstack-dev | 12:59 | |
*** belmoreira has quit IRC | 13:01 | |
*** dprince has quit IRC | 13:01 | |
*** dprince has joined #openstack-dev | 13:02 | |
*** freedomhui has quit IRC | 13:05 | |
*** eglynn is now known as hungry-eglynn | 13:09 | |
*** kbringard has joined #openstack-dev | 13:10 | |
*** rkukura has joined #openstack-dev | 13:11 | |
*** alunduil has quit IRC | 13:12 | |
mordred | danpb: you can always just pull from gerrit | 13:12 |
*** mkollaro has quit IRC | 13:17 | |
*** swaT30 has joined #openstack-dev | 13:18 | |
*** belmoreira1 has quit IRC | 13:20 | |
*** belmoreira has joined #openstack-dev | 13:20 | |
*** anniec has joined #openstack-dev | 13:22 | |
*** Gman2 has joined #openstack-dev | 13:22 | |
*** Gman2 has left #openstack-dev | 13:22 | |
*** stevemar has joined #openstack-dev | 13:25 | |
*** redbeard2 has quit IRC | 13:26 | |
*** morazi has joined #openstack-dev | 13:27 | |
*** johnthetubaguy has quit IRC | 13:28 | |
*** jjmb has quit IRC | 13:28 | |
*** SergeyLukjanov has quit IRC | 13:32 | |
*** SergeyLukjanov has joined #openstack-dev | 13:34 | |
*** dguitarbite has quit IRC | 13:36 | |
*** dguitarbite has joined #openstack-dev | 13:36 | |
*** lauria has joined #openstack-dev | 13:36 | |
*** sandywalsh has quit IRC | 13:37 | |
*** ociuhandu has quit IRC | 13:39 | |
*** martine_ has quit IRC | 13:40 | |
*** ociuhandu has joined #openstack-dev | 13:40 | |
*** martine has joined #openstack-dev | 13:40 | |
*** rohitk has quit IRC | 13:43 | |
*** alexpilotti has joined #openstack-dev | 13:47 | |
*** hewbrocc` is now known as hewbrocca | 13:48 | |
*** pabelanger_ has joined #openstack-dev | 13:50 | |
*** hungry-eglynn is now known as eglynn | 13:50 | |
*** rcleere has quit IRC | 13:50 | |
*** sandywalsh has joined #openstack-dev | 13:51 | |
*** sacharya has joined #openstack-dev | 13:51 | |
*** wiliam_ has joined #openstack-dev | 13:51 | |
*** pabelanger_ has quit IRC | 13:52 | |
*** pabelanger_ has joined #openstack-dev | 13:52 | |
*** pabelanger has quit IRC | 13:52 | |
*** aeperezt has joined #openstack-dev | 13:52 | |
*** alexpilotti has quit IRC | 13:52 | |
*** pabelanger_ is now known as pabelanger | 13:52 | |
*** pabelanger_ has joined #openstack-dev | 13:53 | |
*** pabelanger has quit IRC | 13:53 | |
*** pabelanger has joined #openstack-dev | 13:53 | |
*** lloydde has joined #openstack-dev | 13:54 | |
*** redbeard2 has joined #openstack-dev | 13:54 | |
*** bswartz has quit IRC | 13:54 | |
*** jaypipes has joined #openstack-dev | 13:54 | |
*** martine_ has joined #openstack-dev | 13:54 | |
*** martine has quit IRC | 13:54 | |
*** drewland_ has joined #openstack-dev | 13:54 | |
*** sacharya has quit IRC | 13:55 | |
*** drewland_ has quit IRC | 13:55 | |
*** drewland_ has joined #openstack-dev | 13:56 | |
*** digitalsanctum has quit IRC | 13:56 | |
*** READ10 has joined #openstack-dev | 13:56 | |
*** koolhead17 has quit IRC | 13:57 | |
*** sudorandom has joined #openstack-dev | 13:58 | |
*** drewlander has quit IRC | 13:58 | |
*** wiliam_ has quit IRC | 13:59 | |
*** wiliam_ has joined #openstack-dev | 14:01 | |
*** gongysh has quit IRC | 14:02 | |
*** alunduil has joined #openstack-dev | 14:03 | |
*** yaguang has joined #openstack-dev | 14:04 | |
*** dolphm has joined #openstack-dev | 14:05 | |
*** crazed has quit IRC | 14:07 | |
*** networkstatic has quit IRC | 14:07 | |
*** networkstatic has joined #openstack-dev | 14:08 | |
*** martine_ has quit IRC | 14:08 | |
*** jruzicka has joined #openstack-dev | 14:08 | |
*** pabelanger has quit IRC | 14:09 | |
*** wiliam_ has quit IRC | 14:10 | |
*** martine has joined #openstack-dev | 14:13 | |
*** aryan has quit IRC | 14:13 | |
*** aryan has joined #openstack-dev | 14:13 | |
*** bing_bu has quit IRC | 14:13 | |
*** sstent_ has quit IRC | 14:15 | |
*** bmclaughlin is now known as bmclaughlin|afk | 14:15 | |
*** crazed has joined #openstack-dev | 14:15 | |
*** portante|afk is now known as portante | 14:19 | |
*** sacharya has joined #openstack-dev | 14:19 | |
*** ondergetekende has quit IRC | 14:20 | |
*** jcoufal has joined #openstack-dev | 14:21 | |
*** wiliam_ has joined #openstack-dev | 14:22 | |
*** rcleere has joined #openstack-dev | 14:23 | |
*** jvrbanac has joined #openstack-dev | 14:23 | |
*** wiliam_ has quit IRC | 14:26 | |
*** wiliam_ has joined #openstack-dev | 14:26 | |
*** yidclare has joined #openstack-dev | 14:26 | |
*** pabelanger has joined #openstack-dev | 14:27 | |
*** digitalsanctum has joined #openstack-dev | 14:29 | |
*** AlanClark has joined #openstack-dev | 14:30 | |
*** nunosantos has joined #openstack-dev | 14:31 | |
*** wiliam_ has quit IRC | 14:32 | |
*** bswartz has joined #openstack-dev | 14:32 | |
*** topol has quit IRC | 14:33 | |
*** sacharya has quit IRC | 14:33 | |
*** matiu has quit IRC | 14:33 | |
*** wiliam_ has joined #openstack-dev | 14:33 | |
*** ayoung is now known as ayoung-afk | 14:35 | |
*** esheffield has joined #openstack-dev | 14:35 | |
*** markmcclain has joined #openstack-dev | 14:36 | |
*** kbrierly has joined #openstack-dev | 14:36 | |
*** datsun180b has joined #openstack-dev | 14:38 | |
*** ndipanov has quit IRC | 14:39 | |
*** wiliam_ has quit IRC | 14:40 | |
*** galstrom_zzz is now known as galstrom | 14:40 | |
*** kobier has quit IRC | 14:41 | |
*** freedomhui has joined #openstack-dev | 14:41 | |
*** ndipanov has joined #openstack-dev | 14:41 | |
*** wiliam_ has joined #openstack-dev | 14:42 | |
*** crandquist has joined #openstack-dev | 14:42 | |
*** lloydde has quit IRC | 14:43 | |
*** navid_ has quit IRC | 14:44 | |
*** crandquist has quit IRC | 14:46 | |
*** cp16net is now known as cp16net|away | 14:46 | |
kbringard | any ovs_quantum_agent devs around? | 14:47 |
*** spzala has joined #openstack-dev | 14:47 | |
*** wiliam_ has quit IRC | 14:49 | |
*** katylava has joined #openstack-dev | 14:49 | |
*** johnthetubaguy has joined #openstack-dev | 14:49 | |
*** freedomhui has quit IRC | 14:49 | |
*** digitalsanctum has quit IRC | 14:50 | |
kbringard | I had a question about appears to be an inconsistency in what quantum server and the ovs_quantum_agent thinks a "local VLAN" is | 14:50 |
*** wiliam_ has joined #openstack-dev | 14:51 | |
*** ashwini has joined #openstack-dev | 14:51 | |
*** digitalsanctum has joined #openstack-dev | 14:51 | |
*** portante has quit IRC | 14:53 | |
*** litong has joined #openstack-dev | 14:54 | |
*** armax has joined #openstack-dev | 14:54 | |
*** wiliam_ has quit IRC | 14:55 | |
*** tong|2 has joined #openstack-dev | 14:56 | |
*** tong|3 has joined #openstack-dev | 14:57 | |
*** wiliam_ has joined #openstack-dev | 14:58 | |
*** litong has quit IRC | 14:59 | |
*** tong|2 has quit IRC | 15:01 | |
*** drewland_ has quit IRC | 15:01 | |
*** megha has quit IRC | 15:02 | |
*** woodspa has joined #openstack-dev | 15:02 | |
*** wiliam_ has quit IRC | 15:02 | |
*** drewlander has joined #openstack-dev | 15:03 | |
*** otherwiseguy has quit IRC | 15:03 | |
*** wiliam_ has joined #openstack-dev | 15:03 | |
*** athomas has quit IRC | 15:04 | |
*** sacharya has joined #openstack-dev | 15:04 | |
*** toddnni_ has quit IRC | 15:05 | |
*** bknudson has quit IRC | 15:05 | |
*** lpmulligan has joined #openstack-dev | 15:05 | |
*** Gman2 has joined #openstack-dev | 15:06 | |
*** Gman2 has quit IRC | 15:07 | |
*** topol has joined #openstack-dev | 15:07 | |
*** yidclare has quit IRC | 15:08 | |
*** megha has joined #openstack-dev | 15:09 | |
*** lloydde has joined #openstack-dev | 15:10 | |
*** jcoufal has quit IRC | 15:10 | |
*** bknudson has joined #openstack-dev | 15:10 | |
*** athomas has joined #openstack-dev | 15:11 | |
*** lloydde has quit IRC | 15:12 | |
*** wiliam_ has quit IRC | 15:12 | |
*** koolhead17 has joined #openstack-dev | 15:14 | |
*** wiliam_ has joined #openstack-dev | 15:14 | |
*** abhishekkr has quit IRC | 15:14 | |
*** jayg|g0n3 is now known as jayg | 15:14 | |
*** markmcclain has quit IRC | 15:14 | |
*** vkmc has joined #openstack-dev | 15:14 | |
*** vkmc has quit IRC | 15:14 | |
*** vkmc has joined #openstack-dev | 15:14 | |
*** bknudson has quit IRC | 15:15 | |
*** freedomhui has joined #openstack-dev | 15:16 | |
*** hazmat has quit IRC | 15:16 | |
*** reidrac has quit IRC | 15:17 | |
*** garyk has quit IRC | 15:17 | |
openstackgerrit | A change was merged to openstack/quantum: Import recent rootwrap features in local rootwrap https://review.openstack.org/28309 | 15:18 |
jeblair | markmc: it looks like cinder is not a child project of openstack on transifex | 15:20 |
*** maoy has quit IRC | 15:20 | |
*** zul has joined #openstack-dev | 15:20 | |
*** devoid has joined #openstack-dev | 15:20 | |
markmc | jeblair, oh, how do I fix that | 15:20 |
*** jamespage_ has joined #openstack-dev | 15:20 | |
markmc | jeblair, did I get it right for glance? | 15:20 |
*** maoy has joined #openstack-dev | 15:21 | |
jeblair | markmc: let me see if i can just click some buttons and make that happen | 15:21 |
*** ayoung-afk is now known as ayoung | 15:21 | |
*** dperaza has joined #openstack-dev | 15:22 | |
*** danwent has joined #openstack-dev | 15:22 | |
*** sarob has joined #openstack-dev | 15:22 | |
markmc | jeblair, clicky clicky clicky | 15:22 |
*** lloydde has joined #openstack-dev | 15:23 | |
*** devoid has left #openstack-dev | 15:23 | |
*** boris-42 has quit IRC | 15:24 | |
*** jamespage_ has quit IRC | 15:25 | |
markmc | jeblair, if you can add me as a manager of the openstack project, that might help | 15:25 |
jeblair | markmc: ah found it. in cinder, i went to manage -> access-control -> outsourced project + outsource access to "OpenStack" | 15:25 |
*** dperaza has left #openstack-dev | 15:25 | |
*** adjohn has joined #openstack-dev | 15:26 | |
markmc | jeblair, how did I miss that? :) | 15:26 |
*** mark_ma has joined #openstack-dev | 15:26 | |
jeblair | markmc: it took me 5 minutes to find it, and i was looking for it. :) | 15:26 |
*** SergeyLukjanov has quit IRC | 15:27 | |
*** mrodden has quit IRC | 15:27 | |
ayoung | dolphm, why are you still working on https://review.openstack.org/#/c/28197/ ? I thought we had agreed that we were going to let spzala test his approach, and go with that? | 15:28 |
jeblair | markmc: i added you as a maintainer for the openstack project hub | 15:29 |
markmc | jeblair, thanks | 15:29 |
topol | ayoung +1! | 15:29 |
dolphm | ayoung: i thought he was testing my approach? either way, i'm maintaining my patch based on reviews as i think it's still a viable option | 15:29 |
jeblair | markmc: fyi (i don't remember if you were at the summit session on translations) daisy is settup up translations teams | 15:29 |
jeblair | markmc: https://wiki.openstack.org/wiki/Translations/TranslationTeam | 15:29 |
dolphm | ayoung: topol: spzala: up to ya'll though1 | 15:29 |
mark_ma | you guys work on the same project ? | 15:29 |
topol | dolphm, I think spzala will deliver you a smaller patch fully tested | 15:29 |
dolphm | awesome | 15:29 |
markmc | jeblair, daisy was at this session: https://etherpad.openstack.org/havana-oslo-i18n-strategy | 15:29 |
markmc | jeblair, so, I think we're in sync | 15:30 |
jeblair | markmc: excellent | 15:30 |
*** garyk has joined #openstack-dev | 15:30 | |
*** bknudson has joined #openstack-dev | 15:30 | |
*** cp16net|away is now known as cp16net | 15:30 | |
spzala | dolphm: ayoung: I have updated the patch can you please take a look https://review.openstack.org/#/c/27364/ | 15:30 |
spzala | dolphm: ayoung: I have changed the approach little bit and now it's not based on boolean or any condition | 15:31 |
markmc | jeblair, I'm pushing the infrastructure along, e.g. https://review.openstack.org/#/q/I86562b3a65d371673bb21f7179eecc7602bc0775,n,z | 15:31 |
dolphm | spzala: commit message indicates otherwise | 15:31 |
markmc | jeblair, see how useful using the same Change-Id across projects can be ? :) | 15:31 |
jeblair | markmc: woo! oh neat, i didn't think you could do that. i would have thought to use topics for that. | 15:32 |
ayoung | dolphm, no problem keeping it as a backup. I think spzala 's is the more conservative approach, and would try to go with that first. | 15:32 |
spzala | dolphm: ah, sorry didn't update the message :( it was very late and wanted to check in code for review | 15:32 |
spzala | dolphm: missed it but will update with new patch | 15:32 |
dolphm | spzala: the patch is still conditional.. what did you change? | 15:33 |
*** eharney has quit IRC | 15:33 | |
ayoung | spzala, also, I need to know how you tested this | 15:34 |
spzala | dolphm: hmmm... there is no boolean now. The only condition is "if default domain id" | 15:35 |
*** vipul|away is now known as vipul | 15:35 | |
*** wiliam_ has quit IRC | 15:35 | |
dolphm | spzala: i don't follow... conditional behavior is conditional | 15:35 |
spzala | dolphm: and I didn't find any way around there. | 15:36 |
*** vipul is now known as vipul|away | 15:36 | |
*** SergeyLukjanov has joined #openstack-dev | 15:36 | |
*** wiliam_ has joined #openstack-dev | 15:37 | |
spzala | dolphm: well, to me, we are handling default domain in a specific way | 15:37 |
*** johnpur has joined #openstack-dev | 15:37 | |
*** chuck_ has joined #openstack-dev | 15:38 | |
spzala | dolphm: I thought the major dislike was towards using boolean | 15:38 |
mark_ma | hi russel | 15:39 |
russellb | mark_ma: hi! | 15:39 |
russellb | mark_ma: so you're looking for info on how to contribute? | 15:39 |
mark_ma | russellb:yes | 15:39 |
russellb | https://wiki.openstack.org/wiki/How_To_Contribute | 15:39 |
russellb | that's the best place to start | 15:39 |
ayoung | spzala, I think the logic you have is correct. THe collection needs to inject the default domain if it is missing. It is possible that a user will already have one, and, if so, it we shouldn't replace it. | 15:40 |
*** zul has quit IRC | 15:40 | |
mark_ma | russellb:thanks so much | 15:40 |
russellb | sure no problem | 15:40 |
topol | ayoung +1 | 15:40 |
topol | dolphm, I don't see how the end result is different than what happens with the SQL driver migration support of default domain | 15:41 |
*** gyee has joined #openstack-dev | 15:41 | |
dolphm | topol: API behavior against the LDAP backend is inconsistent compared to other backends | 15:41 |
spzala | ayoung: yes, and that's what we are doing right ? | 15:41 |
dolphm | topol: made comments on the patch to correct some of those issues | 15:42 |
spzala | ayoung: sorry if I misunderstood and not using the one if it's already found | 15:42 |
*** eharney has joined #openstack-dev | 15:42 | |
*** eharney has joined #openstack-dev | 15:42 | |
*** zoresvit has quit IRC | 15:43 | |
*** otherwiseguy has joined #openstack-dev | 15:44 | |
*** dims_ has joined #openstack-dev | 15:44 | |
*** dims_ has quit IRC | 15:44 | |
topol | dolphm, your comments seem straightforward to address. If spzala addresses those will you find that acceptable? | 15:44 |
*** cloudchimp has joined #openstack-dev | 15:44 | |
*** aloga has quit IRC | 15:45 | |
dolphm | topol: i definitely need to take another pass with consideration to api behavior afterwords | 15:46 |
topol | dolphm, OK. makes sense | 15:46 |
*** wiliam_ has quit IRC | 15:46 | |
*** yidclare has joined #openstack-dev | 15:46 | |
dolphm | topol: spzala: to be clear, i'm not entirely opposed to the conditional behavior of the patch, but it can't be allowed to impact api usage | 15:46 |
*** jcoufal has joined #openstack-dev | 15:47 | |
topol | dolphm, K, we just need to know where it ends up impacting API usage | 15:48 |
*** wiliam_ has joined #openstack-dev | 15:48 | |
spzala | dolphm: the keystone/test.py has def load_fixtures(self, fixtures): which had "rv = self.identity_api.create_domain(domain['id'], domain) except (exception.Conflict, exception.NotImplemented):" so in order not to change the test I kept it to "NotImplemented" | 15:49 |
*** belmoreira has quit IRC | 15:49 | |
topol | but spzala will change the test if that is more correct | 15:49 |
spzala | dolphm: to use better exception, need to change the test or override it in order not to impact sql .. .but that's something fine with me. | 15:49 |
spzala | topol: yes | 15:49 |
ayoung | topol, far more important is what happens when this patch is executed against a read only LDAP. One where there is no "business category" or other attribute available to write to, and where the domain_id attribute has been explicitly ignored. | 15:50 |
*** mrodden has joined #openstack-dev | 15:50 | |
ayoung | Has that been tested, and if so, documented? | 15:50 |
*** lloydde has quit IRC | 15:50 | |
topol | ayoung, preaching to the choir my friend | 15:50 |
spzala | ayoung: agreed.. I did tested it with no domain_id attribute and by ignoring per your idea | 15:51 |
mark_ma | will someone tell me how to join openstack developer maillist? | 15:51 |
spzala | ayoung: but I don't have read only | 15:51 |
topol | spzala is testing with the domain_id attribute being ignored | 15:51 |
topol | is that not equivalent??? | 15:51 |
topol | he will verify the atrribute is not written into ldap | 15:51 |
topol | ayoung, make sense? | 15:52 |
*** glikson has quit IRC | 15:52 | |
*** bdpayne has joined #openstack-dev | 15:52 | |
spzala | topol: I did verify that domain_id is not there after creating group, user.. | 15:52 |
topol | ayoung, good enough??? | 15:53 |
*** lloydde has joined #openstack-dev | 15:53 | |
*** wiliam_ has quit IRC | 15:54 | |
topol | mark_ma http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev | 15:55 |
*** adjohn has quit IRC | 15:55 | |
*** electrichead has joined #openstack-dev | 15:55 | |
*** wiliam_ has joined #openstack-dev | 15:56 | |
*** kpavel has quit IRC | 15:57 | |
*** yolanda has joined #openstack-dev | 15:59 | |
dolphm | ayoung: +1 | 15:59 |
*** SergeyLukjanov has quit IRC | 15:59 | |
*** n0ano has joined #openstack-dev | 15:59 | |
david-lyle | is there any self-registration support currently built into keystone? | 16:04 |
*** alop has joined #openstack-dev | 16:05 | |
david-lyle | I don't see a path in the client | 16:05 |
*** glikson has joined #openstack-dev | 16:05 | |
ayoung | spzala, you can do something like anonymous binding, I think, by editing the file that creates the LDAP connection, and make sure that everything else still works. Obviously, the tests won't run | 16:05 |
*** trapni has quit IRC | 16:05 | |
ayoung | spzala, please write up exactly what you did and post in a netherpad, then refernce that in the check in. This is going to be necessary to migrate people forward from Older releases, and I'd like to get it documented now. | 16:06 |
ayoung | david-lyle, no self registration in Keystone | 16:06 |
david-lyle | ayoung: just wanted to verify. Thanks! | 16:07 |
spzala | ayoung: yes doc is a good idea and honestly I was thinking to create one but due to lack of time, I couldn't create one yet. But will do. | 16:07 |
spzala | ayoung: on call right now | 16:07 |
*** alop_ has joined #openstack-dev | 16:08 | |
spzala | ayoung: about annonymous binding, I didn't do it before :( but I will try | 16:08 |
*** tryggvil has joined #openstack-dev | 16:08 | |
*** vipul|away is now known as vipul | 16:08 | |
*** abhishekkr has joined #openstack-dev | 16:09 | |
*** tryggvil has quit IRC | 16:09 | |
*** alop has quit IRC | 16:09 | |
*** alop_ is now known as alop | 16:09 | |
*** yaguang has quit IRC | 16:09 | |
*** utlemming has joined #openstack-dev | 16:10 | |
*** wiliam_ has quit IRC | 16:10 | |
ayoung | dolphm, I'm having second thoughts about out approach to SQL testing and SQLite. I think the limitations of SQLite with regard to column dropping and the like mean that it should not go through the same migration process as the others, but that, instead, we should optimize the mysql/postgres migrations. I've been working on one for about 6 hours now, and all it should be doing is dropping ForeignKey constraints on a couple of | 16:12 |
ayoung | columns, but with SQLIte, I need to drop the table and create a new one. | 16:12 |
ayoung | 'tis madness | 16:12 |
ayoung | out->our | 16:12 |
openstackgerrit | A change was merged to openstack/nova: Rename nova.compute.instance_types to flavors https://review.openstack.org/28456 | 16:13 |
*** jimfehlig has joined #openstack-dev | 16:13 | |
*** SergeyLukjanov has joined #openstack-dev | 16:14 | |
*** annegentle has quit IRC | 16:14 | |
*** FatDarrel has joined #openstack-dev | 16:14 | |
ayoung | ugh, and, you can't create a new table with the same metadata after you drop it, as 'tables' is an immutable collection | 16:14 |
ayoung | " This deal is getting worse all the time!" | 16:16 |
*** anniec has quit IRC | 16:16 | |
dolphm | ayoung: i don't disagree | 16:16 |
dolphm | ayoung: what's wrong with the migrations testing patches that were proposed a month or two back? test_migrations | 16:17 |
*** hemna_ is now known as hemna | 16:17 | |
*** galstrom is now known as galstrom_zzz | 16:18 | |
*** gyee has quit IRC | 16:19 | |
*** dontalton has joined #openstack-dev | 16:19 | |
*** SergeyLukjanov has quit IRC | 16:20 | |
*** mark_ma has quit IRC | 16:21 | |
*** jcoufal has quit IRC | 16:21 | |
*** athomas has quit IRC | 16:21 | |
openstackgerrit | A change was merged to openstack/cinder: Add db client packages to dev env setup doc. https://review.openstack.org/28319 | 16:21 |
*** markmc has quit IRC | 16:21 | |
*** wiliam_ has joined #openstack-dev | 16:22 | |
*** boris-42 has joined #openstack-dev | 16:22 | |
*** terry7 has joined #openstack-dev | 16:23 | |
*** ndipanov has quit IRC | 16:23 | |
*** tong|3 has quit IRC | 16:23 | |
*** gyee has joined #openstack-dev | 16:24 | |
*** jpich has quit IRC | 16:25 | |
*** gyee has quit IRC | 16:25 | |
*** SergeyLukjanov has joined #openstack-dev | 16:25 | |
*** shang has joined #openstack-dev | 16:25 | |
*** lloydde has quit IRC | 16:27 | |
*** markmcclain has joined #openstack-dev | 16:27 | |
*** corXi has quit IRC | 16:27 | |
*** bmclaughlin|afk is now known as bmclaughlin | 16:27 | |
*** gyee has joined #openstack-dev | 16:28 | |
*** vish1 has joined #openstack-dev | 16:28 | |
*** wiliam_ has quit IRC | 16:28 | |
*** yolanda has quit IRC | 16:28 | |
*** comay has joined #openstack-dev | 16:29 | |
*** sstent_ has joined #openstack-dev | 16:29 | |
*** vishy has quit IRC | 16:29 | |
*** vish1 is now known as vishy | 16:29 | |
*** gargya has quit IRC | 16:30 | |
ayoung | dolphm, the problem isn't the testing, it is the migrations themselves. Just the simple act of running through all of hte migrations from 0 to highest and back breaks. | 16:31 |
*** andrewbogott_afk is now known as andrewbogott | 16:31 | |
dolphm | ayoung: and i assume that would be caught by test_migrations | 16:31 |
ayoung | dolphm, but I also think that maybe using the migrations for sqlite is creating more work than they are worth | 16:31 |
*** rohitk has joined #openstack-dev | 16:32 | |
ayoung | dolphm, the problem is that the migrations themselves are the wrong way to approach things for sqlite | 16:32 |
*** ondergetekende has joined #openstack-dev | 16:32 | |
ayoung | sqlite probably shouldn't be used for production | 16:32 |
*** ondergetekende has quit IRC | 16:32 | |
*** wiliam_ has joined #openstack-dev | 16:32 | |
ayoung | and since sqlite doesn't really support modifying the schema's in place, we end up with some really horrible migrations | 16:33 |
*** crandquist has joined #openstack-dev | 16:33 | |
*** sstent has quit IRC | 16:33 | |
*** nati_ueno has joined #openstack-dev | 16:33 | |
*** cobyr has joined #openstack-dev | 16:34 | |
*** crandquist has quit IRC | 16:35 | |
*** cobyr is now known as kobier | 16:35 | |
*** shang has quit IRC | 16:35 | |
*** shang has joined #openstack-dev | 16:35 | |
*** SergeyLukjanov has quit IRC | 16:35 | |
*** dontalton has quit IRC | 16:37 | |
*** jamespage_ has joined #openstack-dev | 16:37 | |
*** nati_ueno has quit IRC | 16:37 | |
*** terryh has joined #openstack-dev | 16:38 | |
*** lucasagomes has quit IRC | 16:39 | |
*** yamahata_ has quit IRC | 16:39 | |
openstackgerrit | A change was merged to openstack/python-keystoneclient: Securely create signing_dir (bug 1174608) https://review.openstack.org/28572 | 16:42 |
uvirtbot | Launchpad bug 1174608 in nova "Insecure directory creation for signing" [High,In progress] https://launchpad.net/bugs/1174608 | 16:42 |
*** tpatil has joined #openstack-dev | 16:42 | |
*** bdpayne has quit IRC | 16:43 | |
*** rohitk has quit IRC | 16:44 | |
*** bdpayne has joined #openstack-dev | 16:45 | |
*** wiliam_ has quit IRC | 16:45 | |
*** cmark has joined #openstack-dev | 16:45 | |
*** FatDarrel has quit IRC | 16:47 | |
*** wiliam_ has joined #openstack-dev | 16:47 | |
*** cmark has quit IRC | 16:48 | |
*** cmark has joined #openstack-dev | 16:48 | |
*** Hien has joined #openstack-dev | 16:48 | |
*** devoid has joined #openstack-dev | 16:48 | |
*** tpatil has quit IRC | 16:50 | |
*** pfreund has joined #openstack-dev | 16:50 | |
*** SumitNaiksatam has quit IRC | 16:51 | |
*** wiliam_ has quit IRC | 16:53 | |
*** wiliam_ has joined #openstack-dev | 16:54 | |
*** martine has quit IRC | 16:54 | |
*** devoid has quit IRC | 16:55 | |
*** martine has joined #openstack-dev | 16:55 | |
*** derekh has quit IRC | 16:57 | |
*** Mandell has joined #openstack-dev | 16:58 | |
*** jjmb has joined #openstack-dev | 16:59 | |
*** wiliam_ has quit IRC | 17:00 | |
jgriffith | adam_g_: to the rescue again... thanks! | 17:01 |
*** vkmc has quit IRC | 17:01 | |
*** danpb has quit IRC | 17:01 | |
*** wiliam_ has joined #openstack-dev | 17:02 | |
*** reed has joined #openstack-dev | 17:02 | |
*** vartom1119 has joined #openstack-dev | 17:02 | |
*** marun has joined #openstack-dev | 17:03 | |
*** amotoki has quit IRC | 17:03 | |
*** GheRivero is now known as Ghe-afk | 17:04 | |
*** anniec has joined #openstack-dev | 17:05 | |
*** annegentle has joined #openstack-dev | 17:08 | |
*** nati_ueno has joined #openstack-dev | 17:09 | |
*** brunnhilde has joined #openstack-dev | 17:09 | |
*** zaitcev has joined #openstack-dev | 17:10 | |
*** wiliam_ has quit IRC | 17:11 | |
*** lloydde has joined #openstack-dev | 17:12 | |
*** jog0 has joined #openstack-dev | 17:14 | |
*** bpoulos has joined #openstack-dev | 17:14 | |
gyee | ayoung, you approve https://review.openstack.org/#/c/28133/ already | 17:15 |
gyee | I was commending on it | 17:15 |
gyee | commenting | 17:15 |
*** adjohn has joined #openstack-dev | 17:16 | |
*** portante has joined #openstack-dev | 17:16 | |
*** vartom11110 has joined #openstack-dev | 17:17 | |
*** vartom1119 has quit IRC | 17:18 | |
*** anniecheng has joined #openstack-dev | 17:18 | |
*** sstent_ has quit IRC | 17:20 | |
*** sstent has joined #openstack-dev | 17:20 | |
*** networkstatic has quit IRC | 17:20 | |
*** Ryan_Lane has joined #openstack-dev | 17:23 | |
*** wiliam_ has joined #openstack-dev | 17:23 | |
*** JordanP has joined #openstack-dev | 17:23 | |
*** lloydde has quit IRC | 17:25 | |
*** JordanP has joined #openstack-dev | 17:26 | |
*** sarob_ has joined #openstack-dev | 17:26 | |
*** toddnni has joined #openstack-dev | 17:27 | |
*** wiliam_ has quit IRC | 17:28 | |
*** sarob has quit IRC | 17:30 | |
*** sarob has joined #openstack-dev | 17:35 | |
*** sarob_ has quit IRC | 17:36 | |
*** SergeyLukjanov has joined #openstack-dev | 17:36 | |
*** vartom11110 has quit IRC | 17:38 | |
*** jamespage_ has quit IRC | 17:39 | |
*** kobier has quit IRC | 17:39 | |
*** lloydde has joined #openstack-dev | 17:40 | |
*** chuck_ has quit IRC | 17:41 | |
openstackgerrit | A change was merged to openstack/horizon: Enable using multiple API versions for Identity Service. https://review.openstack.org/27989 | 17:42 |
*** wiliam_ has joined #openstack-dev | 17:42 | |
*** marcusk has joined #openstack-dev | 17:42 | |
ayoung | gyee, sorry, didn't realize. I had reviewed it several times, but held off. | 17:44 |
*** dguitarbite has quit IRC | 17:45 | |
*** maoy_ has joined #openstack-dev | 17:45 | |
*** maoy has quit IRC | 17:45 | |
*** maoy_ is now known as maoy | 17:45 | |
ayoung | gyee, but all tokens end up in the archival table, so the grace period is probably not necessary | 17:45 |
gyee | ayoung, what about doc changes | 17:45 |
ayoung | gyee, instead, modify your script to only delete from the archival table tokens that are outside the window | 17:46 |
ayoung | gyee, yep, that should happen | 17:46 |
gyee | ayoung, yeah, I'll have to scan both tables | 17:46 |
ayoung | gyee, do you know if you -1 stops the gate? | 17:46 |
ayoung | gyee, nope | 17:46 |
ayoung | run the cli and then just scan the old table | 17:46 |
*** dontalton has joined #openstack-dev | 17:47 | |
*** m4xmr has joined #openstack-dev | 17:47 | |
ayoung | ah...you are referring to the "delete" options | 17:47 |
gyee | right | 17:47 |
gyee | that way, I don't need to maintain two tables | 17:47 |
ayoung | gyee, true, although two tables doesn't hurt anything. I would also like it to be possible to have the archival table in a different partition. | 17:48 |
gyee | agreed. that table will grow | 17:49 |
ayoung | gyee, can the grace period be a separate patch, then? | 17:49 |
ayoung | It seems wrong to hold up a patch due to a feature request coming in during a code review | 17:49 |
gyee | ayoung, I am fine with that | 17:49 |
ayoung | cool. lets look at the gate | 17:49 |
gyee | k | 17:49 |
ayoung | gyee, think the gate is progressing. | 17:50 |
ayoung | I'll ping jamie to update the docs tonight. He's 10 hours out of phase with me in Australia, so he'll probably have it by tomorrow | 17:50 |
gyee | ayoung, sound good, thanks | 17:51 |
ayoung | gyee, https://review.openstack.org/#/c/27878/ might be just what we need | 17:51 |
ayoung | ability to run the unit tests against mysql and postgres.... | 17:51 |
*** comay has quit IRC | 17:51 | |
gyee | ayoung, I'll look, I am slowly going through the reviews | 17:52 |
*** CaptTofu has quit IRC | 17:52 | |
gyee | was swamped the last few days | 17:52 |
*** jjmb has quit IRC | 17:53 | |
*** CaptTofu has joined #openstack-dev | 17:56 | |
*** otherwiseguy has quit IRC | 17:57 | |
stevemar | termie: ping | 17:57 |
*** jclift_ has quit IRC | 17:58 | |
simo | ayoung: where is the kvs store in keystone by default ? | 18:00 |
*** zul has joined #openstack-dev | 18:00 | |
*** wiliam_ has quit IRC | 18:00 | |
*** nati_ueno has quit IRC | 18:00 | |
*** wiliam_ has joined #openstack-dev | 18:01 | |
*** beagles is now known as beagles_brb | 18:01 | |
*** dims has quit IRC | 18:02 | |
ayoung | simo, memory only | 18:03 |
*** lloydde has quit IRC | 18:03 | |
ayoung | simo, for a persisted store, you want memcached | 18:03 |
*** jamespage_ has joined #openstack-dev | 18:03 | |
*** networkstatic has joined #openstack-dev | 18:03 | |
*** flaper87 has quit IRC | 18:04 | |
*** yolanda has joined #openstack-dev | 18:05 | |
*** wiliam_ has quit IRC | 18:06 | |
*** galstrom_zzz is now known as galstrom | 18:06 | |
*** reed has quit IRC | 18:07 | |
*** wiliam_ has joined #openstack-dev | 18:07 | |
*** freedomhui has left #openstack-dev | 18:08 | |
*** heller-mobi has joined #openstack-dev | 18:09 | |
*** novas0x2a|laptop has quit IRC | 18:12 | |
*** pabelanger has quit IRC | 18:13 | |
*** dims has joined #openstack-dev | 18:15 | |
*** Hien has quit IRC | 18:16 | |
simo | ayoung: memcached is persistent ? | 18:16 |
ayoung | simo, yes | 18:16 |
*** pabelanger has joined #openstack-dev | 18:16 | |
simo | odd, I always used it as a non persistent cache | 18:16 |
simo | ok | 18:16 |
ayoung | not sure how, I think to a flat file, and have not looked in to security | 18:16 |
simo | I encrypt everything so for now we can gloss over security :) | 18:17 |
ayoung | simo, good point. But people are using it for persistence, just not sure how | 18:17 |
simo | ayoung: is there any backend that uses memcahed in keystone ? | 18:17 |
simo | should I use sql instead ? | 18:17 |
*** zul has quit IRC | 18:18 | |
*** Hien has joined #openstack-dev | 18:18 | |
*** krtaylor has quit IRC | 18:19 | |
*** jamespage_ has quit IRC | 18:19 | |
*** FatDarrel has joined #openstack-dev | 18:20 | |
dolphm | ayoung: simo: memcache is not persistant to disk | 18:20 |
dolphm | simo: one of the token drivers is based on memcache | 18:21 |
*** flaper87 has joined #openstack-dev | 18:21 | |
dolphm | the lack of persistence is convenient because if you need to revoke a bunch of tokens you can just restart memcache instead :) | 18:21 |
*** reed has joined #openstack-dev | 18:24 | |
cmark | in keystone, what's the rationale for making roles global (as opposed to maybe scoping them to a project)? It just seems that if someone wanted to configure a lot of fine-grained policies for several different services, the global list of roles could grow to be quite large | 18:25 |
cmark | let me know if this is more appropriate in the non-dev channel | 18:25 |
dolphm | cmark: we'd like to make them non-global, but there's a bunch of blockers to making in happen in a backwards-compatible manner... you're welcome to work on it, i'm not aware of anyone else tackling atm | 18:26 |
dolphm | cmark: i haven't heard of anyone bring up per-service roles, though... per-domain is the general ask i've seen | 18:27 |
openstackgerrit | A change was merged to openstack/quantum: Avoid extra queries when retrieving routers https://review.openstack.org/28550 | 18:28 |
simo | dolphm: that was my understanding (not persistent) which makes it unsuitable for shared keys | 18:28 |
simo | dolphm: is sql the only default persistent database ? | 18:29 |
cmark | dolphm: conceptually, a role really has no meaning unless it's associated with a user-domain or user-project relationship. I guess it's a bit tricky deciding how it should be scoped | 18:29 |
cmark | i guess we could have domain-roles and project-roles | 18:29 |
dolphm | simo: yes, but termie has a cassandra driver that may merge in havana | 18:30 |
dolphm | cmark: +1 to the meaning; you mean domain-owned roles and project-owned roles? | 18:31 |
simo | dolphm: ok I will check how to use the sql backend then, I guess I will have to create a new table and so on | 18:31 |
cmark | dolphm: affirmative | 18:31 |
dolphm | cmark: btw, this conversation was sort of halted by the proposal to turn 'roles' into much more 'attributes' of users, but the context of how those attributes relates to domains/projects wasn't discussed as thoroughly | 18:32 |
dolphm | much more generic* 'attributes' | 18:32 |
dolphm | simo: db_sync will create that table for you ('token') | 18:33 |
*** dolphm has quit IRC | 18:33 | |
simo | token ? | 18:33 |
*** Ghe-afk is now known as GheRivero | 18:33 | |
*** lloydde has joined #openstack-dev | 18:33 | |
*** dani4571 has joined #openstack-dev | 18:36 | |
*** mmagr has joined #openstack-dev | 18:38 | |
*** comay has joined #openstack-dev | 18:38 | |
*** beagles_brb is now known as beagles | 18:39 | |
*** egallen has joined #openstack-dev | 18:39 | |
*** terryh has quit IRC | 18:41 | |
cmark | Another keystone question...I assume that domains were added as a way to support multi-tenancy. Is it intentional that services are global, or should they also be scoped to individual domains? | 18:41 |
*** mkollaro has joined #openstack-dev | 18:41 | |
*** lloydde has quit IRC | 18:43 | |
*** egallen has quit IRC | 18:43 | |
*** novas0x2a|laptop has joined #openstack-dev | 18:45 | |
*** jamespage_ has joined #openstack-dev | 18:45 | |
*** utlemming has quit IRC | 18:47 | |
*** utlemming has joined #openstack-dev | 18:48 | |
*** zul has joined #openstack-dev | 18:48 | |
*** johnthetubaguy has quit IRC | 18:49 | |
*** devoid has joined #openstack-dev | 18:51 | |
*** arosen has joined #openstack-dev | 18:52 | |
*** egallen has joined #openstack-dev | 18:53 | |
spzala | ayoung: just tried read-only LDAP with the patch changes and verified it didn't break anything. this is how I did - https://etherpad.openstack.org/readonly-default-domain | 18:53 |
spzala | ayoung: please take a look when you get chance | 18:53 |
ayoung | spzala, on it | 18:53 |
arosen | Hi i was wondering if anyone knew when : http://docs.openstack.org/api/openstack-network/2.0/content/ch_preface.html would be updated ? | 18:54 |
spzala | ayoung: :) thanks! | 18:54 |
*** devoid has left #openstack-dev | 18:54 | |
ayoung | spzala I assume you also add a few users by hand and have confirmed that Keystone works as per normal with LDAP in read only mode? | 18:54 |
*** utlemming has quit IRC | 18:54 | |
ayoung | CLI operations, create and validate tokens and the like? | 18:54 |
arosen | ah nvm the doc i'm looking for hasn't merged... | 18:55 |
spzala | ayoung: I created user and group | 18:55 |
ayoung | spzala, add it to the etherpad, as people are going to need to do the same | 18:55 |
*** jamespage__ has joined #openstack-dev | 18:56 | |
*** otherwiseguy has joined #openstack-dev | 18:56 | |
*** sudorandom has quit IRC | 18:56 | |
spzala | ayoung: OK, cool. I will try adding more detail in etherpad link I sent to you, and we can share it with all | 18:56 |
ayoung | spzala, good stuff | 18:57 |
spzala | ayoung: :) OK | 18:57 |
*** zzs has joined #openstack-dev | 18:57 | |
spzala | ayoung: thanks!! I will need to make few changes per review feedback and update the new patch | 18:58 |
*** egallen has quit IRC | 18:58 | |
*** jamespage_ has quit IRC | 18:58 | |
*** krtaylor has joined #openstack-dev | 18:59 | |
*** egallen has joined #openstack-dev | 18:59 | |
*** cp16net is now known as cp16net|away | 19:00 | |
*** cp16net|away is now known as cp16net | 19:00 | |
*** jecarey has quit IRC | 19:02 | |
*** m4xmr has quit IRC | 19:02 | |
*** gyee has quit IRC | 19:03 | |
openstackgerrit | A change was merged to openstack/glance: Fix test_mismatched_X test data deletion check https://review.openstack.org/28446 | 19:03 |
openstackgerrit | A change was merged to openstack/quantum: Imported Translations from Transifex https://review.openstack.org/28536 | 19:03 |
openstackgerrit | A change was merged to openstack/quantum: Copy the RHEL6 eventlet workaround from Oslo https://review.openstack.org/28025 | 19:03 |
*** arbrandes has joined #openstack-dev | 19:09 | |
*** openstackgerrit has quit IRC | 19:09 | |
*** openstackgerrit has joined #openstack-dev | 19:10 | |
*** drewlander has quit IRC | 19:11 | |
*** dhellmann has joined #openstack-dev | 19:11 | |
*** lpmulligan has quit IRC | 19:11 | |
*** mmagr has quit IRC | 19:13 | |
*** markmcclain has quit IRC | 19:13 | |
*** arbrandes has quit IRC | 19:13 | |
*** erkules has joined #openstack-dev | 19:15 | |
*** vipul is now known as vipul|away | 19:16 | |
erkules | ahoi, where can I read up why OS choose token authentication instead of aws like accesskeys? | 19:16 |
bnemec | I'm looking at ways to fix https://bugs.launchpad.net/nova/+bug/1175808 | 19:17 |
*** markmcclain has joined #openstack-dev | 19:17 | |
uvirtbot | Launchpad bug 1175808 in oslo "Qpid cannot serialize objects containing strings longer than 65535 characters" [Undecided,New] | 19:17 |
*** litong has joined #openstack-dev | 19:17 | |
bnemec | The simplest and cleanest option would be to make the change in common RPC code, but that would affect the other messaging providers too so I assume it isn't going to fly. | 19:18 |
bnemec | However, fixing it in the Qpid code requires the Qpid implementation to know at least a little about the envelope format, which is also not a good thing. | 19:18 |
*** egallen has quit IRC | 19:18 | |
ayoung | spzala, what about the code https://review.openstack.org/#/c/26994/3 | 19:18 |
ayoung | erkules, ancient history. My understanding is that we inherited what Rack Space had already implemented. | 19:19 |
*** egallen has joined #openstack-dev | 19:20 | |
ayoung | OK, mysql is not willing to drop column constraints? | 19:21 |
erkules | ayoung: I was hoping for technical reasons. A colleague told me there are a lot of security issues with tokens and thats why he is offering the EC2 api of OS only :( | 19:22 |
erkules | ayoung: are you talking about foreign key constraints? check constraints are not implemented by mysql | 19:24 |
*** stevebaker has quit IRC | 19:24 | |
ayoung | erkules, I don't know the EC2 api well enough to know if they suffer from the same problems as Keystone tokens. As I see it, the biggest issue with Keystone is that the tokens are bearer tokens, and thus vulnerable to a replay attack. | 19:24 |
spzala | ayoung: hmm.. with ignoring domain_id it's not a problem now right? also, we use the id of domain to get the domain, not the domain_id attribute | 19:24 |
ayoung | erkules, yea, but we add the constraints on to the database, and I am just trying to drop them | 19:24 |
ayoung | spzala, good to know | 19:24 |
*** alunduil has quit IRC | 19:24 | |
spzala | ayoung: sure | 19:25 |
*** heller-mobi has quit IRC | 19:25 | |
*** stevebaker has joined #openstack-dev | 19:26 | |
erkules | ayoung: would you pastebin the create table and error? | 19:26 |
*** jruzicka has quit IRC | 19:29 | |
*** arbrandes has joined #openstack-dev | 19:30 | |
*** yolanda has quit IRC | 19:31 | |
*** rnirmal has quit IRC | 19:31 | |
*** garyk has quit IRC | 19:33 | |
*** adjohn has quit IRC | 19:34 | |
openstackgerrit | A change was merged to openstack/nova: Remove insecure default for signing_dir option. https://review.openstack.org/28568 | 19:35 |
*** jamespage__ has quit IRC | 19:36 | |
*** zul has quit IRC | 19:36 | |
ayoung | erkules, it is a side effect of http://bugs.mysql.com/bug.php?id=10333 | 19:38 |
*** lloydde has joined #openstack-dev | 19:38 | |
ayoung | erkules, I can execute the following sql and it works ok: session.execute('ALTER TABLE credential DROP FOREIGN KEY credential_ibfk_1;') | 19:38 |
*** SergeyLukjanov has quit IRC | 19:39 | |
*** topol has quit IRC | 19:40 | |
erkules | ayoung: thats the correct syntax anyway. So you where not using the constraint name in the first place? | 19:40 |
erkules | often made :) | 19:41 |
*** cp16net is now known as cp16net|away | 19:41 | |
*** dolphm has joined #openstack-dev | 19:42 | |
*** cp16net|away is now known as cp16net | 19:42 | |
*** dolphm has quit IRC | 19:46 | |
*** alunduil has joined #openstack-dev | 19:47 | |
*** pabelanger has quit IRC | 19:49 | |
*** radez is now known as radez_g0n3 | 19:49 | |
ayoung | erkules, the mistake is being made by sqlalchemy | 19:52 |
*** koolhead17 has quit IRC | 19:53 | |
ayoung | erkules, it also is not the sql standard, but mysql never really cared to much about those anyways | 19:53 |
*** alop has quit IRC | 19:55 | |
*** alop has joined #openstack-dev | 19:56 | |
*** networkstatic has quit IRC | 19:59 | |
*** adjohn has joined #openstack-dev | 20:05 | |
ayoung | erkules, and it seems that there is no clean way to get the real constraint from the fk definition | 20:05 |
marun | markmcclain: ping | 20:05 |
markmcclain | pong | 20:05 |
*** vipul|away is now known as vipul | 20:07 | |
marun | markmcclain: I've noticed that the ovs l2 agent and the dhcp agent use an outsized amount of cpu | 20:07 |
marun | markmcclain: in the l2 agent's case, it's using an order of magnitude more cpu (user and system) than any other openstack service | 20:08 |
erkules | ayoung: I don't know the iso standard to drop a FK constraint | 20:08 |
marun | markmcclain: is this normal? | 20:08 |
erkules | ayoung: maybe you want to have a look at INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS | 20:08 |
*** cp16net is now known as cp16net|away | 20:10 | |
markmcclain | marun: the l2 OVS agent runs lots subprocesses | 20:10 |
*** abhishekkr has quit IRC | 20:10 | |
*** stevemar has quit IRC | 20:10 | |
ayoung | erkules, looking, thanks. | 20:10 |
*** jamespage__ has joined #openstack-dev | 20:11 | |
erkules | ayoung: yw | 20:11 |
markmcclain | marun: we might need to profile it to see if we can make it more efficient | 20:11 |
*** jamespage__ has quit IRC | 20:11 | |
marun | markmcclain: i think the current method of polling ovs is simply broken | 20:11 |
marun | markmcclain: at the least, enabling a local event-based trigger against ovs should be considered. though i'm still biased towards a lightweight controller. | 20:12 |
marun | markmcclain: running devstack on a vm on a 2.5ghz machine, the l2 and dhcp agents cummulatively use 75-90% cpu usage in the vm. | 20:13 |
ayoung | erkules, I was close, but looking in the wrong table. WHat I need is select CONSTRAINT_NAME from INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS where table_name = 'credential'; | 20:14 |
ayoung | lets see if I can do that from sqlalchemy now | 20:14 |
*** adjohn has quit IRC | 20:14 | |
marun | markmcclain: that's just insane. I imagine a multicore baremetal compute node wouldn't feel the load as much, but still. | 20:14 |
marun | markmcclain: And I would note that the usage I'm seeing is on an idle box - no VM's were provisioned. | 20:15 |
markmcclain | marun: file a bug for us to look at CPU usage of the l2 agent | 20:16 |
marun | markmcclain: will do | 20:16 |
FatDarrel | ok on oppenstack i have a vm and i cannot ssh or ping it? Any ideas | 20:17 |
markmcclain | marun: thanks | 20:17 |
*** Aarti has joined #openstack-dev | 20:18 | |
marun | FatDarrel: That sounds like it might be a better question for #openstack. | 20:18 |
*** cp16net|away is now known as cp16net | 20:19 | |
FatDarrel | marun: why? | 20:19 |
Aarti | russellb: hello | 20:20 |
marun | FatDarrel: Are you a programmer? | 20:20 |
FatDarrel | marun: oh yes | 20:21 |
marun | FatDarrel: And you are developing against OpenStack? | 20:21 |
Aarti | was thinking if I could volunteer for https://blueprints.launchpad.net/nova/+spec/mandatory-vm-lock | 20:21 |
FatDarrel | marun: oh yes | 20:21 |
marun | FatDarrel: The reason I ask is that a question like that doesn't give anyone enough info to help you, so I presume you're relatively new to OpenStack. | 20:22 |
Aarti | russellb: how do I submit a patch on top of the existing one? | 20:22 |
russellb | Aarti: what do you mean? update an existing patch up for review? | 20:22 |
marun | FatDarrel: The #openstack channel will be a better venue to find help for more basic issues like 'can't connect to vm' | 20:22 |
erkules | ayoung++ :) | 20:22 |
Aarti | russellb: yes.. Is it under development still? | 20:22 |
russellb | Aarti: is what under development? | 20:23 |
FatDarrel | marun: what about keystone problems | 20:23 |
Aarti | https://review.openstack.org/#/c/21535/ | 20:23 |
Aarti | for blueprint https://blueprints.launchpad.net/nova/+spec/mandatory-vm-lock | 20:23 |
russellb | Aarti: to update an existing review, you just hack the code and amend the commit ... (git commit --amend) | 20:23 |
marun | FatDarrel: That would be operational as well. | 20:23 |
*** zul has joined #openstack-dev | 20:23 | |
russellb | Aarti: as long as the commit retains the original Change-Id, then it will upload another revision to gerrit | 20:23 |
russellb | ohhhhh | 20:24 |
FatDarrel | marun: what are about a schema change in keystone? | 20:24 |
marun | FatDarrel: Operational and configuration-related issues are more productively asked about in #openstack. | 20:24 |
FatDarrel | ok | 20:24 |
russellb | Aarti: in that case, I would start a new review | 20:24 |
Aarti | russellb: hmm and what about the similar effort done as part of the earlier review? | 20:25 |
*** spzala has quit IRC | 20:25 | |
russellb | Aarti: well, you can ask Phil Day to restore that review, and then you should be able to update it | 20:26 |
Aarti | anyway my main question was whether someone is working in it already.. looks like none | 20:26 |
russellb | Aarti: as long as its in the abandoned state, you wo'nt be able to update it | 20:26 |
Aarti | ok I will ask him | 20:26 |
sdague | annegentle: hey, you around? | 20:26 |
sdague | I wanted some thoughts on turning a bunch of readmes into a new qa site | 20:26 |
annegentle | sdague: hey | 20:26 |
annegentle | sdague: looking to revitalize the sad http://qa.openstack.org/? | 20:27 |
sdague | as we're starting to document tempest chunks as part of a restructure | 20:27 |
sdague | annegentle: yes, well as a piece of this | 20:27 |
*** alunduil has quit IRC | 20:28 | |
sdague | so in restructuring tempest for clarity we're going to have a set of directories that each have their own README like this - https://review.openstack.org/#/c/28582/2/tempest/cli/README.rst | 20:28 |
*** abhishekkr has joined #openstack-dev | 20:28 | |
sdague | I want to use basic markup there to be README friendly, but any thoughts you might have about the right way to do those so I could have a job that assembled them into a new qa.openstack.org would be useful | 20:29 |
sdague | because doing both at once would be a big win | 20:29 |
Aarti | russellb: so just to confirm, what we're looking at is: if an admin locks the instance, nobody(even an admin) can perform any action until its unlocked by an admin | 20:29 |
ayoung | erkules, for constraint in session.execute("select CONSTRAINT_NAME from INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS where table_name = 'credential'"): | 20:29 |
ayoung | session.execute('ALTER TABLE credential DROP FOREIGN KEY %s;' % constraint[0]) | 20:29 |
Aarti | russellb: I meant *cannot | 20:29 |
russellb | Aarti: i think that was the idea | 20:29 |
Aarti | cool.. just making sure we're on the same page.. thank you :) | 20:30 |
ayoung | a thing of beauty is a joy forever. That sql is not a joy forever. Draw the obvious conclusion | 20:30 |
Aarti | russellb: one more question, maybe its something historical that I've missed but why din't we use disable_terminate field for locking? | 20:31 |
Aarti | I mean its just makes it confusing, two ways to do similar things | 20:32 |
*** gyee has joined #openstack-dev | 20:32 | |
russellb | Aarti: disable_terminate is an EC2 API thing | 20:34 |
russellb | that's the only place it's exposed AFAICT | 20:34 |
Aarti | but its used for the same functionality and we had that field on instances anyway.. | 20:35 |
*** acfleury has quit IRC | 20:37 | |
Aarti | we could expose it in nova api instead of exposing lock | 20:37 |
*** adjohn has joined #openstack-dev | 20:40 | |
*** dprince has quit IRC | 20:45 | |
*** adjohn has quit IRC | 20:45 | |
*** FatDarrel has quit IRC | 20:47 | |
*** Yada has joined #openstack-dev | 20:47 | |
*** glikson has quit IRC | 20:49 | |
*** FatDarrel has joined #openstack-dev | 20:50 | |
*** Ryan_Lane has quit IRC | 20:51 | |
*** alop has quit IRC | 20:51 | |
*** giulivo has quit IRC | 20:52 | |
FatDarrel | i looped the network | 20:52 |
*** bswartz has quit IRC | 20:52 | |
*** alop has joined #openstack-dev | 20:52 | |
*** matiu has joined #openstack-dev | 20:57 | |
*** jamespage_ has joined #openstack-dev | 21:03 | |
*** andrewbogott is now known as andrewbogott_afk | 21:03 | |
*** zul has quit IRC | 21:04 | |
*** adjohn has joined #openstack-dev | 21:06 | |
*** mkollaro has quit IRC | 21:07 | |
*** digitalsanctum has quit IRC | 21:09 | |
*** alunduil has joined #openstack-dev | 21:11 | |
*** johnpur has quit IRC | 21:11 | |
*** martine has quit IRC | 21:12 | |
*** sandywalsh has quit IRC | 21:14 | |
*** RajeshMohan has quit IRC | 21:14 | |
*** pcm__ has quit IRC | 21:15 | |
*** lloydde has quit IRC | 21:16 | |
openstackgerrit | A change was merged to openstack/nova: Session cleanup for db.floating_ip_* methods https://review.openstack.org/28235 | 21:16 |
openstackgerrit | A change was merged to openstack/tempest: Put the logic from devstack gate into tox. https://review.openstack.org/28066 | 21:16 |
*** zul has joined #openstack-dev | 21:17 | |
*** sandywalsh has joined #openstack-dev | 21:18 | |
*** terryh has joined #openstack-dev | 21:18 | |
bknudson | looking for some help running keystone tests against mysql... getting "ImportError: No module named MySQLdb" | 21:19 |
*** danwent has quit IRC | 21:19 | |
bknudson | I thought there were docs but I can't find them. | 21:19 |
*** hazmat has joined #openstack-dev | 21:19 | |
*** hazmat has joined #openstack-dev | 21:19 | |
*** shardy is now known as shardy_afk | 21:20 | |
*** vipul is now known as vipul|away | 21:20 | |
bknudson | Found ayoung's abandoned patch with the packages I need. | 21:22 |
*** Ryan_Lane has joined #openstack-dev | 21:22 | |
*** stevebaker has quit IRC | 21:24 | |
*** gordc has quit IRC | 21:25 | |
*** alexpilotti has joined #openstack-dev | 21:26 | |
*** dolphm has joined #openstack-dev | 21:27 | |
*** danwent has joined #openstack-dev | 21:28 | |
*** melwitt has joined #openstack-dev | 21:29 | |
*** stevebaker has joined #openstack-dev | 21:31 | |
*** beagles has quit IRC | 21:32 | |
*** alexpilotti has quit IRC | 21:33 | |
*** beagles has joined #openstack-dev | 21:34 | |
*** zul has quit IRC | 21:35 | |
*** dosaboy has quit IRC | 21:35 | |
*** jamespage_ has quit IRC | 21:37 | |
*** dosaboy has joined #openstack-dev | 21:37 | |
*** armax has left #openstack-dev | 21:39 | |
*** Ryan_Lane1 has joined #openstack-dev | 21:39 | |
ayoung | bknudson, right...would like to actually get those in. | 21:41 |
*** vipul|away is now known as vipul | 21:41 | |
*** markmcclain has quit IRC | 21:41 | |
*** Ryan_Lane has quit IRC | 21:41 | |
*** ayoung is now known as ayoung-afk | 21:41 | |
*** lauria has quit IRC | 21:44 | |
bknudson | ayoung-afk: I added the mysql package, still getting errors, "Table 'keystone_test.domain' doesn't exist" assume this means I need to keystone-manage my test db. | 21:45 |
*** zul has joined #openstack-dev | 21:47 | |
*** dani4571 has quit IRC | 21:47 | |
*** jasondotstar has quit IRC | 21:47 | |
*** afazekas has quit IRC | 21:50 | |
*** litong has quit IRC | 21:53 | |
*** networkstatic has joined #openstack-dev | 21:54 | |
openstackgerrit | A change was merged to openstack/nova: Removes duplicate assertEqual https://review.openstack.org/28602 | 21:55 |
*** Ryan_Lane1 is now known as Ryan_Lane | 21:55 | |
*** Ryan_Lane has joined #openstack-dev | 21:55 | |
*** bswartz has joined #openstack-dev | 21:57 | |
*** sacharya has quit IRC | 21:57 | |
*** READ10 has quit IRC | 21:59 | |
FatDarrel | oh openstack | 21:59 |
*** krtaylor has quit IRC | 21:59 | |
*** Aarti has quit IRC | 22:00 | |
*** morazi has quit IRC | 22:01 | |
*** dhellmann has quit IRC | 22:02 | |
*** redbeard2 has quit IRC | 22:03 | |
*** anniec has quit IRC | 22:05 | |
*** ijw has joined #openstack-dev | 22:07 | |
*** danwent has quit IRC | 22:09 | |
*** kbringard has quit IRC | 22:10 | |
*** bpoulos has quit IRC | 22:10 | |
*** lloydde has joined #openstack-dev | 22:10 | |
bknudson | I ran keystone-manage and now get "Conflict occurred attempting to store metadata. (1062, "Duplicate entry 'sna-mtu' for key 'PRIMARY'")" | 22:11 |
*** apevec has joined #openstack-dev | 22:13 | |
*** anniec has joined #openstack-dev | 22:13 | |
*** dims has quit IRC | 22:14 | |
*** boris-42 has quit IRC | 22:16 | |
FatDarrel | bknudson: you are stuck! | 22:16 |
bknudson | FatDarrel: I've got the source code so not really stuck. | 22:18 |
bknudson | just wondering if someone had run into this before and worked around it. | 22:18 |
*** kbrierly has quit IRC | 22:18 | |
*** electrichead has quit IRC | 22:19 | |
*** lucasagomes has joined #openstack-dev | 22:21 | |
*** danwent has joined #openstack-dev | 22:22 | |
*** mrodden has quit IRC | 22:23 | |
*** fesp has joined #openstack-dev | 22:23 | |
*** ladquin is now known as ladquin_brb | 22:25 | |
*** flaper87 has quit IRC | 22:25 | |
*** yidclare has quit IRC | 22:25 | |
*** arbrandes has quit IRC | 22:25 | |
*** dims has joined #openstack-dev | 22:27 | |
*** eglynn has quit IRC | 22:27 | |
FatDarrel | might be a problem with the mysqld? | 22:27 |
*** yidclare has joined #openstack-dev | 22:29 | |
bknudson | I picked up Jamie Lennox's pending patch and that's working better. | 22:29 |
*** cloudchimp has quit IRC | 22:35 | |
ayoung-afk | bknudson, I'm probably gone for the night. Send me an email if you are stuck | 22:38 |
*** Ryan_Lane has quit IRC | 22:42 | |
*** dolphm has quit IRC | 22:44 | |
*** fesp has left #openstack-dev | 22:48 | |
*** fesp has quit IRC | 22:48 | |
*** alop has quit IRC | 22:48 | |
*** jhesketh has joined #openstack-dev | 22:51 | |
*** pabelanger_ has quit IRC | 22:52 | |
*** pabelanger has joined #openstack-dev | 22:52 | |
*** galstrom is now known as galstrom_zzz | 22:52 | |
*** pfreund has quit IRC | 22:54 | |
*** katylava has quit IRC | 22:54 | |
*** dolphm has joined #openstack-dev | 22:54 | |
*** jayg is now known as jayg|g0n3 | 22:55 | |
*** lychinus has joined #openstack-dev | 22:56 | |
lychinus | good evening! anyone that has worked with nova-scheduler before? | 22:57 |
*** alexxu has quit IRC | 22:58 | |
*** jhesketh has quit IRC | 22:59 | |
*** alop has joined #openstack-dev | 22:59 | |
openstackgerrit | A change was merged to openstack-infra/devstack-gate: Add pbr to the devstack-gate. https://review.openstack.org/28586 | 22:59 |
*** jhesketh__ has joined #openstack-dev | 23:00 | |
*** apevec has quit IRC | 23:01 | |
*** rcleere has quit IRC | 23:02 | |
*** egallen has quit IRC | 23:07 | |
*** megha has quit IRC | 23:07 | |
*** baba has joined #openstack-dev | 23:08 | |
*** lucasagomes has quit IRC | 23:08 | |
*** lloydde has quit IRC | 23:08 | |
*** lloydde has joined #openstack-dev | 23:09 | |
*** egallen has joined #openstack-dev | 23:10 | |
*** lychinus has left #openstack-dev | 23:11 | |
*** michchap has quit IRC | 23:11 | |
*** michchap has joined #openstack-dev | 23:12 | |
*** lloydde has quit IRC | 23:14 | |
*** otherwiseguy has quit IRC | 23:17 | |
*** ijw1 has joined #openstack-dev | 23:17 | |
*** ijw has quit IRC | 23:17 | |
*** sacharya has joined #openstack-dev | 23:18 | |
*** acfleury has joined #openstack-dev | 23:19 | |
*** egallen has quit IRC | 23:19 | |
*** krtaylor has joined #openstack-dev | 23:19 | |
*** lloydde has joined #openstack-dev | 23:31 | |
*** datsun180b has quit IRC | 23:34 | |
*** hemna is now known as hemnafk | 23:37 | |
*** ijw1 has quit IRC | 23:40 | |
*** ijw has joined #openstack-dev | 23:40 | |
*** CaptTofu has quit IRC | 23:44 | |
*** CaptTofu has joined #openstack-dev | 23:44 | |
*** mdenny has quit IRC | 23:46 | |
*** CaptTofu has quit IRC | 23:48 | |
*** CaptTofu has joined #openstack-dev | 23:48 | |
*** gmurphy has joined #openstack-dev | 23:49 | |
*** dolphm has quit IRC | 23:52 | |
*** yidclare has quit IRC | 23:54 | |
*** lloydde_ has joined #openstack-dev | 23:54 | |
*** yidclare has joined #openstack-dev | 23:55 | |
*** CaptTofu has quit IRC | 23:55 | |
*** CaptTofu has joined #openstack-dev | 23:55 | |
*** yidclare has quit IRC | 23:55 | |
*** lloydde has quit IRC | 23:56 | |
*** FnordDownUnder has joined #openstack-dev | 23:57 | |
*** shang has quit IRC | 23:58 | |
*** yidclare has joined #openstack-dev | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!