Wednesday, 2013-05-08

*** mgiles has joined #openstack-dev00:00
*** michchap_ has joined #openstack-dev00:01
*** michchap has quit IRC00:01
jamielennoxayoung: 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 IRC00:02
jamielennoxactually 608 chars00:03
*** bknudson has quit IRC00:05
*** jzigmund has quit IRC00:06
*** morganfainberg has quit IRC00:06
*** mrodden has quit IRC00:06
*** sudorandom has quit IRC00:08
*** shardy_afk has quit IRC00:08
*** vipul is now known as vipul|away00:10
*** jaypipes has quit IRC00:12
*** ndipanov has quit IRC00:12
*** manip has joined #openstack-dev00:12
*** jasondotstar has joined #openstack-dev00:12
*** manip has left #openstack-dev00:13
*** halj has quit IRC00:14
*** topol has quit IRC00:14
*** lauria has quit IRC00:14
*** lauria_ has joined #openstack-dev00:14
*** lauria_ is now known as lauria00:14
*** morganfainberg has joined #openstack-dev00:14
*** CaptTofu has quit IRC00:16
*** terryh has quit IRC00:17
*** yidclare has quit IRC00:17
*** galstrom_zzz is now known as galstrom00:18
*** armax_ has joined #openstack-dev00:19
*** armax_ has left #openstack-dev00:19
*** hemna_ has joined #openstack-dev00:19
*** cp16net_ has joined #openstack-dev00:20
*** edleafe has quit IRC00:20
*** cp16net has quit IRC00:20
*** kashyap has quit IRC00:20
*** cp16net_ is now known as cp16net00:20
*** gyee has quit IRC00:21
*** hemnafk has quit IRC00:21
*** shadower has quit IRC00:21
*** shadower has joined #openstack-dev00:21
*** edleafe has joined #openstack-dev00:21
*** kashyap has joined #openstack-dev00:21
*** bswartz has joined #openstack-dev00:22
*** sudorandom has joined #openstack-dev00:24
*** lloydde has quit IRC00:26
*** alexpilotti has quit IRC00:27
*** kagan has quit IRC00:30
*** zaitcev has quit IRC00:31
*** vipul|away is now known as vipul00:32
*** FatDarrel has joined #openstack-dev00:36
FatDarrelok how do i regenerate keystone admin keys again?00:36
*** jamespage_ has quit IRC00:39
*** shang has joined #openstack-dev00:40
*** Ryan_Lane has quit IRC00:41
*** jamespage_ has joined #openstack-dev00:42
*** dolphm has joined #openstack-dev00:42
*** shang has quit IRC00:46
*** dolphm has quit IRC00:47
*** vipul is now known as vipul|away00:48
*** martine has joined #openstack-dev00:50
*** vkmc has quit IRC00:50
*** vipul|away is now known as vipul00:52
*** rcleere has quit IRC00:53
*** maoy has joined #openstack-dev00:55
*** salv-orlando has quit IRC00:55
*** lloydde has joined #openstack-dev00:56
*** mgiles has quit IRC01:00
*** lloydde has quit IRC01:01
*** danwent has quit IRC01:02
*** toddnni has quit IRC01:06
*** toddnni has joined #openstack-dev01:07
*** riskable has quit IRC01:07
*** jhesketh has joined #openstack-dev01:07
ayoungjamielennox, just saw your post...looking now01:08
ayoungjamielennox, that value should get hashed.  We shouldn't be storing all 200 chars.  THat was working before, I believe01:10
jamielennoxi'm pretty sure that sqlite just ignores sql column limits01:10
jamielennoxand that mysql just truncates the value01:10
jamielennoxpg will raise an error and fail01:11
*** reed has quit IRC01:12
*** zb has joined #openstack-dev01:13
*** zaneb has quit IRC01:16
ayoungjamielennox, 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
ayoungjamielennox, ends up calling https://github.com/openstack/keystone/blob/master/keystone/token/backends/sql.py#L6401:18
ayoungwhich is01:18
jamielennoxyea, i'm looking there now01:18
ayounghttps://github.com/openstack/keystone/blob/master/keystone/token/core.py#L4501:19
*** FatDarrel has quit IRC01:19
jamielennoxhmm01:19
ayoungjamielennox, and cms.hash_token should be short enough01:19
*** freedomhui has joined #openstack-dev01:19
ayoungthat was why the test data was so long, to check that logic01:19
ayoungjamielennox, so I am still contemplating the amount of changes in the patch...01:20
jamielennoxyea,01:20
jamielennoxit turned out large01:20
jamielennoxi was hoping to keep the reorganize and the webtest bit seperate01:20
jamielennoxbut honestly i couldn't keep track of all the dependencies without the reorganize01:21
*** bdpayne has quit IRC01:21
ayoungits not bad, its just going to be a hard sell01:21
ayoungI'd like to have a bit more concrete value from webtest before we try to sell it01:21
jamielennoxmaybe 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 late01:21
*** arosen has quit IRC01:23
*** sarob has joined #openstack-dev01:23
ayoungI was hoping for a bit more performance gain out of removing the eventlet startup code.  THat would make it much more valuable01:23
ayoungjamielennox, but I am beating on sql alchemy right now....PITA01:24
jamielennoxyea, the bottleneck isn't eventlet here01:25
*** sarob_ has quit IRC01:25
jamielennoxthere is a whole lot of setup with fixtures and such, particularly when on a sql (not sqlite) backend that is reset on every test01:25
ayoungyeah.01:26
*** CaptTofu has joined #openstack-dev01:26
ayoungwould be nice to avoid that01:26
ayoungjamielennox, pretty sure https://review.openstack.org/#/c/27878/3 is wrong01:27
ayounghttps://review.openstack.org/#/c/27878/3/tests/test_backend_memcache.py01:27
ayoungexplic uuid ?01:27
ayoungself._create_token_id() should not be replaced with uuid.uuid4().hex01:28
ayoungah..just test code, nevermind.  probably fine01:28
*** comay has quit IRC01:28
*** martine has quit IRC01:29
jamielennoxyea01:29
ayoungjamielennox, 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 domains01:29
ayoungah./...ok..I'm tired01:29
jamielennoxi didn't realize the cms  unique_id thing in token/core01:30
ayoungyou are just creating a domain for the functions as a fixture..that is probably fine01:30
jamielennoxthe domain thing is purely because otherwise PG gives foreign key constraint errors01:30
ayounggood stuff.01:30
ayoungwe 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
jamielennoxi would really like to do a lot of that stuff on class_setup rather than setup01:31
jamielennoxsame with pulling down and setting up sql tablse01:31
*** lauria_ has joined #openstack-dev01:33
ayoungsql alchemy migrations will be the death of me01:33
ayoungI've been battling this all day:01:33
*** lauria has quit IRC01:33
*** winston-d has joined #openstack-dev01:34
*** lauria_ is now known as lauria01:34
ayounghttp://www.fpaste.org/10980/67976850/01:34
ayoungjamielennox, 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 think01:34
ayoungbut if I run this code, I get an error01:35
ayoungNoReferencedColumnError: Could not create ForeignKey 'tenant.id' on table 'credential': table 'tenant' has no column named 'id'01:35
ayoungeven though I am trying to create the FK on project, not tenant01:35
ayoungline 35.01:35
jamielennoxthis is a new migration01:35
jamielennox?01:35
ayoung    raise exc.NoSuchTableError(table.name)01:36
ayoungNoSuchTableError: credential01:36
ayoungyeah, it is01:36
ayoungjamielennox, it goes along with this patch: https://review.openstack.org/#/c/28372/01:37
*** terry7 has quit IRC01:37
jamielennoxyea, i saw that but you pull it so i haven't done anything about it01:37
ayoungit is just the downgrade that fails, too.  I need to try this against Postgres, bet it runs find01:37
ayoungfine01:37
ayoungcan't merge without the DB work.01:37
jamielennoxjust was wondering if it was an existing error as i hadn't seen it01:38
ayoungfirst step in this:01:38
ayounghttps://etherpad.openstack.org/split-identity01:39
*** topol has joined #openstack-dev01:39
jamielennoxyou've got proj_table = twice in the downgrade, that's not the error though01:39
*** cmark has quit IRC01:40
*** esheffield has quit IRC01:40
jamielennoxsame thing if you don't load the tenant table at all01:41
jamielennox?01:41
ayoungyeah, I've even commented it out, etc01:41
jamielennoxdoesn't explain it, even if so01:41
ayoungjamielennox, I'm going to crash01:43
ayoungmaybe this will make sense in the morning.01:43
jamielennoxyea, no worries01:43
jamielennoxany suggestions about that giant patch or just wait and see what people say/01:43
jamielennoxayoung: hey, i see the error with the token hashing01:45
*** sthaha has quit IRC01:45
jamielennoxhttps://github.com/openstack/keystone/blob/master/keystone/common/cms.py#L16901:45
*** sthaha has joined #openstack-dev01:46
jamielennoxthe token is random so fails the asn1 test and so is returned as is. Thoughts?01:46
jamielennoxlol, cheat and prefix with PKI_ANS1_PREFIX = 'MII'01:47
jamielennoxbut it's still an issue01:47
*** gnorth has quit IRC01:51
*** yaguang has joined #openstack-dev01:55
*** koolhead17 has joined #openstack-dev01:57
*** lloydde has joined #openstack-dev01:57
*** bing_bu has joined #openstack-dev02:00
*** anniec has quit IRC02:00
*** lloydde has quit IRC02:02
*** stevemar has joined #openstack-dev02:03
*** adjohn has quit IRC02:05
*** CaptTofu has quit IRC02:07
*** adalbas has quit IRC02:08
*** cmark has joined #openstack-dev02:08
*** CaptTofu has joined #openstack-dev02:09
*** cmark has quit IRC02:14
*** sthaha has quit IRC02:19
ayoungjamielennox, actually, you need to prefix it with MII02:20
ayoungI think....02:20
ayounggoing to bed02:20
jamielennoxyea, i'll do the prefix. Good night.02:20
*** ayoung is now known as ayoung-gnight02:21
*** rcleere has joined #openstack-dev02:24
*** stevemar has quit IRC02:27
*** lauria has quit IRC02:31
*** lauria_ has joined #openstack-dev02:31
*** lauria_ is now known as lauria02:31
*** galstrom is now known as galstrom_zzz02:35
*** sthaha has joined #openstack-dev02:38
*** woodspa has joined #openstack-dev02:39
*** novas0x2a|laptop has quit IRC02:39
*** woodspa has quit IRC02:41
*** cmark has joined #openstack-dev02:42
*** jbresnah has quit IRC02:43
*** cmark has joined #openstack-dev02:43
openstackgerritA change was merged to openstack/nova: Imported Translations from Transifex  https://review.openstack.org/2845402:43
*** sandywalsh has quit IRC02:43
openstackgerritA change was merged to openstack/nova: Add an index to compute_node_stats  https://review.openstack.org/2844702:45
openstackgerritA change was merged to openstack/nova: libvirt: ignore NOSTATE in resume_state_on_host_boot() method.  https://review.openstack.org/2830102:49
openstackgerritA change was merged to openstack/nova: Transition from openstack.common.setup to pbr.  https://review.openstack.org/2633002:51
clarkbmordred: ^02:52
*** lauria has quit IRC02:52
*** lauria has joined #openstack-dev02:52
*** sandywalsh has joined #openstack-dev02:56
*** jasondotstar has quit IRC02:56
*** galstrom_zzz is now known as galstrom02:57
*** mrodden has joined #openstack-dev02:57
*** baba has joined #openstack-dev02:57
*** megha has quit IRC02:57
*** lloydde has joined #openstack-dev02:58
*** SumitNaiksatam has quit IRC03:02
*** lloydde has quit IRC03:02
*** mgiles has joined #openstack-dev03:06
*** adjohn has joined #openstack-dev03:15
*** novas0x2a|laptop has joined #openstack-dev03:16
*** SumitNaiksatam has joined #openstack-dev03:18
*** adjohn_ has joined #openstack-dev03:19
*** adjohn has quit IRC03:20
*** lauria has quit IRC03:27
*** lauria_ has joined #openstack-dev03:27
*** lauria_ is now known as lauria03:27
*** nunosantos has quit IRC03:31
*** galstrom is now known as galstrom_zzz03:37
*** martine has joined #openstack-dev03:41
*** adjohn_ has quit IRC03:44
*** martine has quit IRC03:49
*** jergerber has quit IRC03:52
*** jclift_ has quit IRC03:53
*** boris-42 has joined #openstack-dev03:56
*** lloydde has joined #openstack-dev03:59
*** michchap_ has quit IRC04:01
*** michchap has joined #openstack-dev04:02
*** lloydde has quit IRC04:03
*** adjohn has joined #openstack-dev04:06
*** adjohn has quit IRC04:06
*** yaguang has quit IRC04:07
*** blamar has quit IRC04:08
*** stevemar has joined #openstack-dev04:08
*** yaguang has joined #openstack-dev04:08
*** garyk has joined #openstack-dev04:09
*** adjohn has joined #openstack-dev04:09
*** lauria has quit IRC04:09
*** lauria_ has joined #openstack-dev04:10
*** lauria_ is now known as lauria04:10
*** sudorandom has quit IRC04:10
*** terryh has joined #openstack-dev04:13
*** terryh has quit IRC04:13
*** stevemar has quit IRC04:14
*** SergeyLukjanov has joined #openstack-dev04:15
*** basha has joined #openstack-dev04:15
*** melwitt has quit IRC04:16
*** glikson has joined #openstack-dev04:16
*** andrewbogott is now known as andrewbogott_afk04:19
*** stevemar has joined #openstack-dev04:20
*** vipul is now known as vipul|away04:21
*** mgiles has quit IRC04:22
*** vipul|away is now known as vipul04:24
*** boris-42 has quit IRC04:24
*** michchap_ has joined #openstack-dev04:25
*** michchap has quit IRC04:25
*** blamar has joined #openstack-dev04:26
*** swaT30 has quit IRC04:26
*** danwent has joined #openstack-dev04:29
*** koolhead17 has quit IRC04:33
*** maurosr has quit IRC04:34
*** maurosr has joined #openstack-dev04:34
*** freedomhui has quit IRC04:35
*** lauria has quit IRC04:41
*** garyk has quit IRC04:41
*** sudorandom has joined #openstack-dev04:42
*** FatDarrel has joined #openstack-dev04:43
*** boris-42 has joined #openstack-dev04:44
*** koolhead17 has joined #openstack-dev04:46
*** basha has quit IRC04:51
*** vipul is now known as vipul|away04:53
*** maoy has quit IRC04:55
*** basha has joined #openstack-dev04:57
*** FnordDownUnder has joined #openstack-dev04:58
*** sarob has quit IRC04:58
*** sarob has joined #openstack-dev04:59
*** Gman2 has joined #openstack-dev05:01
*** sarob has quit IRC05:04
*** stevemar has quit IRC05:05
*** crazed has quit IRC05:05
*** Hien has quit IRC05:06
*** adjohn has quit IRC05:07
*** Gman2 has quit IRC05:07
*** Gman2 has joined #openstack-dev05:08
*** koolhead17 has quit IRC05:08
*** theEXA has joined #openstack-dev05:09
*** sacharya has quit IRC05:10
*** jhesketh has quit IRC05:11
*** brunnhilde has quit IRC05:15
*** boris-42 has quit IRC05:15
*** Gman2 has quit IRC05:17
*** jamespage_ has quit IRC05:17
*** crazed has joined #openstack-dev05:18
*** sudorandom has quit IRC05:20
*** Hien has joined #openstack-dev05:21
*** Hien has quit IRC05:25
*** vartom1119 has joined #openstack-dev05:27
*** crazed has quit IRC05:28
*** vartom1119 has quit IRC05:28
*** Hien has joined #openstack-dev05:30
*** freedomhui has joined #openstack-dev05:31
*** crazed has joined #openstack-dev05:31
*** marun has quit IRC05:32
*** koolhead17 has joined #openstack-dev05:45
*** Gman2 has joined #openstack-dev05:45
*** SergeyLukjanov has quit IRC05:49
*** prekarat has joined #openstack-dev05:51
openstackgerritA change was merged to openstack/oslo-incubator: Copy Nova's workaround for RHEL6 eventlet issue  https://review.openstack.org/2802005:53
*** k4n0 has joined #openstack-dev05:55
*** prekarat has quit IRC05:55
*** amotoki has joined #openstack-dev05:56
*** navid_ has joined #openstack-dev05:58
*** jbresnah has joined #openstack-dev05:58
*** Gman2 has quit IRC06:04
*** lloydde has joined #openstack-dev06:07
*** mrunge has joined #openstack-dev06:09
*** lloydde has quit IRC06:10
*** cmark has quit IRC06:11
*** prekarat has joined #openstack-dev06:11
*** garyk has joined #openstack-dev06:12
*** nati_ueno has joined #openstack-dev06:14
*** FatDarrel has quit IRC06:21
*** tzumainn has joined #openstack-dev06:21
*** danwent has quit IRC06:25
*** Mandell has joined #openstack-dev06:28
*** ondergetekende has joined #openstack-dev06:30
*** boris-42 has joined #openstack-dev06:30
*** brunnhilde has joined #openstack-dev06:35
*** afazekas has joined #openstack-dev06:36
*** FnordDownUnder has quit IRC06:38
*** flaper87 has joined #openstack-dev06:45
*** rushiagr has joined #openstack-dev06:45
*** winston-d has quit IRC06:50
*** brunnhilde has quit IRC06:55
*** belmoreira has joined #openstack-dev06:56
*** boris-42 has quit IRC06:59
*** glikson has quit IRC07:01
*** boris-42 has joined #openstack-dev07:02
*** shardy has joined #openstack-dev07:02
*** reidrac has joined #openstack-dev07:06
*** zb is now known as zaneb07:09
*** topol has quit IRC07:10
*** alexpilotti has joined #openstack-dev07:13
*** basha has quit IRC07:16
*** m4xmr has joined #openstack-dev07:17
*** glikson has joined #openstack-dev07:18
*** FatDarrel has joined #openstack-dev07:19
*** m4xmr has left #openstack-dev07:21
*** aloga has joined #openstack-dev07:21
*** eglynn has joined #openstack-dev07:26
*** corXi has joined #openstack-dev07:28
*** toddnni_ has joined #openstack-dev07:31
*** toddnni has quit IRC07:33
*** Mandell has quit IRC07:33
*** tzumainn has quit IRC07:34
*** gnorth has joined #openstack-dev07:35
*** sthaha has quit IRC07:36
*** nati_ueno has quit IRC07:43
*** kpavel has quit IRC07:49
*** kpavel has joined #openstack-dev07:49
*** kpavel_ has joined #openstack-dev07:51
*** kpavel has quit IRC07:55
*** kpavel_ is now known as kpavel07:55
*** salv-orlando has joined #openstack-dev07:57
*** jog0 has quit IRC08:01
*** mmagr has joined #openstack-dev08:04
*** lucasagomes has joined #openstack-dev08:05
*** basha has joined #openstack-dev08:09
*** derekh has joined #openstack-dev08:12
*** Hien has quit IRC08:18
openstackgerritA change was merged to openstack/nova: Fixes mock calls in Hyper-V test method  https://review.openstack.org/2848708:20
*** jpich has joined #openstack-dev08:21
*** mmagr has quit IRC08:22
*** FatDarrel has quit IRC08:22
*** basha has quit IRC08:23
*** pixelbeat_ has joined #openstack-dev08:23
*** prekarat has quit IRC08:25
*** prekarat has joined #openstack-dev08:25
koolhead17prekarat: hi08:26
prekaratkoolhead17: hi08:26
*** SergeyLukjanov has joined #openstack-dev08:27
*** kpavel_ has joined #openstack-dev08:36
*** abhishekkr has joined #openstack-dev08:37
*** kpavel has quit IRC08:38
*** kpavel_ is now known as kpavel08:38
*** SergeyLukjanov has quit IRC08:45
*** johnthetubaguy has joined #openstack-dev08:45
rushiagris 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-dev08:55
*** tomoiaga has joined #openstack-dev08:58
*** bing_bu has quit IRC08:59
openstackgerritA change was merged to openstack/horizon: Ensure to use keyword parameters in format string in create_instance.py  https://review.openstack.org/2849509:02
*** tomoiaga_ has joined #openstack-dev09:03
rushiagrit seems like the devstack is not creating nova directory at /opt/stack09:03
rushiagrI hope this is the right channel, or should I try openstack-nova?09:04
tomoiaga_it's github's fault09:04
*** obondarev_ has joined #openstack-dev09:04
*** athomas has joined #openstack-dev09:05
tomoiaga_devstack can't get nova because there's a problem with github right now09:05
rushiagrtomoiaga_:  so you mean to say github is not letting the devstack scripts download nova repo?09:05
rushiagrtomoiaga_: 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 repo09: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 times09: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-dev09:06
*** hewbrocc` has joined #openstack-dev09:06
rushiagroh yeah, its showing error 503 when I'm trying to download nova09:07
*** trapni has joined #openstack-dev09:07
*** trapni has joined #openstack-dev09:07
tomoiaga_rushiagr: yeap09:07
rushiagrI was tweaking cinder repo, but for a fresh install deleted everything from the VM. Why :/09:08
*** mkollaro has joined #openstack-dev09:09
*** ociuhandu_ has joined #openstack-dev09:09
tomoiaga_rushiagr: it seems we are doing the same thing. Cinder here too, testing brick :)09:10
*** phschwartz__ has joined #openstack-dev09:10
*** k4n01 has joined #openstack-dev09:10
*** k4n01 has left #openstack-dev09:10
rushiagrjgriffith's brick?09:10
tomoiaga_rushiagr: yes09:10
rushiagrcool! nice :)09:10
*** cyeoh_ has joined #openstack-dev09:10
*** jduhamel_ has joined #openstack-dev09:11
*** mkerrin1 has joined #openstack-dev09:11
*** esmute_ has joined #openstack-dev09:11
*** iccha has joined #openstack-dev09:12
*** notmyname_ has joined #openstack-dev09:12
*** llu_linux is now known as llu09:12
*** jcooley_ has joined #openstack-dev09:13
*** BLZbubba_ has joined #openstack-dev09:13
*** saschpe_ has joined #openstack-dev09:14
*** uvirtbot has quit IRC09:14
*** saschpe has quit IRC09:14
*** lcheng has quit IRC09:14
*** egallen has joined #openstack-dev09:14
*** edmund1 has quit IRC09:14
*** phschwartz_ has quit IRC09:14
*** tomoiaga has quit IRC09:14
*** obondarev has quit IRC09:14
*** epopt37 has quit IRC09:14
*** hewbrocca has quit IRC09:14
*** markkropf has quit IRC09:14
*** n0ano has quit IRC09:14
*** jcooley has quit IRC09:14
*** notmyname has quit IRC09:14
*** adepti37 has quit IRC09:14
*** haleyb has quit IRC09:14
*** notmyname_ is now known as notmyname09:14
*** jcooley_ is now known as jcooley09:14
*** uvirtbot has joined #openstack-dev09:15
*** pleia2 has quit IRC09:15
*** pleia2 has joined #openstack-dev09:15
*** lcheng has joined #openstack-dev09:15
*** markkropf has joined #openstack-dev09:15
*** danpb has joined #openstack-dev09:16
*** epopt37 has joined #openstack-dev09:19
*** adepti37 has joined #openstack-dev09:19
*** tomoiaga_ is now known as tomoiaga09:19
*** athomas has quit IRC09:21
*** k4n0 has quit IRC09:21
*** ociuhandu has quit IRC09:21
*** mkerrin has quit IRC09:21
*** jjmb has quit IRC09:21
*** BLZbubba has quit IRC09:21
*** briancline has quit IRC09:21
*** cyeoh has quit IRC09:21
*** jduhamel has quit IRC09:21
*** esmute has quit IRC09:21
*** iccha__ has quit IRC09:21
*** jduhamel_ is now known as jduhamel09:21
*** ociuhandu_ is now known as ociuhandu09:21
*** esmute_ is now known as esmute09:21
*** giulivo has joined #openstack-dev09:21
danpbanyone else seeing this error when pulling nova git09:32
danpbfatal: remote error:09:32
danpb  Storage server temporarily offline. See http://status.github.com for GitHub system status.09:32
*** egallen has quit IRC09:32
tomoiagadanpb: yes, it's github09:33
ekarlsodanpb: that's github :)09:33
danpb(no, the status.github.com page gives no useful info)09:33
danpbi know it is github, just wondering if there was any indication of the problem, given that their status page says it is 100% operational09:33
*** alexxu has quit IRC09:33
*** m4xmr has joined #openstack-dev09:37
*** prekarat has quit IRC09:40
*** SergeyLukjanov has quit IRC09:41
*** prekarat has joined #openstack-dev09:41
*** basha has joined #openstack-dev09:43
*** SergeyLukjanov has joined #openstack-dev09:43
*** basha has quit IRC09:55
*** m4xmr has left #openstack-dev09:59
*** zoresvit has joined #openstack-dev10:00
*** belmoreira has quit IRC10:01
*** alexpilotti has quit IRC10:06
*** boris-42 has quit IRC10:10
*** belmoreira has joined #openstack-dev10:14
*** pcm___ has joined #openstack-dev10:14
*** pcm__ has joined #openstack-dev10:15
*** rohitk has joined #openstack-dev10:16
*** afazekas has quit IRC10:16
*** SergeyLukjanov has quit IRC10:19
*** sride has joined #openstack-dev10:21
*** alexxu has joined #openstack-dev10:25
*** rnirmal has joined #openstack-dev10:28
*** afazekas has joined #openstack-dev10:29
*** SergeyLukjanov has joined #openstack-dev10:30
*** briancline has joined #openstack-dev10:30
*** jjmb has joined #openstack-dev10:30
*** johndescs has left #openstack-dev10:38
*** jcoufal has joined #openstack-dev10:39
*** prekarat has quit IRC10:42
*** mgiles has joined #openstack-dev10:49
*** mgiles has quit IRC10:50
*** freedomhui has quit IRC10:54
*** SergeyLukjanov has quit IRC10:54
*** sride has quit IRC10:57
*** megha has joined #openstack-dev10:57
*** baba has quit IRC10:58
*** jcoufal has quit IRC10:59
*** acfleury has joined #openstack-dev11:02
*** yamahata_ has joined #openstack-dev11:05
*** yaguang has quit IRC11:08
*** phschwartz has quit IRC11:09
*** phschwartz has joined #openstack-dev11:10
*** drewlander has joined #openstack-dev11:12
*** ndipanov has joined #openstack-dev11:13
*** SergeyLukjanov has joined #openstack-dev11:22
*** dhellmann-away has quit IRC11:23
*** rkukura has quit IRC11:27
*** martine has joined #openstack-dev11:28
*** jclift_ has joined #openstack-dev11:33
*** boris-42 has joined #openstack-dev11:35
*** michchap_ has quit IRC11:36
*** michchap has joined #openstack-dev11:36
*** maoy has joined #openstack-dev11:40
*** ladquin_brb is now known as ladquin11:42
*** tzumainn has joined #openstack-dev11:42
*** tzumainn has quit IRC11:50
*** yamahata_ has quit IRC11:50
*** topol has joined #openstack-dev11:52
*** tzumainn has joined #openstack-dev11:52
*** SergeyLukjanov has quit IRC11:55
*** matiu has quit IRC12:00
*** dprince has joined #openstack-dev12:03
*** freedomhui has joined #openstack-dev12:04
*** mrunge has quit IRC12:05
*** matiu has joined #openstack-dev12:08
*** matiu has joined #openstack-dev12:08
*** SergeyLukjanov has joined #openstack-dev12:08
*** galstrom_zzz is now known as galstrom12:13
*** eglynn has quit IRC12:18
*** athomas has joined #openstack-dev12:21
*** radez_g0n3 is now known as radez12:23
*** dguitarbite has joined #openstack-dev12:25
*** yamahata_ has joined #openstack-dev12:28
*** galstrom is now known as galstrom_zzz12:28
*** ayoung-gnight is now known as ayoung12:29
*** tzumainn has quit IRC12:31
*** morazi has quit IRC12:31
*** jecarey has joined #openstack-dev12:32
*** martine has quit IRC12:34
*** eharney has joined #openstack-dev12:34
*** eharney has joined #openstack-dev12:34
*** jecarey has quit IRC12:36
*** dosaboy has quit IRC12:37
*** jecarey has joined #openstack-dev12:37
*** dosaboy has joined #openstack-dev12:39
*** rushiagr has quit IRC12:40
*** Thor has quit IRC12:41
*** markmc has joined #openstack-dev12:41
*** Thor has joined #openstack-dev12:41
*** martine_ has joined #openstack-dev12:43
*** bing_bu has joined #openstack-dev12:43
*** jasondotstar has joined #openstack-dev12:44
*** michchap has quit IRC12:44
*** michchap has joined #openstack-dev12:44
*** athomas has quit IRC12:44
*** digitalsanctum has joined #openstack-dev12:45
*** bknudson has joined #openstack-dev12:47
*** salv-orlando has quit IRC12:48
*** salv-orlando has joined #openstack-dev12:48
*** gargya has joined #openstack-dev12:50
*** athomas has joined #openstack-dev12:51
*** bmclaughlin has joined #openstack-dev12:52
*** eglynn has joined #openstack-dev12:53
*** jergerber has joined #openstack-dev12:56
*** belmoreira1 has joined #openstack-dev12:59
*** belmoreira has quit IRC13:01
*** dprince has quit IRC13:01
*** dprince has joined #openstack-dev13:02
*** freedomhui has quit IRC13:05
*** eglynn is now known as hungry-eglynn13:09
*** kbringard has joined #openstack-dev13:10
*** rkukura has joined #openstack-dev13:11
*** alunduil has quit IRC13:12
mordreddanpb: you can always just pull from gerrit13:12
*** mkollaro has quit IRC13:17
*** swaT30 has joined #openstack-dev13:18
*** belmoreira1 has quit IRC13:20
*** belmoreira has joined #openstack-dev13:20
*** anniec has joined #openstack-dev13:22
*** Gman2 has joined #openstack-dev13:22
*** Gman2 has left #openstack-dev13:22
*** stevemar has joined #openstack-dev13:25
*** redbeard2 has quit IRC13:26
*** morazi has joined #openstack-dev13:27
*** johnthetubaguy has quit IRC13:28
*** jjmb has quit IRC13:28
*** SergeyLukjanov has quit IRC13:32
*** SergeyLukjanov has joined #openstack-dev13:34
*** dguitarbite has quit IRC13:36
*** dguitarbite has joined #openstack-dev13:36
*** lauria has joined #openstack-dev13:36
*** sandywalsh has quit IRC13:37
*** ociuhandu has quit IRC13:39
*** martine_ has quit IRC13:40
*** ociuhandu has joined #openstack-dev13:40
*** martine has joined #openstack-dev13:40
*** rohitk has quit IRC13:43
*** alexpilotti has joined #openstack-dev13:47
*** hewbrocc` is now known as hewbrocca13:48
*** pabelanger_ has joined #openstack-dev13:50
*** hungry-eglynn is now known as eglynn13:50
*** rcleere has quit IRC13:50
*** sandywalsh has joined #openstack-dev13:51
*** sacharya has joined #openstack-dev13:51
*** wiliam_ has joined #openstack-dev13:51
*** pabelanger_ has quit IRC13:52
*** pabelanger_ has joined #openstack-dev13:52
*** pabelanger has quit IRC13:52
*** aeperezt has joined #openstack-dev13:52
*** alexpilotti has quit IRC13:52
*** pabelanger_ is now known as pabelanger13:52
*** pabelanger_ has joined #openstack-dev13:53
*** pabelanger has quit IRC13:53
*** pabelanger has joined #openstack-dev13:53
*** lloydde has joined #openstack-dev13:54
*** redbeard2 has joined #openstack-dev13:54
*** bswartz has quit IRC13:54
*** jaypipes has joined #openstack-dev13:54
*** martine_ has joined #openstack-dev13:54
*** martine has quit IRC13:54
*** drewland_ has joined #openstack-dev13:54
*** sacharya has quit IRC13:55
*** drewland_ has quit IRC13:55
*** drewland_ has joined #openstack-dev13:56
*** digitalsanctum has quit IRC13:56
*** READ10 has joined #openstack-dev13:56
*** koolhead17 has quit IRC13:57
*** sudorandom has joined #openstack-dev13:58
*** drewlander has quit IRC13:58
*** wiliam_ has quit IRC13:59
*** wiliam_ has joined #openstack-dev14:01
*** gongysh has quit IRC14:02
*** alunduil has joined #openstack-dev14:03
*** yaguang has joined #openstack-dev14:04
*** dolphm has joined #openstack-dev14:05
*** crazed has quit IRC14:07
*** networkstatic has quit IRC14:07
*** networkstatic has joined #openstack-dev14:08
*** martine_ has quit IRC14:08
*** jruzicka has joined #openstack-dev14:08
*** pabelanger has quit IRC14:09
*** wiliam_ has quit IRC14:10
*** martine has joined #openstack-dev14:13
*** aryan has quit IRC14:13
*** aryan has joined #openstack-dev14:13
*** bing_bu has quit IRC14:13
*** sstent_ has quit IRC14:15
*** bmclaughlin is now known as bmclaughlin|afk14:15
*** crazed has joined #openstack-dev14:15
*** portante|afk is now known as portante14:19
*** sacharya has joined #openstack-dev14:19
*** ondergetekende has quit IRC14:20
*** jcoufal has joined #openstack-dev14:21
*** wiliam_ has joined #openstack-dev14:22
*** rcleere has joined #openstack-dev14:23
*** jvrbanac has joined #openstack-dev14:23
*** wiliam_ has quit IRC14:26
*** wiliam_ has joined #openstack-dev14:26
*** yidclare has joined #openstack-dev14:26
*** pabelanger has joined #openstack-dev14:27
*** digitalsanctum has joined #openstack-dev14:29
*** AlanClark has joined #openstack-dev14:30
*** nunosantos has joined #openstack-dev14:31
*** wiliam_ has quit IRC14:32
*** bswartz has joined #openstack-dev14:32
*** topol has quit IRC14:33
*** sacharya has quit IRC14:33
*** matiu has quit IRC14:33
*** wiliam_ has joined #openstack-dev14:33
*** ayoung is now known as ayoung-afk14:35
*** esheffield has joined #openstack-dev14:35
*** markmcclain has joined #openstack-dev14:36
*** kbrierly has joined #openstack-dev14:36
*** datsun180b has joined #openstack-dev14:38
*** ndipanov has quit IRC14:39
*** wiliam_ has quit IRC14:40
*** galstrom_zzz is now known as galstrom14:40
*** kobier has quit IRC14:41
*** freedomhui has joined #openstack-dev14:41
*** ndipanov has joined #openstack-dev14:41
*** wiliam_ has joined #openstack-dev14:42
*** crandquist has joined #openstack-dev14:42
*** lloydde has quit IRC14:43
*** navid_ has quit IRC14:44
*** crandquist has quit IRC14:46
*** cp16net is now known as cp16net|away14:46
kbringardany ovs_quantum_agent devs around?14:47
*** spzala has joined #openstack-dev14:47
*** wiliam_ has quit IRC14:49
*** katylava has joined #openstack-dev14:49
*** johnthetubaguy has joined #openstack-dev14:49
*** freedomhui has quit IRC14:49
*** digitalsanctum has quit IRC14:50
kbringardI had a question about appears to be an inconsistency in what quantum server and the ovs_quantum_agent thinks a "local VLAN" is14:50
*** wiliam_ has joined #openstack-dev14:51
*** ashwini has joined #openstack-dev14:51
*** digitalsanctum has joined #openstack-dev14:51
*** portante has quit IRC14:53
*** litong has joined #openstack-dev14:54
*** armax has joined #openstack-dev14:54
*** wiliam_ has quit IRC14:55
*** tong|2 has joined #openstack-dev14:56
*** tong|3 has joined #openstack-dev14:57
*** wiliam_ has joined #openstack-dev14:58
*** litong has quit IRC14:59
*** tong|2 has quit IRC15:01
*** drewland_ has quit IRC15:01
*** megha has quit IRC15:02
*** woodspa has joined #openstack-dev15:02
*** wiliam_ has quit IRC15:02
*** drewlander has joined #openstack-dev15:03
*** otherwiseguy has quit IRC15:03
*** wiliam_ has joined #openstack-dev15:03
*** athomas has quit IRC15:04
*** sacharya has joined #openstack-dev15:04
*** toddnni_ has quit IRC15:05
*** bknudson has quit IRC15:05
*** lpmulligan has joined #openstack-dev15:05
*** Gman2 has joined #openstack-dev15:06
*** Gman2 has quit IRC15:07
*** topol has joined #openstack-dev15:07
*** yidclare has quit IRC15:08
*** megha has joined #openstack-dev15:09
*** lloydde has joined #openstack-dev15:10
*** jcoufal has quit IRC15:10
*** bknudson has joined #openstack-dev15:10
*** athomas has joined #openstack-dev15:11
*** lloydde has quit IRC15:12
*** wiliam_ has quit IRC15:12
*** koolhead17 has joined #openstack-dev15:14
*** wiliam_ has joined #openstack-dev15:14
*** abhishekkr has quit IRC15:14
*** jayg|g0n3 is now known as jayg15:14
*** markmcclain has quit IRC15:14
*** vkmc has joined #openstack-dev15:14
*** vkmc has quit IRC15:14
*** vkmc has joined #openstack-dev15:14
*** bknudson has quit IRC15:15
*** freedomhui has joined #openstack-dev15:16
*** hazmat has quit IRC15:16
*** reidrac has quit IRC15:17
*** garyk has quit IRC15:17
openstackgerritA change was merged to openstack/quantum: Import recent rootwrap features in local rootwrap  https://review.openstack.org/2830915:18
jeblairmarkmc: it looks like cinder is not a child project of openstack on transifex15:20
*** maoy has quit IRC15:20
*** zul has joined #openstack-dev15:20
*** devoid has joined #openstack-dev15:20
markmcjeblair, oh, how do I fix that15:20
*** jamespage_ has joined #openstack-dev15:20
markmcjeblair, did I get it right for glance?15:20
*** maoy has joined #openstack-dev15:21
jeblairmarkmc: let me see if i can just click some buttons and make that happen15:21
*** ayoung-afk is now known as ayoung15:21
*** dperaza has joined #openstack-dev15:22
*** danwent has joined #openstack-dev15:22
*** sarob has joined #openstack-dev15:22
markmcjeblair, clicky clicky clicky15:22
*** lloydde has joined #openstack-dev15:23
*** devoid has left #openstack-dev15:23
*** boris-42 has quit IRC15:24
*** jamespage_ has quit IRC15:25
markmcjeblair, if you can add me as a manager of the openstack project, that might help15:25
jeblairmarkmc: ah found it.  in cinder, i went to manage -> access-control -> outsourced project + outsource access to "OpenStack"15:25
*** dperaza has left #openstack-dev15:25
*** adjohn has joined #openstack-dev15:26
markmcjeblair, how did I miss that? :)15:26
*** mark_ma has joined #openstack-dev15:26
jeblairmarkmc: it took me 5 minutes to find it, and i was looking for it.  :)15:26
*** SergeyLukjanov has quit IRC15:27
*** mrodden has quit IRC15:27
ayoungdolphm, 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
jeblairmarkmc: i added you as a maintainer for the openstack project hub15:29
markmcjeblair, thanks15:29
topolayoung +1!15:29
dolphmayoung: 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 option15:29
jeblairmarkmc: fyi (i don't remember if you were at the summit session on translations) daisy is settup up translations teams15:29
jeblairmarkmc: https://wiki.openstack.org/wiki/Translations/TranslationTeam15:29
dolphmayoung: topol: spzala: up to ya'll though115:29
mark_mayou guys work on the same project ?15:29
topoldolphm, I think spzala will deliver you a smaller patch fully tested15:29
dolphmawesome15:29
markmcjeblair, daisy was at this session: https://etherpad.openstack.org/havana-oslo-i18n-strategy15:29
markmcjeblair, so, I think we're in sync15:30
jeblairmarkmc: excellent15:30
*** garyk has joined #openstack-dev15:30
*** bknudson has joined #openstack-dev15:30
*** cp16net|away is now known as cp16net15:30
spzaladolphm: ayoung: I have updated the patch can you please take a look https://review.openstack.org/#/c/27364/15:30
spzaladolphm: ayoung: I have changed the approach little bit and now it's not based on boolean or any condition15:31
markmcjeblair, I'm pushing the infrastructure along, e.g. https://review.openstack.org/#/q/I86562b3a65d371673bb21f7179eecc7602bc0775,n,z15:31
dolphmspzala: commit message indicates otherwise15:31
markmcjeblair, see how useful using the same Change-Id across projects can be ? :)15:31
jeblairmarkmc: woo!  oh neat, i didn't think you could do that.  i would have thought to use topics for that.15:32
ayoungdolphm, 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
spzaladolphm: ah, sorry didn't update the message :( it was very late and wanted to check in code for review15:32
spzaladolphm: missed it but will update with new patch15:32
dolphmspzala: the patch is still conditional.. what did you change?15:33
*** eharney has quit IRC15:33
ayoungspzala, also, I need to know how you tested this15:34
spzaladolphm: hmmm... there is no boolean now. The only condition is "if default domain id"15:35
*** vipul|away is now known as vipul15:35
*** wiliam_ has quit IRC15:35
dolphmspzala: i don't follow... conditional behavior is conditional15:35
spzaladolphm: and I didn't find any way around there.15:36
*** vipul is now known as vipul|away15:36
*** SergeyLukjanov has joined #openstack-dev15:36
*** wiliam_ has joined #openstack-dev15:37
spzaladolphm: well, to me, we are handling default domain in a specific way15:37
*** johnpur has joined #openstack-dev15:37
*** chuck_ has joined #openstack-dev15:38
spzaladolphm: I thought the major dislike was towards using boolean15:38
mark_mahi russel15:39
russellbmark_ma: hi!15:39
russellbmark_ma: so you're looking for info on how to contribute?15:39
mark_marussellb:yes15:39
russellbhttps://wiki.openstack.org/wiki/How_To_Contribute15:39
russellbthat's the best place to start15:39
ayoungspzala, 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 IRC15:40
mark_marussellb:thanks so much15:40
russellbsure no problem15:40
topolayoung +115:40
topoldolphm, I don't see how the end result is different than what happens with the SQL driver migration support of default domain15:41
*** gyee has joined #openstack-dev15:41
dolphmtopol: API behavior against the LDAP backend is inconsistent compared to other backends15:41
spzalaayoung: yes, and that's what we are doing right ?15:41
dolphmtopol: made comments on the patch to correct some of those issues15:42
spzalaayoung: sorry if I misunderstood and not using the one if it's already found15:42
*** eharney has joined #openstack-dev15:42
*** eharney has joined #openstack-dev15:42
*** zoresvit has quit IRC15:43
*** otherwiseguy has joined #openstack-dev15:44
*** dims_ has joined #openstack-dev15:44
*** dims_ has quit IRC15:44
topoldolphm, your comments seem straightforward to address. If spzala addresses those will you find that acceptable?15:44
*** cloudchimp has joined #openstack-dev15:44
*** aloga has quit IRC15:45
dolphmtopol: i definitely need to take another pass with consideration to api behavior afterwords15:46
topoldolphm, OK. makes sense15:46
*** wiliam_ has quit IRC15:46
*** yidclare has joined #openstack-dev15:46
dolphmtopol: 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 usage15:46
*** jcoufal has joined #openstack-dev15:47
topoldolphm,  K, we just need to know where it ends up impacting API usage15:48
*** wiliam_ has joined #openstack-dev15:48
spzaladolphm: 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 IRC15:49
topolbut spzala will change the test if that is more correct15:49
spzaladolphm: 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
spzalatopol: yes15:49
ayoungtopol, 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-dev15:50
ayoungHas that been tested, and if so, documented?15:50
*** lloydde has quit IRC15:50
topolayoung, preaching to the choir my friend15:50
spzalaayoung: agreed.. I did tested it with no domain_id attribute and by ignoring per your idea15:51
mark_mawill someone tell me how to join openstack developer maillist?15:51
spzalaayoung: but I don't have read only15:51
topolspzala is testing with the domain_id attribute being ignored15:51
topolis that not equivalent???15:51
topolhe will verify the atrribute is not written into ldap15:51
topolayoung, make sense?15:52
*** glikson has quit IRC15:52
*** bdpayne has joined #openstack-dev15:52
spzalatopol: I did verify that domain_id is not there after creating group, user..15:52
topolayoung, good enough???15:53
*** lloydde has joined #openstack-dev15:53
*** wiliam_ has quit IRC15:54
topolmark_ma http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev15:55
*** adjohn has quit IRC15:55
*** electrichead has joined #openstack-dev15:55
*** wiliam_ has joined #openstack-dev15:56
*** kpavel has quit IRC15:57
*** yolanda has joined #openstack-dev15:59
dolphmayoung: +115:59
*** SergeyLukjanov has quit IRC15:59
*** n0ano has joined #openstack-dev15:59
david-lyleis there any self-registration support currently built into keystone?16:04
*** alop has joined #openstack-dev16:05
david-lyleI don't see a path in the client16:05
*** glikson has joined #openstack-dev16:05
ayoungspzala, 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 run16:05
*** trapni has quit IRC16:05
ayoungspzala, 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
ayoungdavid-lyle, no self registration in Keystone16:06
david-lyleayoung:  just wanted to verify. Thanks!16:07
spzalaayoung: 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
spzalaayoung: on call right now16:07
*** alop_ has joined #openstack-dev16:08
spzalaayoung: about annonymous binding, I didn't do it before :( but I will try16:08
*** tryggvil has joined #openstack-dev16:08
*** vipul|away is now known as vipul16:08
*** abhishekkr has joined #openstack-dev16:09
*** tryggvil has quit IRC16:09
*** alop has quit IRC16:09
*** alop_ is now known as alop16:09
*** yaguang has quit IRC16:09
*** utlemming has joined #openstack-dev16:10
*** wiliam_ has quit IRC16:10
ayoungdolphm, 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 of16:12
ayoungcolumns, but with SQLIte, I need to drop the table and create a new one.16:12
ayoung'tis madness16:12
ayoungout->our16:12
openstackgerritA change was merged to openstack/nova: Rename nova.compute.instance_types to flavors  https://review.openstack.org/2845616:13
*** jimfehlig has joined #openstack-dev16:13
*** SergeyLukjanov has joined #openstack-dev16:14
*** annegentle has quit IRC16:14
*** FatDarrel has joined #openstack-dev16:14
ayoungugh, and, you can't create a new table with the same metadata after you drop it,  as 'tables' is an immutable collection16:14
ayoung" This deal is getting worse all the time!"16:16
*** anniec has quit IRC16:16
dolphmayoung: i don't disagree16:16
dolphmayoung: what's wrong with the migrations testing patches that were proposed a month or two back? test_migrations16:17
*** hemna_ is now known as hemna16:17
*** galstrom is now known as galstrom_zzz16:18
*** gyee has quit IRC16:19
*** dontalton has joined #openstack-dev16:19
*** SergeyLukjanov has quit IRC16:20
*** mark_ma has quit IRC16:21
*** jcoufal has quit IRC16:21
*** athomas has quit IRC16:21
openstackgerritA change was merged to openstack/cinder: Add db client packages to dev env setup doc.  https://review.openstack.org/2831916:21
*** markmc has quit IRC16:21
*** wiliam_ has joined #openstack-dev16:22
*** boris-42 has joined #openstack-dev16:22
*** terry7 has joined #openstack-dev16:23
*** ndipanov has quit IRC16:23
*** tong|3 has quit IRC16:23
*** gyee has joined #openstack-dev16:24
*** jpich has quit IRC16:25
*** gyee has quit IRC16:25
*** SergeyLukjanov has joined #openstack-dev16:25
*** shang has joined #openstack-dev16:25
*** lloydde has quit IRC16:27
*** markmcclain has joined #openstack-dev16:27
*** corXi has quit IRC16:27
*** bmclaughlin|afk is now known as bmclaughlin16:27
*** gyee has joined #openstack-dev16:28
*** vish1 has joined #openstack-dev16:28
*** wiliam_ has quit IRC16:28
*** yolanda has quit IRC16:28
*** comay has joined #openstack-dev16:29
*** sstent_ has joined #openstack-dev16:29
*** vishy has quit IRC16:29
*** vish1 is now known as vishy16:29
*** gargya has quit IRC16:30
ayoungdolphm, 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 andrewbogott16:31
dolphmayoung: and i assume that would be caught by test_migrations16:31
ayoungdolphm, but I also think that maybe using the migrations for sqlite is creating more work than they are worth16:31
*** rohitk has joined #openstack-dev16:32
ayoungdolphm, the problem is that the migrations themselves are the wrong way to approach things for sqlite16:32
*** ondergetekende has joined #openstack-dev16:32
ayoungsqlite probably shouldn't be used for production16:32
*** ondergetekende has quit IRC16:32
*** wiliam_ has joined #openstack-dev16:32
ayoungand since sqlite doesn't really support modifying the schema's in place, we end up with some really horrible migrations16:33
*** crandquist has joined #openstack-dev16:33
*** sstent has quit IRC16:33
*** nati_ueno has joined #openstack-dev16:33
*** cobyr has joined #openstack-dev16:34
*** crandquist has quit IRC16:35
*** cobyr is now known as kobier16:35
*** shang has quit IRC16:35
*** shang has joined #openstack-dev16:35
*** SergeyLukjanov has quit IRC16:35
*** dontalton has quit IRC16:37
*** jamespage_ has joined #openstack-dev16:37
*** nati_ueno has quit IRC16:37
*** terryh has joined #openstack-dev16:38
*** lucasagomes has quit IRC16:39
*** yamahata_ has quit IRC16:39
openstackgerritA change was merged to openstack/python-keystoneclient: Securely create signing_dir (bug 1174608)  https://review.openstack.org/2857216:42
uvirtbotLaunchpad bug 1174608 in nova "Insecure directory creation for signing" [High,In progress] https://launchpad.net/bugs/117460816:42
*** tpatil has joined #openstack-dev16:42
*** bdpayne has quit IRC16:43
*** rohitk has quit IRC16:44
*** bdpayne has joined #openstack-dev16:45
*** wiliam_ has quit IRC16:45
*** cmark has joined #openstack-dev16:45
*** FatDarrel has quit IRC16:47
*** wiliam_ has joined #openstack-dev16:47
*** cmark has quit IRC16:48
*** cmark has joined #openstack-dev16:48
*** Hien has joined #openstack-dev16:48
*** devoid has joined #openstack-dev16:48
*** tpatil has quit IRC16:50
*** pfreund has joined #openstack-dev16:50
*** SumitNaiksatam has quit IRC16:51
*** wiliam_ has quit IRC16:53
*** wiliam_ has joined #openstack-dev16:54
*** martine has quit IRC16:54
*** devoid has quit IRC16:55
*** martine has joined #openstack-dev16:55
*** derekh has quit IRC16:57
*** Mandell has joined #openstack-dev16:58
*** jjmb has joined #openstack-dev16:59
*** wiliam_ has quit IRC17:00
jgriffithadam_g_: to the rescue again... thanks!17:01
*** vkmc has quit IRC17:01
*** danpb has quit IRC17:01
*** wiliam_ has joined #openstack-dev17:02
*** reed has joined #openstack-dev17:02
*** vartom1119 has joined #openstack-dev17:02
*** marun has joined #openstack-dev17:03
*** amotoki has quit IRC17:03
*** GheRivero is now known as Ghe-afk17:04
*** anniec has joined #openstack-dev17:05
*** annegentle has joined #openstack-dev17:08
*** nati_ueno has joined #openstack-dev17:09
*** brunnhilde has joined #openstack-dev17:09
*** zaitcev has joined #openstack-dev17:10
*** wiliam_ has quit IRC17:11
*** lloydde has joined #openstack-dev17:12
*** jog0 has joined #openstack-dev17:14
*** bpoulos has joined #openstack-dev17:14
gyeeayoung, you approve https://review.openstack.org/#/c/28133/ already17:15
gyeeI was commending on it17:15
gyeecommenting17:15
*** adjohn has joined #openstack-dev17:16
*** portante has joined #openstack-dev17:16
*** vartom11110 has joined #openstack-dev17:17
*** vartom1119 has quit IRC17:18
*** anniecheng has joined #openstack-dev17:18
*** sstent_ has quit IRC17:20
*** sstent has joined #openstack-dev17:20
*** networkstatic has quit IRC17:20
*** Ryan_Lane has joined #openstack-dev17:23
*** wiliam_ has joined #openstack-dev17:23
*** JordanP has joined #openstack-dev17:23
*** lloydde has quit IRC17:25
*** JordanP has joined #openstack-dev17:26
*** sarob_ has joined #openstack-dev17:26
*** toddnni has joined #openstack-dev17:27
*** wiliam_ has quit IRC17:28
*** sarob has quit IRC17:30
*** sarob has joined #openstack-dev17:35
*** sarob_ has quit IRC17:36
*** SergeyLukjanov has joined #openstack-dev17:36
*** vartom11110 has quit IRC17:38
*** jamespage_ has quit IRC17:39
*** kobier has quit IRC17:39
*** lloydde has joined #openstack-dev17:40
*** chuck_ has quit IRC17:41
openstackgerritA change was merged to openstack/horizon: Enable using multiple API versions for Identity Service.  https://review.openstack.org/2798917:42
*** wiliam_ has joined #openstack-dev17:42
*** marcusk has joined #openstack-dev17:42
ayounggyee, sorry, didn't realize.  I had reviewed it several times, but held off.17:44
*** dguitarbite has quit IRC17:45
*** maoy_ has joined #openstack-dev17:45
*** maoy has quit IRC17:45
*** maoy_ is now known as maoy17:45
ayounggyee, but all tokens end up in the archival table, so the grace period is probably not necessary17:45
gyeeayoung, what about doc changes17:45
ayounggyee, instead, modify your script to only delete from the archival table tokens that are outside the window17:46
ayounggyee, yep, that should happen17:46
gyeeayoung, yeah, I'll have to scan both tables17:46
ayounggyee, do you know if you -1 stops the gate?17:46
ayounggyee, nope17:46
ayoungrun the cli and then just scan the old table17:46
*** dontalton has joined #openstack-dev17:47
*** m4xmr has joined #openstack-dev17:47
ayoungah...you are referring to the "delete" options17:47
gyeeright17:47
gyeethat way, I don't need to maintain two tables17:47
ayounggyee, 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
gyeeagreed. that table will grow17:49
ayounggyee, can the grace period be a separate patch, then?17:49
ayoungIt seems wrong to hold up a patch due to a feature request coming in during a code review17:49
gyeeayoung, I am fine with that17:49
ayoungcool.  lets look at the gate17:49
gyeek17:49
ayounggyee, think the gate is progressing.17:50
ayoungI'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 tomorrow17:50
gyeeayoung, sound good, thanks17:51
ayounggyee, https://review.openstack.org/#/c/27878/  might be just what we need17:51
ayoungability to run the unit tests against mysql and postgres....17:51
*** comay has quit IRC17:51
gyeeayoung, I'll look, I am slowly going through the reviews17:52
*** CaptTofu has quit IRC17:52
gyeewas swamped the last few days17:52
*** jjmb has quit IRC17:53
*** CaptTofu has joined #openstack-dev17:56
*** otherwiseguy has quit IRC17:57
stevemartermie: ping17:57
*** jclift_ has quit IRC17:58
simoayoung: where is the kvs store in keystone by default ?18:00
*** zul has joined #openstack-dev18:00
*** wiliam_ has quit IRC18:00
*** nati_ueno has quit IRC18:00
*** wiliam_ has joined #openstack-dev18:01
*** beagles is now known as beagles_brb18:01
*** dims has quit IRC18:02
ayoungsimo, memory only18:03
*** lloydde has quit IRC18:03
ayoungsimo, for a persisted store, you want memcached18:03
*** jamespage_ has joined #openstack-dev18:03
*** networkstatic has joined #openstack-dev18:03
*** flaper87 has quit IRC18:04
*** yolanda has joined #openstack-dev18:05
*** wiliam_ has quit IRC18:06
*** galstrom_zzz is now known as galstrom18:06
*** reed has quit IRC18:07
*** wiliam_ has joined #openstack-dev18:07
*** freedomhui has left #openstack-dev18:08
*** heller-mobi has joined #openstack-dev18:09
*** novas0x2a|laptop has quit IRC18:12
*** pabelanger has quit IRC18:13
*** dims has joined #openstack-dev18:15
*** Hien has quit IRC18:16
simoayoung: memcached is persistent ?18:16
ayoungsimo, yes18:16
*** pabelanger has joined #openstack-dev18:16
simoodd, I always used it as a non persistent cache18:16
simook18:16
ayoungnot sure how,  I think to a flat file, and have not looked in to security18:16
simoI encrypt everything so for now we can gloss over security :)18:17
ayoungsimo, good point.  But people are using it for persistence, just not sure how18:17
simoayoung: is there any backend that uses memcahed in keystone ?18:17
simoshould I use sql instead ?18:17
*** zul has quit IRC18:18
*** Hien has joined #openstack-dev18:18
*** krtaylor has quit IRC18:19
*** jamespage_ has quit IRC18:19
*** FatDarrel has joined #openstack-dev18:20
dolphmayoung: simo: memcache is not persistant to disk18:20
dolphmsimo: one of the token drivers is based on memcache18:21
*** flaper87 has joined #openstack-dev18:21
dolphmthe 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-dev18:24
cmarkin 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 large18:25
cmarklet me know if this is more appropriate in the non-dev channel18:25
dolphmcmark: 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 atm18:26
dolphmcmark: i haven't heard of anyone bring up per-service roles, though... per-domain is the general ask i've seen18:27
openstackgerritA change was merged to openstack/quantum: Avoid extra queries when retrieving routers  https://review.openstack.org/2855018:28
simodolphm: that was my understanding (not persistent) which makes it unsuitable for shared keys18:28
simodolphm: is sql the only default persistent database ?18:29
cmarkdolphm: 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 scoped18:29
cmarki guess we could have domain-roles and project-roles18:29
dolphmsimo: yes, but termie has a cassandra driver that may merge in havana18:30
dolphmcmark: +1 to the meaning; you mean domain-owned roles and project-owned roles?18:31
simodolphm: ok I will check how to use the sql backend then, I guess I will have to create a new table and so on18:31
cmarkdolphm: affirmative18:31
dolphmcmark: 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 thoroughly18:32
dolphmmuch more generic* 'attributes'18:32
dolphmsimo: db_sync will create that table for you ('token')18:33
*** dolphm has quit IRC18:33
simotoken ?18:33
*** Ghe-afk is now known as GheRivero18:33
*** lloydde has joined #openstack-dev18:33
*** dani4571 has joined #openstack-dev18:36
*** mmagr has joined #openstack-dev18:38
*** comay has joined #openstack-dev18:38
*** beagles_brb is now known as beagles18:39
*** egallen has joined #openstack-dev18:39
*** terryh has quit IRC18:41
cmarkAnother 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-dev18:41
*** lloydde has quit IRC18:43
*** egallen has quit IRC18:43
*** novas0x2a|laptop has joined #openstack-dev18:45
*** jamespage_ has joined #openstack-dev18:45
*** utlemming has quit IRC18:47
*** utlemming has joined #openstack-dev18:48
*** zul has joined #openstack-dev18:48
*** johnthetubaguy has quit IRC18:49
*** devoid has joined #openstack-dev18:51
*** arosen has joined #openstack-dev18:52
*** egallen has joined #openstack-dev18:53
spzalaayoung: 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-domain18:53
spzalaayoung: please take a look when you get chance18:53
ayoungspzala, on it18:53
arosenHi 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
spzalaayoung: :)  thanks!18:54
*** devoid has left #openstack-dev18: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 IRC18:54
ayoungCLI operations, create and validate tokens and the like?18:54
arosenah nvm the doc i'm looking for hasn't merged...18:55
spzalaayoung: I created user and group18:55
ayoungspzala, add it to the etherpad, as people are going to need to do the same18:55
*** jamespage__ has joined #openstack-dev18:56
*** otherwiseguy has joined #openstack-dev18:56
*** sudorandom has quit IRC18:56
spzalaayoung: OK, cool. I will try adding more detail in etherpad link I sent to you, and we can share it with all18:56
ayoungspzala, good stuff18:57
spzalaayoung: :) OK18:57
*** zzs has joined #openstack-dev18:57
spzalaayoung: thanks!! I will need to make few changes per review feedback and update the new patch18:58
*** egallen has quit IRC18:58
*** jamespage_ has quit IRC18:58
*** krtaylor has joined #openstack-dev18:59
*** egallen has joined #openstack-dev18:59
*** cp16net is now known as cp16net|away19:00
*** cp16net|away is now known as cp16net19:00
*** jecarey has quit IRC19:02
*** m4xmr has quit IRC19:02
*** gyee has quit IRC19:03
openstackgerritA change was merged to openstack/glance: Fix test_mismatched_X test data deletion check  https://review.openstack.org/2844619:03
openstackgerritA change was merged to openstack/quantum: Imported Translations from Transifex  https://review.openstack.org/2853619:03
openstackgerritA change was merged to openstack/quantum:  Copy the RHEL6 eventlet workaround from Oslo  https://review.openstack.org/2802519:03
*** arbrandes has joined #openstack-dev19:09
*** openstackgerrit has quit IRC19:09
*** openstackgerrit has joined #openstack-dev19:10
*** drewlander has quit IRC19:11
*** dhellmann has joined #openstack-dev19:11
*** lpmulligan has quit IRC19:11
*** mmagr has quit IRC19:13
*** markmcclain has quit IRC19:13
*** arbrandes has quit IRC19:13
*** erkules has joined #openstack-dev19:15
*** vipul is now known as vipul|away19:16
erkulesahoi, where can I read up why OS choose token authentication instead of aws like accesskeys?19:16
bnemecI'm looking at ways to fix https://bugs.launchpad.net/nova/+bug/117580819:17
*** markmcclain has joined #openstack-dev19:17
uvirtbotLaunchpad bug 1175808 in oslo "Qpid cannot serialize objects containing strings longer than 65535 characters" [Undecided,New]19:17
*** litong has joined #openstack-dev19:17
bnemecThe 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
bnemecHowever, 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 IRC19:18
ayoungspzala, what about the code https://review.openstack.org/#/c/26994/319:18
ayoungerkules, ancient history.  My understanding is that we inherited what Rack Space had already implemented.19:19
*** egallen has joined #openstack-dev19:20
ayoungOK,  mysql is not willing to drop column constraints?19:21
erkulesayoung: 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
erkulesayoung: are you talking about foreign key constraints?  check constraints are not implemented by mysql19:24
*** stevebaker has quit IRC19:24
ayoungerkules, 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
spzalaayoung: 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 attribute19:24
ayoungerkules, yea, but we add the constraints on to the database, and I am just trying to drop them19:24
ayoungspzala, good to know19:24
*** alunduil has quit IRC19:24
spzalaayoung: sure19:25
*** heller-mobi has quit IRC19:25
*** stevebaker has joined #openstack-dev19:26
erkulesayoung: would you pastebin the create table and error?19:26
*** jruzicka has quit IRC19:29
*** arbrandes has joined #openstack-dev19:30
*** yolanda has quit IRC19:31
*** rnirmal has quit IRC19:31
*** garyk has quit IRC19:33
*** adjohn has quit IRC19:34
openstackgerritA change was merged to openstack/nova: Remove insecure default for signing_dir option.  https://review.openstack.org/2856819:35
*** jamespage__ has quit IRC19:36
*** zul has quit IRC19:36
ayoungerkules, it is a side effect of http://bugs.mysql.com/bug.php?id=1033319:38
*** lloydde has joined #openstack-dev19:38
ayoungerkules, 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 IRC19:39
*** topol has quit IRC19:40
erkulesayoung: thats the correct syntax anyway. So you where not using the constraint name in the first place?19:40
erkulesoften made :)19:41
*** cp16net is now known as cp16net|away19:41
*** dolphm has joined #openstack-dev19:42
*** cp16net|away is now known as cp16net19:42
*** dolphm has quit IRC19:46
*** alunduil has joined #openstack-dev19:47
*** pabelanger has quit IRC19:49
*** radez is now known as radez_g0n319:49
ayoungerkules, the mistake is being made by sqlalchemy19:52
*** koolhead17 has quit IRC19:53
ayoungerkules, it also is not the sql standard, but mysql never really cared to much about those anyways19:53
*** alop has quit IRC19:55
*** alop has joined #openstack-dev19:56
*** networkstatic has quit IRC19:59
*** adjohn has joined #openstack-dev20:05
ayoungerkules, and it seems that there is no clean way to get the real constraint from the fk definition20:05
marunmarkmcclain: ping20:05
markmcclainpong20:05
*** vipul|away is now known as vipul20:07
marunmarkmcclain: I've noticed that the ovs l2 agent and the dhcp agent use an outsized amount of cpu20:07
marunmarkmcclain: in the l2 agent's case, it's using an order of magnitude more cpu (user and system) than any other openstack service20:08
erkulesayoung: I don't know the iso standard to drop a FK constraint20:08
marunmarkmcclain: is this normal?20:08
erkulesayoung: maybe you want to have a look at INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS20:08
*** cp16net is now known as cp16net|away20:10
markmcclainmarun: the l2 OVS agent runs lots subprocesses20:10
*** abhishekkr has quit IRC20:10
*** stevemar has quit IRC20:10
ayoungerkules, looking, thanks.20:10
*** jamespage__ has joined #openstack-dev20:11
erkulesayoung: yw20:11
markmcclainmarun: we might need to profile it to see if we can make it more efficient20:11
*** jamespage__ has quit IRC20:11
marunmarkmcclain: i think the current method of polling ovs is simply broken20:11
marunmarkmcclain: 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
marunmarkmcclain: 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
ayoungerkules, 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
ayounglets see if I can do that from sqlalchemy now20:14
*** adjohn has quit IRC20:14
marunmarkmcclain: that's just insane.  I imagine a multicore baremetal compute node wouldn't feel the load as much, but still.20:14
marunmarkmcclain: And I would note that the usage I'm seeing is on an idle box - no VM's were provisioned.20:15
markmcclainmarun: file a bug for us to look at CPU usage of the l2 agent20:16
marunmarkmcclain: will do20:16
FatDarrelok on oppenstack i have a vm and i cannot ssh or ping it? Any ideas20:17
markmcclainmarun: thanks20:17
*** Aarti has joined #openstack-dev20:18
marunFatDarrel: That sounds like it might be a better question for #openstack.20:18
*** cp16net|away is now known as cp16net20:19
FatDarrelmarun: why?20:19
Aartirussellb: hello20:20
marunFatDarrel: Are you a programmer?20:20
FatDarrelmarun: oh yes20:21
marunFatDarrel: And you are developing against OpenStack?20:21
Aartiwas thinking if I could volunteer for https://blueprints.launchpad.net/nova/+spec/mandatory-vm-lock20:21
FatDarrelmarun: oh yes20:21
marunFatDarrel: 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
Aartirussellb: how do I submit a patch on top of the existing one?20:22
russellbAarti: what do you mean?  update an existing patch up for review?20:22
marunFatDarrel: The #openstack channel will be a better venue to find help for more basic issues like 'can't connect to vm'20:22
erkulesayoung++ :)20:22
Aartirussellb: yes.. Is it under development still?20:22
russellbAarti: is what under development?20:23
FatDarrelmarun: what about keystone problems20:23
Aartihttps://review.openstack.org/#/c/21535/20:23
Aartifor blueprint https://blueprints.launchpad.net/nova/+spec/mandatory-vm-lock20:23
russellbAarti: to update an existing review, you just hack the code and amend the commit ... (git commit --amend)20:23
marunFatDarrel: That would be operational as well.20:23
*** zul has joined #openstack-dev20:23
russellbAarti: as long as the commit retains the original Change-Id, then it will upload another revision to gerrit20:23
russellbohhhhh20:24
FatDarrelmarun: what are about a schema change in keystone?20:24
marunFatDarrel: Operational and configuration-related issues are more productively asked about in #openstack.20:24
FatDarrelok20:24
russellbAarti: in that case, I would start a new review20:24
Aartirussellb: hmm and what about the similar effort done as part of the earlier review?20:25
*** spzala has quit IRC20:25
russellbAarti: well, you can ask Phil Day to restore that review, and then you should be able to update it20:26
Aartianyway my main question was whether someone is working in it already.. looks like none20:26
russellbAarti: as long as its in the abandoned state, you wo'nt be able to update it20:26
Aartiok I will ask him20:26
sdagueannegentle: hey, you around?20:26
sdagueI wanted some thoughts on turning a bunch of readmes into a new qa site20:26
annegentlesdague: hey20:26
annegentlesdague: looking to revitalize the sad http://qa.openstack.org/?20:27
sdagueas we're starting to document tempest chunks as part of a restructure20:27
sdagueannegentle: yes, well as a piece of this20:27
*** alunduil has quit IRC20:28
sdagueso 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.rst20:28
*** abhishekkr has joined #openstack-dev20:28
sdagueI 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 useful20:29
sdaguebecause doing both at once would be a big win20:29
Aartirussellb: 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 admin20:29
ayoungerkules,         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
Aartirussellb: I meant *cannot20:29
russellbAarti: i think that was the idea20:29
Aarticool.. just making sure we're on the same page.. thank you :)20:30
ayounga thing of beauty is a joy forever.  That sql is not a joy forever.  Draw the obvious conclusion20:30
Aartirussellb: one more question, maybe its something historical that I've missed but why din't we use disable_terminate field for locking?20:31
AartiI mean its just makes it confusing, two ways to do similar things20:32
*** gyee has joined #openstack-dev20:32
russellbAarti: disable_terminate is an EC2 API thing20:34
russellbthat's the only place it's exposed AFAICT20:34
Aartibut its used for the same functionality and we had that field on instances anyway..20:35
*** acfleury has quit IRC20:37
Aartiwe could expose it in nova api instead of exposing lock20:37
*** adjohn has joined #openstack-dev20:40
*** dprince has quit IRC20:45
*** adjohn has quit IRC20:45
*** FatDarrel has quit IRC20:47
*** Yada has joined #openstack-dev20:47
*** glikson has quit IRC20:49
*** FatDarrel has joined #openstack-dev20:50
*** Ryan_Lane has quit IRC20:51
*** alop has quit IRC20:51
*** giulivo has quit IRC20:52
FatDarreli looped the network20:52
*** bswartz has quit IRC20:52
*** alop has joined #openstack-dev20:52
*** matiu has joined #openstack-dev20:57
*** jamespage_ has joined #openstack-dev21:03
*** andrewbogott is now known as andrewbogott_afk21:03
*** zul has quit IRC21:04
*** adjohn has joined #openstack-dev21:06
*** mkollaro has quit IRC21:07
*** digitalsanctum has quit IRC21:09
*** alunduil has joined #openstack-dev21:11
*** johnpur has quit IRC21:11
*** martine has quit IRC21:12
*** sandywalsh has quit IRC21:14
*** RajeshMohan has quit IRC21:14
*** pcm__ has quit IRC21:15
*** lloydde has quit IRC21:16
openstackgerritA change was merged to openstack/nova: Session cleanup for db.floating_ip_* methods  https://review.openstack.org/2823521:16
openstackgerritA change was merged to openstack/tempest: Put the logic from devstack gate into tox.  https://review.openstack.org/2806621:16
*** zul has joined #openstack-dev21:17
*** sandywalsh has joined #openstack-dev21:18
*** terryh has joined #openstack-dev21:18
bknudsonlooking for some help running keystone tests against mysql... getting "ImportError: No module named MySQLdb"21:19
*** danwent has quit IRC21:19
bknudsonI thought there were docs but I can't find them.21:19
*** hazmat has joined #openstack-dev21:19
*** hazmat has joined #openstack-dev21:19
*** shardy is now known as shardy_afk21:20
*** vipul is now known as vipul|away21:20
bknudsonFound ayoung's abandoned patch with the packages I need.21:22
*** Ryan_Lane has joined #openstack-dev21:22
*** stevebaker has quit IRC21:24
*** gordc has quit IRC21:25
*** alexpilotti has joined #openstack-dev21:26
*** dolphm has joined #openstack-dev21:27
*** danwent has joined #openstack-dev21:28
*** melwitt has joined #openstack-dev21:29
*** stevebaker has joined #openstack-dev21:31
*** beagles has quit IRC21:32
*** alexpilotti has quit IRC21:33
*** beagles has joined #openstack-dev21:34
*** zul has quit IRC21:35
*** dosaboy has quit IRC21:35
*** jamespage_ has quit IRC21:37
*** dosaboy has joined #openstack-dev21:37
*** armax has left #openstack-dev21:39
*** Ryan_Lane1 has joined #openstack-dev21:39
ayoungbknudson, right...would like to actually get those in.21:41
*** vipul|away is now known as vipul21:41
*** markmcclain has quit IRC21:41
*** Ryan_Lane has quit IRC21:41
*** ayoung is now known as ayoung-afk21:41
*** lauria has quit IRC21:44
bknudsonayoung-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-dev21:47
*** dani4571 has quit IRC21:47
*** jasondotstar has quit IRC21:47
*** afazekas has quit IRC21:50
*** litong has quit IRC21:53
*** networkstatic has joined #openstack-dev21:54
openstackgerritA change was merged to openstack/nova: Removes duplicate assertEqual  https://review.openstack.org/2860221:55
*** Ryan_Lane1 is now known as Ryan_Lane21:55
*** Ryan_Lane has joined #openstack-dev21:55
*** bswartz has joined #openstack-dev21:57
*** sacharya has quit IRC21:57
*** READ10 has quit IRC21:59
FatDarreloh openstack21:59
*** krtaylor has quit IRC21:59
*** Aarti has quit IRC22:00
*** morazi has quit IRC22:01
*** dhellmann has quit IRC22:02
*** redbeard2 has quit IRC22:03
*** anniec has quit IRC22:05
*** ijw has joined #openstack-dev22:07
*** danwent has quit IRC22:09
*** kbringard has quit IRC22:10
*** bpoulos has quit IRC22:10
*** lloydde has joined #openstack-dev22:10
bknudsonI 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-dev22:13
*** anniec has joined #openstack-dev22:13
*** dims has quit IRC22:14
*** boris-42 has quit IRC22:16
FatDarrelbknudson: you are stuck!22:16
bknudsonFatDarrel: I've got the source code so not really stuck.22:18
bknudsonjust wondering if someone had run into this before and worked around it.22:18
*** kbrierly has quit IRC22:18
*** electrichead has quit IRC22:19
*** lucasagomes has joined #openstack-dev22:21
*** danwent has joined #openstack-dev22:22
*** mrodden has quit IRC22:23
*** fesp has joined #openstack-dev22:23
*** ladquin is now known as ladquin_brb22:25
*** flaper87 has quit IRC22:25
*** yidclare has quit IRC22:25
*** arbrandes has quit IRC22:25
*** dims has joined #openstack-dev22:27
*** eglynn has quit IRC22:27
FatDarrelmight be a problem with the mysqld?22:27
*** yidclare has joined #openstack-dev22:29
bknudsonI picked up Jamie Lennox's pending patch and that's working better.22:29
*** cloudchimp has quit IRC22:35
ayoung-afkbknudson, I'm probably gone for the night.  Send me an email if you are stuck22:38
*** Ryan_Lane has quit IRC22:42
*** dolphm has quit IRC22:44
*** fesp has left #openstack-dev22:48
*** fesp has quit IRC22:48
*** alop has quit IRC22:48
*** jhesketh has joined #openstack-dev22:51
*** pabelanger_ has quit IRC22:52
*** pabelanger has joined #openstack-dev22:52
*** galstrom is now known as galstrom_zzz22:52
*** pfreund has quit IRC22:54
*** katylava has quit IRC22:54
*** dolphm has joined #openstack-dev22:54
*** jayg is now known as jayg|g0n322:55
*** lychinus has joined #openstack-dev22:56
lychinusgood evening! anyone that has worked with nova-scheduler before?22:57
*** alexxu has quit IRC22:58
*** jhesketh has quit IRC22:59
*** alop has joined #openstack-dev22:59
openstackgerritA change was merged to openstack-infra/devstack-gate: Add pbr to the devstack-gate.  https://review.openstack.org/2858622:59
*** jhesketh__ has joined #openstack-dev23:00
*** apevec has quit IRC23:01
*** rcleere has quit IRC23:02
*** egallen has quit IRC23:07
*** megha has quit IRC23:07
*** baba has joined #openstack-dev23:08
*** lucasagomes has quit IRC23:08
*** lloydde has quit IRC23:08
*** lloydde has joined #openstack-dev23:09
*** egallen has joined #openstack-dev23:10
*** lychinus has left #openstack-dev23:11
*** michchap has quit IRC23:11
*** michchap has joined #openstack-dev23:12
*** lloydde has quit IRC23:14
*** otherwiseguy has quit IRC23:17
*** ijw1 has joined #openstack-dev23:17
*** ijw has quit IRC23:17
*** sacharya has joined #openstack-dev23:18
*** acfleury has joined #openstack-dev23:19
*** egallen has quit IRC23:19
*** krtaylor has joined #openstack-dev23:19
*** lloydde has joined #openstack-dev23:31
*** datsun180b has quit IRC23:34
*** hemna is now known as hemnafk23:37
*** ijw1 has quit IRC23:40
*** ijw has joined #openstack-dev23:40
*** CaptTofu has quit IRC23:44
*** CaptTofu has joined #openstack-dev23:44
*** mdenny has quit IRC23:46
*** CaptTofu has quit IRC23:48
*** CaptTofu has joined #openstack-dev23:48
*** gmurphy has joined #openstack-dev23:49
*** dolphm has quit IRC23:52
*** yidclare has quit IRC23:54
*** lloydde_ has joined #openstack-dev23:54
*** yidclare has joined #openstack-dev23:55
*** CaptTofu has quit IRC23:55
*** CaptTofu has joined #openstack-dev23:55
*** yidclare has quit IRC23:55
*** lloydde has quit IRC23:56
*** FnordDownUnder has joined #openstack-dev23:57
*** shang has quit IRC23:58
*** yidclare has joined #openstack-dev23:59

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