Tuesday, 2013-06-18

*** michchap_ has joined #openstack-dev00:00
*** michchap_ has quit IRC00:00
*** redbeard2 has joined #openstack-dev00:01
*** michchap_ has joined #openstack-dev00:01
*** michchap has quit IRC00:01
*** garyTh has quit IRC00:06
*** ron-slc_ has joined #openstack-dev00:08
*** ron-slc has quit IRC00:08
*** pcm_ has joined #openstack-dev00:10
*** shadower has joined #openstack-dev00:13
*** armax has joined #openstack-dev00:14
*** tjones has left #openstack-dev00:17
giulivoanyone around using devstack on f18?00:19
*** noslzzp has quit IRC00:20
*** alexpilotti has quit IRC00:20
*** andrewbogott is now known as andrewbogott_afk00:30
*** sungju has joined #openstack-dev00:31
*** sungju has quit IRC00:32
*** sungju_ has joined #openstack-dev00:32
*** sungju_ is now known as sungju00:32
*** seanrob has quit IRC00:33
*** seanrob has joined #openstack-dev00:34
*** sleepsonthefloor has quit IRC00:37
*** gyee has quit IRC00:37
*** bdpayne has quit IRC00:38
*** dolphm has joined #openstack-dev00:38
clarkbjgriffith: moving discussion here so I don't sidetrack the ML discussion, but re test imrovements the things you have listed should all work with testr as they were all things we sorted out with nova00:38
*** seanrob has quit IRC00:38
clarkbjgriffith: also testr is better at running single isolated tests bceause it forces you to write tests that work that way. So I am curious how these things didn't work for you. Want to make sure we don't miss these things inthe future or fix them if they are broken more fundamentally00:39
*** sdake has joined #openstack-dev00:42
*** sdake has joined #openstack-dev00:42
*** timello has joined #openstack-dev00:43
jgriffithclarkb: I knew I wasn't going to be very popular there00:43
*** carl_baldwin has quit IRC00:44
clarkbheh. fwiw I think this is a different conversation than the run_tests.sh thing00:44
clarkbI am more trying to make sure these things that do work work for you :)00:44
lifelessjgriffith: I'm not sure if you are reporting flux in the past, or current status.00:44
jgriffithlifeless: it's more of history, and not wanting to repeat it ;)00:45
*** mdomsch has quit IRC00:45
lifelessjgriffith: you know how the song goes :)00:45
jgriffithclarkb: I appreciate that, you and I discussed this before IIRC00:45
jgriffithlifeless: indeed00:45
lifelessjgriffith: 'history, never repeats'....00:45
jgriffithlifeless: haven't heard that in a very long time00:46
jgriffithclarkb: anyway... I never got things working right but it's apparantly just moi00:46
*** timello_ has quit IRC00:46
*** nachi_ has quit IRC00:47
*** egallen has quit IRC00:48
*** sballe has quit IRC00:48
*** sballe has joined #openstack-dev00:49
*** yaguang has joined #openstack-dev00:49
jgriffithlifeless: BTW, I came across your entry in launchpad on one of the topics (speaking of history never repeating)00:54
jgriffithTESTR_PDB00:54
jgriffithalthough that didn't work for some reason00:55
*** yidclare has quit IRC00:55
lifelessjgriffith: thats for debugging testr itself00:55
lifelessjgriffith: it isn't transitive to the backend runners00:55
jgriffithlifeless: explains that00:55
lifelessjgriffith: (and can't be for a few reasons; we'll get debug support soonish)00:55
jgriffithOh.. should've noted where launchpad took me there00:56
*** READ10 has joined #openstack-dev00:56
jgriffithlifeless: seems that bug has been around for quite a long time00:58
lifelessjgriffith: the no debugger support one?00:58
jgriffithlifeless: yes00:58
lifelessjgriffith: yeah, I have an active branch working on it.00:58
lifelessjgriffith: testr initially didn't know how to run tests, only how to datamine them.00:58
jgriffithYeah, reading through some history here00:59
lifelessjgriffith: so 'testr load' is the underlying plumbing, testr is a shim on top of it; fixing the layering to keep the structure, but handle input well is a little involved.00:59
*** dprince has joined #openstack-dev00:59
jgriffithlifeless: clarkb so when folks say "everything you can do in run_tests" you can do with testr...?00:59
jgriffithand yes, I know run-tests is simply a wrapper around "whatever"01:00
lifelessjgriffith: in particular, we have arbitrary many backend runners running at once, so we need a small screen-like things in there.01:00
lifelessjgriffith: so, today, you can't do 'import pdb;pdb.set_trace' in code under test and have that work with testr.01:01
lifelessjgriffith: it's my highest priority feature for testr. Totally desired.01:01
clarkbbut you can do what run_tests.sh does and run the tests with testtools.run01:01
jgriffithclarkb: sure... so maybe I need to be more careful with my email01:01
jgriffithclarkb: run_tests is nothing really.. but a convenience wrapper01:02
*** sballe has quit IRC01:02
jgriffithclarkb: lifeless personally I like seeing output scroll by and tell me pass/fail as it goes01:02
lifelessjgriffith: so, for that - the default in testr is the way it is because i'm used to test suites that run faster than my console can keep up01:03
*** Tedster has quit IRC01:03
lifelessjgriffith: thousands of tests per second.01:03
jgriffithlifeless: that would be nice :)01:03
clarkbjgriffith: nova has that with coloring too. I don't like it but it does work01:04
*** amerine has quit IRC01:04
lifelessjgriffith: I believe there are three underlying use cases for showing everything.01:04
*** Farooque1 has joined #openstack-dev01:04
jgriffithclarkb: fair01:04
*** jamielennox|away is now known as jamielennox01:04
lifelessjgriffith: one is detecting hung tests. With parallel workers, this use case is not met by 'show everything' - you can't detect it visually anymore.01:04
jgriffithlifeless: you have a crap test that's hung.. don't want to wait 60 seconds to realize it's prompting your for input01:04
jgriffithtrue01:05
lifelessjgriffith: secondly, dropping into debuggers - you want to know what test you're debugging01:05
*** arata has joined #openstack-dev01:05
lifelessjgriffith: thirdly its like a defragger, keeps visual cortex active.01:06
lifelessjgriffith: so, what I want to do in testr itself is:01:06
*** Farooque has quit IRC01:06
lifeless - support dropping into debuggers01:06
*** cjwilson has quit IRC01:06
lifeless - output the source and id of hung tests after a configurable timeout [e.g. last-run-time + 50% / over-fixed-time-threshold]01:07
*** stevemar has joined #openstack-dev01:07
lifelesss|/|or|01:07
jgriffithlifeless: that would be cool01:07
lifeless - lastly show a spinner01:07
jgriffithlifeless: haha... was waiting for that one :)01:08
jgriffithfunny how we get uneasy without visual feed-back :)01:08
openstackgerritA change was merged to openstack/oslo-incubator: Remove unused zmq relay functionality  https://review.openstack.org/3192001:08
lifelessits hard to tell if another processs is ready for input, but if we stub out stdin inside the process, we can issue a prompt to testr saying 'hey, I need input now' and do that instantly, in future.01:08
lifelessjgriffith: IME it's often a fill-in for inadequate logging and data capture01:09
jgriffithlifeless: so for example: I kicked this off about 3 minutes ago: http://paste.openstack.org/show/38816/01:09
*** ben_duyujie has joined #openstack-dev01:09
lifelessjgriffith: so anyhow, point is - I think I understand the actual needs [vs described issues], and a) am plodding towards it as I get cycles; b) have a design, and i could talk someone else through it if they want to do it.01:09
lifelessjgriffith: and I think the design will be nice and great to use.01:09
jgriffithlifeless: yes, sounds promising01:09
jgriffithlifeless: I'd volunteer to help but I really don't have cycles, and I have a test suite that meets my needs01:10
lifelessyah01:10
lifelesstotally understand01:10
jgriffithlifeless: which was kinda my point in the email01:10
jgriffithlifeless: however I do have a better appreciation for the reasoning and the goal01:10
*** dolphm has quit IRC01:12
*** mdomsch has joined #openstack-dev01:13
*** lbragstad has joined #openstack-dev01:17
*** racedo has quit IRC01:18
*** Mandell has quit IRC01:18
giulivoping dtroyer_zz01:19
*** sdake has quit IRC01:21
*** Ryan_Lane has quit IRC01:22
*** jasdeepH has quit IRC01:26
*** alop has quit IRC01:27
*** racedo has joined #openstack-dev01:29
*** gongysh has quit IRC01:30
*** nati_ueno has quit IRC01:31
*** erkules has quit IRC01:34
*** stevemar has quit IRC01:35
*** terry7 has quit IRC01:37
*** stevemar has joined #openstack-dev01:37
*** melwitt has quit IRC01:38
*** Tedster has joined #openstack-dev01:38
*** giulivo has quit IRC01:42
*** sdake has joined #openstack-dev01:42
*** sdake has joined #openstack-dev01:42
*** otherwiseguy has joined #openstack-dev01:43
*** vuntz has quit IRC01:45
*** maoy has joined #openstack-dev01:46
*** Farooque has joined #openstack-dev01:46
*** souvik has joined #openstack-dev01:46
*** maoy has quit IRC01:46
*** READ10 has quit IRC01:48
*** zb has quit IRC01:48
*** erkules has joined #openstack-dev01:48
*** neelashah has joined #openstack-dev01:49
*** fifieldt_ has joined #openstack-dev01:53
*** pcm_ has quit IRC01:54
*** mdomsch has quit IRC01:55
*** pcm_ has joined #openstack-dev01:55
*** dprince has quit IRC01:57
*** novas0x2a|laptop has quit IRC01:58
*** jasdeepH has joined #openstack-dev01:59
*** zb has joined #openstack-dev02:00
*** Tross has quit IRC02:03
*** cjwilson has joined #openstack-dev02:04
*** bing_bu has joined #openstack-dev02:04
*** pcm_ has quit IRC02:05
*** kui has joined #openstack-dev02:05
*** markvoelker has quit IRC02:07
*** dolphm has joined #openstack-dev02:07
*** vuntz has joined #openstack-dev02:08
*** SumitNaiksatam has quit IRC02:08
*** stevemar has quit IRC02:09
*** markwash has joined #openstack-dev02:10
kuiCan someone help triage the bug please ?02:11
kuihttps://bugs.launchpad.net/openstack-ci/+bug/119142402:11
uvirtbotLaunchpad bug 1191424 in openstack-ci "exercise euca.sh should check the volume just created" [Undecided,New]02:11
kuiand approve the review02:11
kuihttps://review.openstack.org/#/c/33180/02:11
clarkbkui: can you move the bug to devstack? that is not an openstack-ci bug02:12
clarkbthen the devstack devs will be able to triage i02:12
clarkbt02:12
*** hk_peter has joined #openstack-dev02:13
kuiOK, I will change it02:13
*** souvik has quit IRC02:13
*** anniec has quit IRC02:17
*** souvik has joined #openstack-dev02:19
kuiIs there a dedicated IRC channel for devstack ?02:25
*** wenjianhn has quit IRC02:25
clarkbkui: not that I am aware of. This would be the appropriate place, but dtroyer_zz seems to be away02:25
kuiThanks,  clarkb.  I will wait another day02:27
*** freedomhui has joined #openstack-dev02:28
*** rcleere has joined #openstack-dev02:32
*** kui has left #openstack-dev02:33
*** marun has quit IRC02:34
*** SumitNaiksatam has joined #openstack-dev02:36
*** amerine has joined #openstack-dev02:37
*** darjeeling has quit IRC02:38
*** pabelanger has quit IRC02:39
*** sungju has quit IRC02:40
*** gongysh has joined #openstack-dev02:43
*** prad has joined #openstack-dev02:43
*** rcleere has quit IRC02:43
*** martitia_ has quit IRC02:44
*** martitia_ has joined #openstack-dev02:45
*** jergerber has quit IRC02:47
*** mdomsch has joined #openstack-dev02:48
*** souvik has quit IRC02:53
*** SumitNaiksatam has quit IRC02:54
*** ben_duyujie has quit IRC02:55
*** SumitNaiksatam has joined #openstack-dev02:55
*** SumitNaiksatam has left #openstack-dev02:55
*** martitia_ has quit IRC02:57
*** martitia_ has joined #openstack-dev02:57
*** martitia_ has quit IRC02:59
*** martitia_ has joined #openstack-dev02:59
*** Mandell has joined #openstack-dev03:00
*** sean_s has joined #openstack-dev03:02
*** souvik has joined #openstack-dev03:03
*** matiu has quit IRC03:03
*** amerine has quit IRC03:05
*** souvik has quit IRC03:05
*** sean_s has quit IRC03:07
*** rcleere has joined #openstack-dev03:07
*** leizhang has joined #openstack-dev03:11
*** SumitNaiksatam has joined #openstack-dev03:12
*** SumitNaiksatam has quit IRC03:12
*** nati_ueno has joined #openstack-dev03:17
*** Tross has joined #openstack-dev03:17
*** Tross has left #openstack-dev03:18
*** shaon has joined #openstack-dev03:18
*** pixelbeat has quit IRC03:19
*** alexxu has joined #openstack-dev03:21
*** sdake has quit IRC03:27
*** wenjianhn has joined #openstack-dev03:27
*** stevemar has joined #openstack-dev03:29
*** abhisri has quit IRC03:29
*** freedomhui has quit IRC03:32
*** gongysh has quit IRC03:32
*** dguitarbite has joined #openstack-dev03:34
*** bdpayne has joined #openstack-dev03:35
*** ayoung-afk has quit IRC03:36
*** galstrom_zzz is now known as galstrom03:37
*** sdake has joined #openstack-dev03:37
*** sdake has joined #openstack-dev03:37
*** stevemar2 has joined #openstack-dev03:38
*** stevemar has quit IRC03:38
*** sride has joined #openstack-dev03:39
*** pixelbeat has joined #openstack-dev03:39
*** stevemar2 has quit IRC03:39
*** stanzgy has quit IRC03:40
*** galstrom is now known as galstrom_zzz03:41
*** prad has quit IRC03:41
*** zbitter has joined #openstack-dev03:43
*** Farooque has quit IRC03:44
*** zb has quit IRC03:46
*** sudorandom has joined #openstack-dev03:49
*** Samos123 has quit IRC03:51
*** lloydde has joined #openstack-dev03:51
*** Samos123 has joined #openstack-dev03:52
*** markmcclain has joined #openstack-dev03:58
*** freedomhui has joined #openstack-dev04:02
*** novas0x2a|laptop has joined #openstack-dev04:02
*** jasondotstar has quit IRC04:03
*** neelashah has quit IRC04:04
*** jamespage has quit IRC04:05
*** jamespage has joined #openstack-dev04:06
*** terryh has quit IRC04:06
*** jayjay has quit IRC04:08
*** wenjianhn has quit IRC04:08
*** morazi has joined #openstack-dev04:16
*** SergeyLukjanov has joined #openstack-dev04:18
*** sthaha has quit IRC04:20
*** sthaha has joined #openstack-dev04:21
*** souvik has joined #openstack-dev04:25
*** dguitarbite has quit IRC04:27
*** otherwiseguy has quit IRC04:27
*** bdpayne has quit IRC04:27
*** Farooque has joined #openstack-dev04:28
*** amerine has joined #openstack-dev04:28
*** sdake has quit IRC04:31
*** jcoufal has joined #openstack-dev04:32
*** zaitcev has quit IRC04:33
*** bdpayne has joined #openstack-dev04:34
*** kushal has joined #openstack-dev04:34
*** Farooque has quit IRC04:35
*** Farooque has joined #openstack-dev04:36
*** martine has quit IRC04:44
*** Farooque has quit IRC04:44
*** Farooque has joined #openstack-dev04:45
*** pixelbeat has quit IRC04:46
*** morazi has quit IRC04:47
*** Farooque has quit IRC04:47
*** Farooque has joined #openstack-dev04:47
*** rcleere has quit IRC04:50
*** Farooque has quit IRC04:50
*** Farooque has joined #openstack-dev04:51
*** asalkeld has quit IRC04:51
*** networkstatic has quit IRC04:52
*** yuanz has quit IRC04:53
*** networkstatic has joined #openstack-dev04:54
*** freedomhui has quit IRC04:55
*** comay has quit IRC04:57
*** sld__ is now known as sld04:59
*** souvik has quit IRC05:00
*** bdpayne has quit IRC05:00
*** souvik has joined #openstack-dev05:01
*** Farooque has quit IRC05:02
*** Farooque has joined #openstack-dev05:03
*** shaon_ has joined #openstack-dev05:03
*** wenjianhn has joined #openstack-dev05:04
*** shaon has quit IRC05:04
*** Farooque has quit IRC05:05
*** Farooque has joined #openstack-dev05:05
*** pschaef has joined #openstack-dev05:19
*** Farooque has quit IRC05:19
*** Farooque has joined #openstack-dev05:19
*** sride has quit IRC05:20
*** souvik has quit IRC05:20
*** souvik has joined #openstack-dev05:26
*** Farooque has quit IRC05:26
*** Farooque has joined #openstack-dev05:26
openstackgerritA change was merged to openstack/python-troveclient: Update to pbr/d2to1.  https://review.openstack.org/3313905:28
*** reed has quit IRC05:31
*** jcoufal has quit IRC05:33
*** vipul is now known as vipul|away05:34
*** matiu has joined #openstack-dev05:34
*** matiu has quit IRC05:34
*** matiu has joined #openstack-dev05:34
*** jasper22_ has joined #openstack-dev05:34
*** abhishekkr has quit IRC05:35
*** boris-42 has joined #openstack-dev05:36
*** Farooque has quit IRC05:36
*** Farooque has joined #openstack-dev05:37
*** markmcclain has quit IRC05:37
*** jasper22 has quit IRC05:37
*** pschaef has left #openstack-dev05:42
*** Farooque has quit IRC05:42
*** Farooque has joined #openstack-dev05:42
*** pschaef has joined #openstack-dev05:43
openstackgerritA change was merged to openstack/python-troveclient: Move to flake8/hacking.  https://review.openstack.org/3314005:45
*** anfrolov has joined #openstack-dev05:48
*** freedomhui has joined #openstack-dev05:51
*** devvesa has joined #openstack-dev05:51
*** Farooque has quit IRC05:52
*** Farooque has joined #openstack-dev05:53
*** navid has joined #openstack-dev05:54
*** Farooque has quit IRC05:54
*** Farooque has joined #openstack-dev05:55
*** terriyu has quit IRC05:55
*** Ryan_Lane has joined #openstack-dev05:56
*** sdake has joined #openstack-dev05:57
*** sdake has joined #openstack-dev05:57
*** Farooque has quit IRC05:58
*** Ryan_Lane has joined #openstack-dev05:59
*** Farooque has joined #openstack-dev05:59
*** lloydde has quit IRC05:59
*** nati_ueno has quit IRC05:59
*** nati_ueno has joined #openstack-dev06:00
*** ffio has joined #openstack-dev06:01
*** _ffio_ has quit IRC06:01
*** shaon has joined #openstack-dev06:02
*** gongysh has joined #openstack-dev06:03
*** shaon_ has quit IRC06:04
*** mrunge has joined #openstack-dev06:06
*** SergeyLukjanov has quit IRC06:07
*** garyk has joined #openstack-dev06:07
*** gongysh has quit IRC06:08
*** abhishekkr has joined #openstack-dev06:09
*** gongysh has joined #openstack-dev06:10
*** lloydde has joined #openstack-dev06:10
*** nati_uen_ has joined #openstack-dev06:11
*** eglynn has joined #openstack-dev06:11
*** jasdeepH has quit IRC06:11
*** vartom3 has joined #openstack-dev06:13
openstackgerritA change was merged to openstack/cinder: Use common.processutils.execute  https://review.openstack.org/3297406:13
*** nati_ueno has quit IRC06:13
*** jasper22_ is now known as jasper2206:14
*** mihgen has joined #openstack-dev06:14
*** xqueralt-afk is now known as xqueralt06:14
*** dolphm has quit IRC06:15
garykgongysh: ping06:15
gongyshgaryk: pong06:15
garykgongysh: did you see the message i sent you?06:17
*** Farooque has quit IRC06:17
*** koolhead17 has joined #openstack-dev06:18
*** Farooque has joined #openstack-dev06:18
*** jasdeepH has joined #openstack-dev06:20
*** souvik has quit IRC06:21
*** jasdeepH has quit IRC06:21
*** Farooque has quit IRC06:22
*** Farooque has joined #openstack-dev06:22
*** nati_uen_ has quit IRC06:23
*** Farooque has quit IRC06:23
*** eglynn has quit IRC06:24
gongyshgaryk: pong, my irc connection is not stable06:25
*** gongysh has quit IRC06:25
*** darjeeling has joined #openstack-dev06:25
*** Ryan_Lane has quit IRC06:25
*** Farooque has joined #openstack-dev06:26
*** souvik has joined #openstack-dev06:26
*** darjeeling has quit IRC06:27
*** vipul|away is now known as vipul06:27
*** henrynash has joined #openstack-dev06:30
*** abhishekkr has quit IRC06:31
*** Farooque has quit IRC06:31
*** Farooque has joined #openstack-dev06:31
*** pschaef has quit IRC06:32
*** pschaef has joined #openstack-dev06:33
*** gongysh has joined #openstack-dev06:33
gongyshgaryk: ping, it is ok now06:33
mirrorboxI'm wondering if I'm the only person seeing this: http://lists.openstack.org/pipermail/openstack-dev/2013-June/010470.html ?06:36
*** Farooque has quit IRC06:36
*** nati_ueno has joined #openstack-dev06:37
*** Farooque has joined #openstack-dev06:37
mirrorboxand I'm not even sure how to debug that ;(06:37
*** Ryan_Lane has joined #openstack-dev06:38
*** armax has quit IRC06:41
*** Farooque has quit IRC06:41
*** Farooque has joined #openstack-dev06:41
*** hk_peter has quit IRC06:42
*** henrynash has quit IRC06:42
*** abhishekkr has joined #openstack-dev06:43
*** souvik has quit IRC06:44
*** xqueralt is now known as xqueralt-afk06:44
*** romcheg has joined #openstack-dev06:46
*** ifarkas has joined #openstack-dev06:46
*** boris-42 has quit IRC06:48
*** Farooque has quit IRC06:48
*** Farooque has joined #openstack-dev06:48
*** egallen has joined #openstack-dev06:51
*** Mandell has quit IRC06:52
*** Farooque has quit IRC06:52
*** nati_ueno has quit IRC06:52
*** Farooque has joined #openstack-dev06:53
*** nati_ueno has joined #openstack-dev06:53
*** reidrac has joined #openstack-dev06:53
*** Mandell has joined #openstack-dev06:55
*** Ryan_Lane has quit IRC06:58
openstackgerritA change was merged to openstack/horizon: Fixing get_panel_groups uncaught exception  https://review.openstack.org/3108807:00
*** michchap_ has quit IRC07:00
*** ffio has quit IRC07:00
*** michchap has joined #openstack-dev07:00
*** gongysh has quit IRC07:05
*** Farooque has quit IRC07:05
*** Farooque has joined #openstack-dev07:06
*** afazekas has joined #openstack-dev07:06
kashyapHien, any hints why hints latest devstack setup fails (this with git head of devstack and all repos in /opt/stac) with this keystone error -- http://paste.openstack.org/show/38837/07:06
*** ffio has joined #openstack-dev07:06
*** Samos123 has quit IRC07:06
*** timello has quit IRC07:06
*** timello has joined #openstack-dev07:07
kashyapDuh, let me search psycopg2 in Fedora repos (I was making a typo!)07:07
*** Samos123 has joined #openstack-dev07:08
*** jcoufal has joined #openstack-dev07:08
openstackgerritA change was merged to openstack/python-troveclient: Migrate to testr.  https://review.openstack.org/3340307:12
*** mihgen has quit IRC07:15
*** jongleur has joined #openstack-dev07:15
*** romcheg has left #openstack-dev07:18
*** Samos123 has quit IRC07:18
*** Samos123 has joined #openstack-dev07:19
*** ndipanov_gone is now known as ndipanov07:19
*** jtomasek has joined #openstack-dev07:21
*** yuanz has joined #openstack-dev07:21
*** eglynn has joined #openstack-dev07:22
jongleurHi. Trying horizon (from the grizzly release) I continuously get python errors stating it "cannot import force_unicode" when it tries to: "from django.utils.translation import force_unicode, uget_text_lazy...07:22
*** darjeeling has joined #openstack-dev07:23
jongleurwhat's going wrong? as far as I understand python, it's right: there is no force_unicode in django.utils.translation07:23
Alex_Gaynorjongleur: If you do `import django; print django.get_version()` what do you get?07:23
*** garyk has quit IRC07:23
Alex_GaynorAh, wait, django.utils.translation is totally the wrong place07:23
Alex_Gaynordjango.utils.encoding is the right one07:23
*** garyk has joined #openstack-dev07:23
jongleur1.5.107:23
Alex_Gaynoryeah, django.utils.translation is totally wrong, let me get a checkout and see if this is fixed or send a patch07:24
jongleurgreat, thanks07:24
Alex_GaynorLooks to have been fixed in master07:24
*** asalkeld has joined #openstack-dev07:25
*** giulivo has joined #openstack-dev07:25
ndipanovjongleur, Alex_Gaynor shouldn't the requiremnt be pinned in horion to avoid this kind of thing?07:26
*** zbitter is now known as zaneb07:26
ndipanovon django version that is07:26
jongleurndipanov: I have no idea - I just try to install openstack and stumbled here, yet07:26
Alex_Gaynorndipanov: I'd think so, I don't know much about horizon to be honest, just a django developer :)07:26
Alex_GaynorThis was fixed in 5d32caf3af3b11fcf496ebb04ccfc44f49cbe0b907:26
*** freedomhui has quit IRC07:27
jongleurwait... that's strange... dpkg-query reports python-django to be version 1.4.5-1...07:27
*** eglynn has quit IRC07:27
ndipanovAlex_Gaynor, and the patch updates the pip-requires as expected07:27
jongleur(but the 1.5.1. was reported by the get_version() command...07:27
*** Alexei_987 has joined #openstack-dev07:27
ndipanovso jongleur are you using virtual envs or?07:28
ndipanovdevstack on a non clean machine maybe?07:28
jongleurno devstack07:28
ndipanovjongleur, hmmm right that's strange...07:29
jongleurbut I tried devstack before, so unclean machine might be07:29
jongleurhmm... I don't want another reinstall of the OS again :(07:29
ndipanovjongleur, hence - virtualization... I hear it's big right now :)07:30
jongleurndipanov: yes, but isn't that what openstack is for?07:30
jongleurvirtualizing the virtualization stuff is... well, somewhere the virtualization should start, right?07:31
ndipanovjongleur, sure - just joking :)07:31
jongleur;)07:31
ndipanovjongleur, how did you install openstack exactly?07:31
*** jgallard has joined #openstack-dev07:32
*** jprovazn has joined #openstack-dev07:32
*** jasdeepH has joined #openstack-dev07:32
jongleurndipanov: following an installation guide - in fact following two installation guides (in two trials to do so), so I have to search for the corresponding open tab for the current attempt (which I started last week, so it's buried somewhere in firefox)07:33
jongleurthis one: https://github.com/mseknibilel/OpenStack-Grizzly-Install-Guide/blob/OVS_MultiNode/OpenStack_Grizzly_Install_Guide.rst07:34
*** pixelbeat has joined #openstack-dev07:34
ndipanovjongleur, there's a lot of moving parts there especially if you used distro packages (seems yes), so not sure I can help you... but I'd start with a clean machine07:35
jongleuryeah, sure - again  ;)07:35
jongleurthanks nevertheless ;)07:35
ndipanovjongleur, shameless plug: check out openstack.redhat.com - we have an app for that (installing openstack that is)07:35
ndipanovjongleur, but so do other peeps... maybe look into that rather than do it by hand..07:36
jongleuryeah, that seems to be the biggest problem around: there are hundrets of people writing walkthroughs, half-done scripts and so on07:37
*** jasdeepH has quit IRC07:37
jongleurbut while devstack seems to work, there's no good installation routine for openstack, and nobody cares for the entire project, as everybody who cares, does it for his customers or own expertise - or for private and therefore decides to be finished at the "works-for-me" stage07:38
*** xqueralt-afk is now known as xqueralt07:38
*** sungju has joined #openstack-dev07:38
ndipanovjongleur, two I use are devstack for dev and "packstack" on our distros... not half-done at all.07:38
ndipanovjongleur, and it uses puppet so you won't have to reinstall everything :)07:42
ndipanovjongleur, really not sure about ubuntu though... would love to help07:43
jongleur;) but I would have to switch the distribution entirely, I fear07:43
jongleurwell, I installed openstack successfully before with ubuntu, Essex on 12.04, Folsom on 12.10, but now grizzly fails on 13.04 yet07:44
ndipanovjongleur, maybe there are some ubuntu specific channels you could get better info on...07:45
*** gongysh has joined #openstack-dev07:47
*** Farooque has quit IRC07:47
*** martyntaylor has joined #openstack-dev07:48
*** Farooque has joined #openstack-dev07:48
*** jgallard has quit IRC07:48
*** jgallard has joined #openstack-dev07:48
*** racedo has quit IRC07:50
*** Farooque has quit IRC07:50
*** Farooque has joined #openstack-dev07:50
*** saschpe has quit IRC07:50
openstackgerritA change was merged to openstack/cinder: cinder.schedule: Replace 'locals()' with explicit values  https://review.openstack.org/3328807:52
koolhead17jongleur, hi07:52
jongleurhi koolhead1707:52
koolhead17what is the issue your facing?07:52
jongleurkoolhead17: not sure if that's all, but currently horizon fails reporting to the log it cannot import force_unicode from django.utils.translation07:54
*** garyk has quit IRC07:54
jongleur(which seems reasonable as that afaik does not exist there)07:54
*** garyk has joined #openstack-dev07:54
*** saschpe has joined #openstack-dev07:54
*** mmagr has joined #openstack-dev07:54
*** markwash has quit IRC07:54
koolhead17jongleur, did you do any changes in default config?07:56
*** JordanP has joined #openstack-dev07:56
jongleurthe horizon config? as far as I remember no.07:57
mirrorboxndipanov: are you around?07:57
*** toddnni_ has quit IRC07:58
*** mihgen has joined #openstack-dev07:59
*** Farooque has quit IRC07:59
*** pmathews has joined #openstack-dev07:59
*** Farooque has joined #openstack-dev07:59
ndipanovmirrorbox, present!08:00
ndipanovmirrorbox, how can I be of service08:00
*** athomas has joined #openstack-dev08:00
mirrorboxndipanov: hi, I'm looking at 186_new_bdm_format.py08:01
ndipanovmirrorbox, take it to nova channel maybe?08:01
mirrorboxoh, good08:01
*** freedomhui has joined #openstack-dev08:02
*** odyssey4me has joined #openstack-dev08:02
*** derekh has joined #openstack-dev08:04
*** SergeyLukjanov has joined #openstack-dev08:05
Davieyjongleur: I am also biased, but using anything other than distributions is an expensive decision IMO.  Your maintenance burden becomes much more expensive.08:05
jongleurwith "than distributions" you talk about openstack-distribution-bundles?08:06
jongleurlike stackops?08:06
DavieyI can't talk for other distributions than Ubuntu :)08:06
*** lucasagomes has joined #openstack-dev08:07
*** freedomhui has quit IRC08:07
jongleurDaviey: yes, but my attempt was with ubuntu 13.04 server (so including the openstack grizzly stuff)08:07
Davieyjongleur: You should be able to use grizzly on 12.04 via the Ubuntu Cloud Archive.  12.04 is the LTS (Long Term Release) release, which will out support 13.04.08:08
*** garyk has quit IRC08:08
*** henrynash has joined #openstack-dev08:08
Davieyjongleur: we should probably take this to #openstack, it doesn't seem dev focused.08:08
jongleurok08:08
*** nati_ueno has quit IRC08:09
*** pmathews has quit IRC08:10
*** bashok has joined #openstack-dev08:12
*** Farooque has quit IRC08:13
*** shang has quit IRC08:13
*** JordanP has quit IRC08:14
*** lsmola has quit IRC08:14
*** JordanP has joined #openstack-dev08:15
*** jpich has joined #openstack-dev08:16
*** shang has joined #openstack-dev08:16
*** Mandell has quit IRC08:17
*** Ki2 has joined #openstack-dev08:18
Ki2Hi all08:18
*** networkstatic has quit IRC08:21
*** lsmola has joined #openstack-dev08:21
Ki2Hi lsmola08:23
*** boris-42 has joined #openstack-dev08:24
lsmolaKi2, hi08:24
Ki2I have some question about Openstack development, are u a developer?08:25
*** kaushikc has joined #openstack-dev08:25
*** asalkeld has quit IRC08:27
*** asalkeld has joined #openstack-dev08:27
Ki2can anybody help me by answering my questions?08:28
jongleurKi2: in general, don't ask to ask, just ask. I'm not an openstack developer, but here are devs around, I'm sure, and they won't wake up to answer a question that's useless as it's not filled with content08:29
mrungeKi2, sure, somebody can answer your questions08:29
mrungeKi2, you need to ask them08:29
Ki2for example, I can see source code of it which is written in python, so is python the only language of it or can i involve by java?08:30
Ki2I've downloaded this "nova-2013.1.2.tar.gz"; is it related to openstack compute?08:31
*** mkollaro has joined #openstack-dev08:31
Ki2it is only 5.5 mb, so is it the whole source code for compute?08:32
*** eglynn has joined #openstack-dev08:33
*** psedlak has joined #openstack-dev08:34
*** markmc has joined #openstack-dev08:36
Ki2mostly, for apache projects, I can download source codes, then by using maven, make them available for improting into eclipse, and then in eclipse it is possible to change them, but i have no idea about openstack, how can i import for example openstack compute source code into a IDE and then run it?08:36
*** lukego has joined #openstack-dev08:37
mrungeKi2, it's python, the whole project is currently mostly in python08:40
mrungeKi2, nova is one piece of OpenStack08:41
mrungeKi2, nova interfaces with many other components as well, such as the virtualization stack08:41
mrungeKi2, I suggest to look into devstack08:42
*** lsmola has quit IRC08:43
Ki2Thank you for your reply.08:45
*** lsmola has joined #openstack-dev08:45
*** salv-orlando has quit IRC08:48
*** salv-orlando has joined #openstack-dev08:49
*** Madkiss has quit IRC08:52
*** lsmola has quit IRC08:55
*** lsmola has joined #openstack-dev08:55
*** odyssey4me has quit IRC08:55
*** egallen has quit IRC08:55
*** lsmola_ has joined #openstack-dev08:58
*** iartarisi has joined #openstack-dev08:58
*** lsmola has quit IRC08:59
*** Ki2 has left #openstack-dev09:01
*** lsmola_ has quit IRC09:01
*** lsmola has joined #openstack-dev09:02
*** odyssey4me has joined #openstack-dev09:03
*** gongysh has quit IRC09:04
*** JordanP has quit IRC09:04
*** boris-42 has quit IRC09:07
*** boris-42 has joined #openstack-dev09:07
*** ben_duyujie has joined #openstack-dev09:08
*** odyssey4me has quit IRC09:08
*** iartarisi has quit IRC09:12
*** avishay has quit IRC09:13
*** iartarisi has joined #openstack-dev09:15
*** odyssey4me has joined #openstack-dev09:16
*** devx has quit IRC09:18
*** ben_duyujie has quit IRC09:19
*** devx has joined #openstack-dev09:20
*** zaneb has quit IRC09:22
*** bing_bu has quit IRC09:23
*** amerine has quit IRC09:24
*** zoresvit has joined #openstack-dev09:25
*** dripton has quit IRC09:25
*** flask11 has joined #openstack-dev09:26
*** mrunge is now known as mrunge_brb09:27
*** dripton has joined #openstack-dev09:29
*** egallen has joined #openstack-dev09:31
*** zaneb has joined #openstack-dev09:42
*** mrunge_brb is now known as mrunge09:44
*** egallen has quit IRC09:47
*** zb has joined #openstack-dev09:47
*** zaneb has quit IRC09:48
*** zb is now known as zaneb09:49
*** sushils has joined #openstack-dev09:51
*** JordanP has joined #openstack-dev09:53
*** eglynn has quit IRC09:55
*** eglynn has joined #openstack-dev09:55
openstackgerritA change was merged to openstack/nova: Remove _is_precooked pre-cells Zones hacks  https://review.openstack.org/3337509:57
*** martyntaylor has quit IRC09:58
*** martyntaylor1 has joined #openstack-dev09:58
*** mihgen has quit IRC09:59
*** JordanP has quit IRC10:00
openstackgerritA change was merged to openstack/keystone: Remove a stat warning log  https://review.openstack.org/3231210:02
openstackgerritA change was merged to openstack/keystone: Correct the resolving api logic in stat middleware  https://review.openstack.org/3231710:02
*** martyntaylor1 has quit IRC10:02
*** garyk has joined #openstack-dev10:03
*** shaon_ has joined #openstack-dev10:03
*** pcm__ has joined #openstack-dev10:03
*** pcm__ has quit IRC10:03
*** shaon has quit IRC10:03
*** pcm_ has joined #openstack-dev10:04
*** romcheg1 has joined #openstack-dev10:05
openstackgerritA change was merged to openstack/keystone: Move user fileds type check to identity.Manager  https://review.openstack.org/3318110:05
*** egallen has joined #openstack-dev10:06
*** zb has joined #openstack-dev10:09
*** zaneb has quit IRC10:11
*** mrunge has quit IRC10:12
*** michchap has quit IRC10:12
*** michchap has joined #openstack-dev10:12
*** JordanP has joined #openstack-dev10:14
*** drewlander has joined #openstack-dev10:16
openstackgerritA change was merged to openstack/nova: Add rpc client side version control.  https://review.openstack.org/3272110:17
*** gakott has joined #openstack-dev10:18
*** racedo has joined #openstack-dev10:18
*** JordanP has quit IRC10:20
*** garyk has quit IRC10:20
*** annegentle has quit IRC10:22
*** annegentle has joined #openstack-dev10:23
*** koolhead17 has quit IRC10:24
*** pschaef has quit IRC10:24
*** psedlak_ has joined #openstack-dev10:25
*** mrunge has joined #openstack-dev10:25
*** psedlak has quit IRC10:28
*** psedlak_ has quit IRC10:32
*** egallen has quit IRC10:32
*** egallen has joined #openstack-dev10:32
*** nimi has quit IRC10:32
*** isomorphic has quit IRC10:33
*** martyntaylor has joined #openstack-dev10:34
*** ron-slc_ has quit IRC10:34
*** novas0x2a|laptop has quit IRC10:35
*** ron-slc_ has joined #openstack-dev10:35
*** JordanP has joined #openstack-dev10:36
*** novas0x2a|laptop has joined #openstack-dev10:37
*** isomorphic has joined #openstack-dev10:37
*** koolhead17 has joined #openstack-dev10:38
*** yaguang has quit IRC10:38
*** alexxu has quit IRC10:42
*** jgallard has quit IRC10:45
*** matiu has quit IRC10:48
*** chuckieb has joined #openstack-dev10:53
*** rkukura has quit IRC10:56
*** flask11 has quit IRC10:59
*** boris-42 has quit IRC11:09
*** zb is now known as zaneb11:10
*** arata has left #openstack-dev11:12
*** psedlak_ has joined #openstack-dev11:14
*** ifarkas has quit IRC11:15
*** ssshi has quit IRC11:21
*** noslzzp has joined #openstack-dev11:28
*** noslzzp has joined #openstack-dev11:28
*** noslzzp has quit IRC11:29
*** boris-42 has joined #openstack-dev11:29
*** obondarev has quit IRC11:30
*** enikanorov-w has quit IRC11:30
*** enikanorov-w has joined #openstack-dev11:30
openstackgerritA change was merged to openstack/nova: Remove trivial cases of unused variables (1)  https://review.openstack.org/3273511:31
*** kaushikc has quit IRC11:32
*** kaushikc has joined #openstack-dev11:32
*** gakott has quit IRC11:35
*** dkehn has joined #openstack-dev11:37
*** obondarev has joined #openstack-dev11:38
*** tmclaugh[work] has joined #openstack-dev11:38
*** odyssey4me has quit IRC11:39
*** enikanorov_ has joined #openstack-dev11:39
*** lbragstad has quit IRC11:39
*** enikanorov has quit IRC11:41
*** ociuhandu has joined #openstack-dev11:43
*** ociuhandu has left #openstack-dev11:43
*** gakott has joined #openstack-dev11:43
*** skort has joined #openstack-dev11:44
*** fifieldt_ has quit IRC11:45
*** bashok has quit IRC11:46
*** leizhang has quit IRC11:46
*** markmc_ has joined #openstack-dev11:46
*** rkukura has joined #openstack-dev11:46
skortsdague: ping11:47
*** markmc has quit IRC11:47
sdagueskort: pong11:47
*** gakott has quit IRC11:47
sdagueskort: man, new nick?:)11:48
skortsdague: hi, how are you? saw the bug 1192131. do you by anychance have the quantum service log?11:48
uvirtbotLaunchpad bug 1192131 in nova "giant race in quantum - quantumclient key errors break creation of guests in nova" [High,New] https://launchpad.net/bugs/119213111:48
*** markvoelker has joined #openstack-dev11:48
sdagueskort: it's right there in the link11:48
skortsdague: ok, thanks11:48
*** mrunge has quit IRC11:48
skortok, now i see it11:48
sdaguethere are about 7different key error failures on quantum api/client over the course of the nova run11:49
*** jgallard has joined #openstack-dev11:49
sdaguehonestly, I was kind of confused about the fact that q-svc only seems to contain DEBUG lines as far as the eye can see11:49
sdagueI would have expected some INFO lines on requests11:50
*** thomasem has joined #openstack-dev11:51
*** boris-42 has quit IRC11:52
*** sandywalsh has quit IRC11:52
*** JordanP has quit IRC11:54
*** JordanP has joined #openstack-dev11:54
skortsdague: i think that in devstack we set the debug to be true hence all of the debug traces. i am going to try and reproduce11:56
*** tzumainn has joined #openstack-dev11:57
sdagueskort: so the fact that DEBUG is on shouldn't be an issue11:57
sdaguebut does quantum really not log requests at INFO level when they come in?11:57
*** corXi has joined #openstack-dev11:57
*** rkukura has quit IRC11:58
*** ifarkas has joined #openstack-dev11:58
sdaguebasically I was completely surprised that all q-svc is logging is plugin loading. If debug wasn't on you'd never know it was getting requests at all11:59
skortsdague: i need to check that out.11:59
*** skort is now known as garyk12:00
garyksdague: do i need to run tempest to get a reproduction or can it be done via the exercises?12:00
sdaguegaryk: the only gate breaks I've seen are in tempest12:01
*** rkukura has joined #openstack-dev12:02
sdaguethe devstack exercises are really really basic, they basically don't tell you much about the environment working12:02
garyksdague: ok, thanks.12:03
openstackgerritA change was merged to openstack/nova: Add tests for nova.db.api.security_group_rule_* methods.  https://review.openstack.org/3161312:04
*** martine_ has joined #openstack-dev12:04
*** freedomhui has joined #openstack-dev12:04
*** jclift_ has joined #openstack-dev12:05
*** marun has joined #openstack-dev12:05
*** sandywalsh has joined #openstack-dev12:05
*** rscottcoyle has joined #openstack-dev12:07
*** mdomsch_ has joined #openstack-dev12:09
*** mdomsch_ has quit IRC12:09
*** lbragstad has joined #openstack-dev12:10
*** imsplitbit has left #openstack-dev12:11
*** sride has joined #openstack-dev12:12
*** galstrom_zzz is now known as galstrom12:12
*** radez_g0n3 is now known as radez12:16
*** pabelanger has joined #openstack-dev12:17
*** ladquin has quit IRC12:18
*** markmc_ is now known as markmc12:19
*** kaushikc has quit IRC12:20
*** FunnyLookinHat has joined #openstack-dev12:22
*** kaushikc has joined #openstack-dev12:23
*** xga has joined #openstack-dev12:26
*** READ10 has joined #openstack-dev12:28
*** ifarkas has quit IRC12:30
*** freedomhui has quit IRC12:30
*** dolphm has joined #openstack-dev12:31
*** alunduil has quit IRC12:33
*** jasondotstar has joined #openstack-dev12:38
*** romcheg has joined #openstack-dev12:39
*** shaon has joined #openstack-dev12:40
*** shaon_ has quit IRC12:41
*** ifarkas has joined #openstack-dev12:42
*** dolphm has quit IRC12:42
*** bswartz has quit IRC12:42
*** SunilThaha has joined #openstack-dev12:42
*** romcheg1 has quit IRC12:43
*** jergerber has joined #openstack-dev12:44
*** darjeeling has quit IRC12:45
openstackgerritA change was merged to openstack/python-glanceclient: Remove explicit distribute depend.  https://review.openstack.org/3260712:45
*** mrunge has joined #openstack-dev12:45
*** dolphm has joined #openstack-dev12:46
openstackgerritA change was merged to openstack/python-glanceclient: Fix problem where image data is not read from a pipe.  https://review.openstack.org/3152912:47
*** ndipanov has quit IRC12:48
*** ndipanov has joined #openstack-dev12:49
*** dprince has joined #openstack-dev12:50
*** dvarga has joined #openstack-dev12:51
*** bknudson has joined #openstack-dev12:52
*** kaushikc has quit IRC12:52
*** kaushikc has joined #openstack-dev12:52
dvargamrunge, ping12:52
*** mkollaro has quit IRC12:54
*** rscottcoyle has quit IRC12:54
*** galstrom is now known as galstrom_zzz12:55
*** noslzzp has joined #openstack-dev12:55
*** freedomhui has joined #openstack-dev12:57
*** jasondotstar has quit IRC12:57
*** sballe has joined #openstack-dev12:58
*** dosaboy has quit IRC12:59
*** henrynash has quit IRC12:59
mrungedvarga, pong13:00
mrungedvarga, I currently have about 3 mins, sorry13:00
*** henrynash has joined #openstack-dev13:01
*** jasondotstar has joined #openstack-dev13:01
*** SergeyLukjanov has quit IRC13:01
*** HenryG has quit IRC13:01
*** SergeyLukjanov has joined #openstack-dev13:02
*** rnirmal has joined #openstack-dev13:02
*** boris-42 has joined #openstack-dev13:03
*** bswartz has joined #openstack-dev13:03
*** jasondotstar has quit IRC13:05
dvargamrunge, np.  I'll reply via email ... I can do it all in JS but I had a python library that made life easy.13:07
*** gordc has joined #openstack-dev13:07
*** kaushikc has quit IRC13:07
dvargamrunge, it'd be all async13:08
mrungedvarga, I'd like to integrate that stuff somewhere deeper13:08
mrungeah, good13:08
*** morazi has joined #openstack-dev13:08
*** npasqua has joined #openstack-dev13:08
mrungedvarga: what if you have a totally separarated environment? No outside connection?13:08
dvargamrunge, it would display an error if they clicked the button or they could set up a proxy13:09
dvargain the browser13:09
mrungeyes, something like that13:09
dvargaSo where can I drop my JS to get it picked up?  Just where the other static/horizon/js/* is?13:11
*** dosaboy has joined #openstack-dev13:11
*** mkollaro has joined #openstack-dev13:12
mrungedvarga, no, there is no plugin-architecture for this13:13
mrungedvarga, you need to create a custom "theme" for this13:13
dvargamrunge, k, I'll go off that blog post and see if I can get it working13:14
*** vartom3 has quit IRC13:17
*** FunnyLookinHat has quit IRC13:19
*** jayg|g0n3 is now known as jayg13:19
*** topol has joined #openstack-dev13:19
*** kbringard has joined #openstack-dev13:20
*** kbringard has quit IRC13:21
*** kbringard has joined #openstack-dev13:21
*** alunduil has joined #openstack-dev13:21
*** freedomhui has quit IRC13:21
*** davidkranz has joined #openstack-dev13:22
*** spzala has joined #openstack-dev13:22
*** rkukura has quit IRC13:22
*** Mandell has joined #openstack-dev13:24
openstackgerritA change was merged to openstack/ceilometer: Enable pep8 H403 checks  https://review.openstack.org/3306813:25
*** katylava has joined #openstack-dev13:25
*** stackKid has joined #openstack-dev13:25
*** alexb_ has joined #openstack-dev13:26
*** ayoung has joined #openstack-dev13:26
openstackgerritA change was merged to openstack/keystone: Adds tests for XML version response  https://review.openstack.org/3157213:26
*** michchap has quit IRC13:26
*** dosaboy_ has joined #openstack-dev13:26
*** dosaboy has quit IRC13:28
*** mmagr has quit IRC13:29
*** krtaylor has quit IRC13:31
*** xga has quit IRC13:31
*** sld has quit IRC13:31
*** jecarey has joined #openstack-dev13:32
*** garyk has quit IRC13:36
*** garyk has joined #openstack-dev13:36
*** corXi has quit IRC13:37
*** egallen has quit IRC13:38
*** dosaboy_ has quit IRC13:38
*** freedomhui has joined #openstack-dev13:39
*** dosaboy has joined #openstack-dev13:39
*** ifarkas has quit IRC13:40
*** rharwood has joined #openstack-dev13:41
*** rharwood has quit IRC13:42
*** egallen has joined #openstack-dev13:43
*** sride has quit IRC13:43
anteayamarkmc: I am looking for a location to offer up a file called TESTING in olso. My sense it should be somewhere in here: https://github.com/openstack/oslo-incubator/tree/master/openstack/common but I am not sure exactly where. I would like to seed an opening patch and post the url to the mailing list for additional commentary on whether it should actually exist and if so in what form after the initial patch exists.13:43
*** garyk has quit IRC13:43
*** rharwood has joined #openstack-dev13:43
*** garyk has joined #openstack-dev13:43
openstackgerritA change was merged to openstack/nova: Session cleanup for db.security_group_rule_* methods  https://review.openstack.org/3193213:43
anteayayour assistance finding a location for the initial patch is not an endorsement of its existence13:44
*** neelashah has joined #openstack-dev13:44
markmcanteaya, just putting it in oslo-incubator/TESTING should be fine13:44
*** oubiwann has quit IRC13:44
anteayamarkmc: can do, thanks13:44
*** topol has quit IRC13:44
*** darjeeling has joined #openstack-dev13:45
*** oubiwann has joined #openstack-dev13:45
*** prad has joined #openstack-dev13:46
*** woodspa has joined #openstack-dev13:46
*** SergeyLukjanov has quit IRC13:49
*** garyTh has joined #openstack-dev13:52
*** egallen has quit IRC13:53
*** otherwiseguy has joined #openstack-dev13:53
*** lorin1 has joined #openstack-dev13:53
*** SergeyLukjanov has joined #openstack-dev13:55
*** jasondotstar has joined #openstack-dev13:55
*** darjeeli_ has joined #openstack-dev13:57
*** michchap has joined #openstack-dev13:57
*** toddnni has joined #openstack-dev13:58
*** litong has joined #openstack-dev13:58
*** mtreinish has joined #openstack-dev13:58
*** ondergetekende_ has joined #openstack-dev13:58
*** jimfehlig has joined #openstack-dev13:59
*** SergeyLukjanov has quit IRC13:59
*** ondergetekende_ has quit IRC13:59
*** egallen has joined #openstack-dev14:00
*** darjeeling has quit IRC14:00
*** SergeyLukjanov has joined #openstack-dev14:01
*** FunnyLookinHat has joined #openstack-dev14:02
*** mrodden has joined #openstack-dev14:04
*** nati_ueno has joined #openstack-dev14:04
*** michchap has quit IRC14:06
*** nati_ueno has quit IRC14:06
*** nati_ueno has joined #openstack-dev14:07
*** eharney has joined #openstack-dev14:07
*** eharney has quit IRC14:07
*** eharney has joined #openstack-dev14:07
*** blamar has joined #openstack-dev14:09
*** anfrolov has quit IRC14:09
*** rcleere has joined #openstack-dev14:10
*** eglynn has quit IRC14:10
*** lloydde has quit IRC14:11
*** portante has joined #openstack-dev14:12
*** phschwartz has joined #openstack-dev14:14
*** dhellmann has joined #openstack-dev14:16
*** alexb_ has quit IRC14:16
*** vartom3 has joined #openstack-dev14:16
*** pmathews has joined #openstack-dev14:18
*** pabelanger has quit IRC14:19
*** andrewbogott_afk is now known as andrewbogott14:20
*** lloydde has joined #openstack-dev14:20
*** nati_ueno has quit IRC14:21
*** changbl has joined #openstack-dev14:21
*** navid has left #openstack-dev14:22
*** rkukura has joined #openstack-dev14:22
*** vartom3 has quit IRC14:24
*** mrunge has quit IRC14:24
*** jongleur has quit IRC14:24
*** abhisri has joined #openstack-dev14:25
*** anfrolov has joined #openstack-dev14:27
*** datsun180b has joined #openstack-dev14:29
*** anfrolov has quit IRC14:29
*** xga has joined #openstack-dev14:30
*** andrew_plunk has joined #openstack-dev14:31
*** portante has quit IRC14:31
*** monst has joined #openstack-dev14:31
*** egallen has quit IRC14:31
*** pfreund has joined #openstack-dev14:32
*** galstrom_zzz is now known as galstrom14:32
*** portante has joined #openstack-dev14:32
*** michchap has joined #openstack-dev14:33
*** radez is now known as radez_g0n314:33
*** martyntaylor1 has joined #openstack-dev14:35
*** martyntaylor has quit IRC14:35
*** krtaylor has joined #openstack-dev14:35
*** portante has quit IRC14:36
*** portante has joined #openstack-dev14:38
*** garyk has quit IRC14:38
*** portante has quit IRC14:39
*** radez_g0n3 is now known as radez14:39
*** portante has joined #openstack-dev14:40
*** Mandell has quit IRC14:41
*** timello has quit IRC14:41
*** eglynn has joined #openstack-dev14:41
*** timello has joined #openstack-dev14:42
*** sandywalsh has quit IRC14:42
*** romcheg has left #openstack-dev14:43
*** michchap has quit IRC14:43
*** portante has quit IRC14:44
*** pfreund has quit IRC14:44
*** mlavalle has joined #openstack-dev14:44
*** vsergeyev has joined #openstack-dev14:45
*** portante has joined #openstack-dev14:45
*** koolhead17 has quit IRC14:46
*** maoy has joined #openstack-dev14:46
*** egallen has joined #openstack-dev14:46
*** portante has quit IRC14:47
*** portante has joined #openstack-dev14:48
*** aelkikhia has joined #openstack-dev14:48
*** markmcclain has joined #openstack-dev14:48
*** carl_baldwin has joined #openstack-dev14:49
*** Mandell has joined #openstack-dev14:50
*** jprovazn has quit IRC14:50
*** terryh has joined #openstack-dev14:52
*** jgallard has quit IRC14:52
*** jgallard has joined #openstack-dev14:52
*** alop has joined #openstack-dev14:53
*** datsun180b has quit IRC14:53
*** datsun180b has joined #openstack-dev14:53
*** cp16net is now known as cp16net|away14:54
*** cp16net|away is now known as cp16net14:58
*** sandywalsh has joined #openstack-dev14:58
*** belmoreira has joined #openstack-dev14:59
*** topol has joined #openstack-dev14:59
*** eglynn has quit IRC15:01
*** mrodden has quit IRC15:01
*** jasondotstar has quit IRC15:02
*** Mandell has quit IRC15:02
*** reidrac has quit IRC15:03
*** jasondotstar has joined #openstack-dev15:03
*** jgallard has quit IRC15:03
*** jgallard has joined #openstack-dev15:04
*** gargya has joined #openstack-dev15:04
*** yidclare has joined #openstack-dev15:05
*** jonesld has quit IRC15:05
*** ffio_ has joined #openstack-dev15:06
*** abhishekkr has quit IRC15:06
*** ffio has quit IRC15:06
*** thomasem has quit IRC15:06
*** jasdeepH has joined #openstack-dev15:07
*** kmartin has joined #openstack-dev15:07
*** HenryG has joined #openstack-dev15:07
*** xqueralt is now known as xqueralt-afk15:08
*** garyk has joined #openstack-dev15:08
*** michchap has joined #openstack-dev15:10
*** gargya has quit IRC15:10
*** rkukura has quit IRC15:10
*** mmagr has joined #openstack-dev15:11
*** lloydde has quit IRC15:15
*** nati_ueno has joined #openstack-dev15:15
*** jruzicka has joined #openstack-dev15:16
*** nati_ueno has quit IRC15:17
*** xqueralt-afk is now known as xqueralt15:17
*** arata has joined #openstack-dev15:17
*** reed has joined #openstack-dev15:18
*** iartarisi has quit IRC15:18
*** rkukura has joined #openstack-dev15:18
*** michchap has quit IRC15:20
*** electrichead has joined #openstack-dev15:21
*** sandywalsh has quit IRC15:22
*** abhishekkr has joined #openstack-dev15:23
*** bugsduggan has quit IRC15:23
*** tjones has joined #openstack-dev15:24
*** danpb has joined #openstack-dev15:26
*** jaypipes has quit IRC15:27
*** xqueralt is now known as xqueralt-afk15:30
*** souvik has joined #openstack-dev15:30
*** sride has joined #openstack-dev15:30
*** jaypipes has joined #openstack-dev15:30
*** devoid has joined #openstack-dev15:30
*** darjeeli_ has quit IRC15:30
*** jgallard has quit IRC15:31
*** jgallard has joined #openstack-dev15:32
*** vsergeyev has quit IRC15:32
*** zaitcev has joined #openstack-dev15:33
*** abhishekkr has quit IRC15:33
*** derekh has quit IRC15:34
*** jonesld has joined #openstack-dev15:35
*** sandywalsh has joined #openstack-dev15:36
*** the has joined #openstack-dev15:37
*** xqueralt-afk is now known as xqueralt15:37
*** the has quit IRC15:37
*** terriyu has joined #openstack-dev15:37
*** TheDodd has joined #openstack-dev15:38
*** bugsduggan has joined #openstack-dev15:38
*** ilyashakhat has joined #openstack-dev15:39
*** souvik has quit IRC15:40
*** souvik has joined #openstack-dev15:40
*** portante has left #openstack-dev15:41
*** dolphm has quit IRC15:41
*** boris-42 has quit IRC15:42
*** rscottcoyle has joined #openstack-dev15:42
*** sdake has quit IRC15:45
*** sdake has joined #openstack-dev15:46
*** sdake has joined #openstack-dev15:46
*** michchap has joined #openstack-dev15:47
*** terryh has quit IRC15:48
openstackgerritA change was merged to openstack/keystone: Imported Translations from Transifex  https://review.openstack.org/3331415:49
*** abhishekkr has joined #openstack-dev15:49
*** ndipanov has quit IRC15:49
*** ndipanov has joined #openstack-dev15:50
*** _0x44 has quit IRC15:50
*** kirankv has joined #openstack-dev15:51
*** mrodden has joined #openstack-dev15:55
*** markmcclain1 has joined #openstack-dev15:55
*** markmcclain has quit IRC15:55
*** terryh has joined #openstack-dev15:56
*** nati_ueno has joined #openstack-dev15:57
*** _0x44 has joined #openstack-dev15:57
*** matiu has joined #openstack-dev15:57
*** matiu has joined #openstack-dev15:57
*** schwicht has joined #openstack-dev15:57
*** michchap has quit IRC15:58
*** kashyap is now known as kashyap_dinner16:00
*** electrichead has quit IRC16:00
*** terryh has quit IRC16:01
*** nati_ueno has quit IRC16:01
*** jtomasek has quit IRC16:02
*** npasqua has quit IRC16:02
*** electrichead has joined #openstack-dev16:02
*** ladquin has joined #openstack-dev16:04
*** AlanClark has joined #openstack-dev16:05
*** seanrob has joined #openstack-dev16:06
*** sleepsonthefloor has joined #openstack-dev16:08
*** belmoreira has quit IRC16:08
*** seanrob has quit IRC16:09
*** seanrob has joined #openstack-dev16:09
*** mdomsch has quit IRC16:10
*** ek6 has joined #openstack-dev16:10
*** mmagr has quit IRC16:11
*** rcleere has quit IRC16:11
*** hemna has joined #openstack-dev16:14
*** xga has quit IRC16:14
*** martyntaylor1 has quit IRC16:15
*** AlanClark has quit IRC16:16
*** ek6 has left #openstack-dev16:18
*** pmathews has quit IRC16:18
*** pmathews1 has joined #openstack-dev16:18
*** Farooque has joined #openstack-dev16:18
*** lloydde has joined #openstack-dev16:19
*** Farooque has quit IRC16:20
*** markwash has joined #openstack-dev16:21
*** devvesa has quit IRC16:21
*** jeblair has quit IRC16:21
*** jgallard has quit IRC16:21
*** rcleere has joined #openstack-dev16:22
*** xqueralt is now known as xqueralt-afk16:22
*** imsplitbit has joined #openstack-dev16:23
*** arata has left #openstack-dev16:23
*** imsplitbit has left #openstack-dev16:24
*** michchap has joined #openstack-dev16:25
*** jtomasek has joined #openstack-dev16:25
*** jongleur has joined #openstack-dev16:27
*** souvik has quit IRC16:27
*** JordanP has quit IRC16:28
*** SergeyLukjanov has quit IRC16:29
*** comay has joined #openstack-dev16:29
*** markmc has quit IRC16:30
*** jtomasek has quit IRC16:31
*** cococafe has joined #openstack-dev16:31
*** bknudson has quit IRC16:32
*** neelashah has quit IRC16:32
*** yidclare has quit IRC16:33
*** gyee has joined #openstack-dev16:34
*** lucasagomes has quit IRC16:35
*** riskable has joined #openstack-dev16:35
*** michchap has quit IRC16:36
*** bdpayne has joined #openstack-dev16:36
*** freedomhui has quit IRC16:41
*** redbeard2 has quit IRC16:45
*** anniec has joined #openstack-dev16:46
*** monst has quit IRC16:46
*** SergeyLukjanov has joined #openstack-dev16:48
*** souvik has joined #openstack-dev16:49
*** pcm_ has quit IRC16:51
*** ndipanov is now known as ndipanov_gone16:52
*** seanrob has quit IRC16:53
*** seanrob has joined #openstack-dev16:53
*** kashyap_dinner is now known as kashyap16:54
*** alop_ has joined #openstack-dev16:54
*** alop has quit IRC16:54
*** alop_ is now known as alop16:54
*** freedomhui has joined #openstack-dev16:55
*** wenjianhn has quit IRC16:55
*** terry7 has joined #openstack-dev16:56
*** souvik has quit IRC16:57
*** neelashah has joined #openstack-dev16:58
*** xqueralt-afk is now known as xqueralt16:58
*** Alexei_987 has left #openstack-dev16:58
*** stevemar has joined #openstack-dev16:58
*** krtaylor has quit IRC16:59
*** abhishekkr has quit IRC17:00
*** abhisri has quit IRC17:01
*** npasqua has joined #openstack-dev17:01
*** pcm_ has joined #openstack-dev17:02
*** nati_ueno has joined #openstack-dev17:02
*** nunosantos has joined #openstack-dev17:02
*** michchap has joined #openstack-dev17:02
*** abhisri has joined #openstack-dev17:03
*** dolphm_ has joined #openstack-dev17:03
*** dhellmann has quit IRC17:04
*** dspano has joined #openstack-dev17:05
*** rscottcoyle has quit IRC17:06
*** amerine has joined #openstack-dev17:06
*** eglynn has joined #openstack-dev17:09
*** yidclare has joined #openstack-dev17:10
*** rscottcoyle has joined #openstack-dev17:11
*** nati_ueno has quit IRC17:11
*** nati_ueno has joined #openstack-dev17:12
*** michchap has quit IRC17:14
*** jeblair has joined #openstack-dev17:16
openstackgerritA change was merged to openstack/nova: Raise max header size to accommodate large tokens.  https://review.openstack.org/3336217:16
*** mlavalle has quit IRC17:17
openstackgerritA change was merged to openstack/nova: Remove unused cert db method.  https://review.openstack.org/3314917:17
*** mdomsch has joined #openstack-dev17:18
*** Farooque has joined #openstack-dev17:19
*** krtaylor has joined #openstack-dev17:19
*** epim has joined #openstack-dev17:19
*** monst has joined #openstack-dev17:20
*** bknudson has joined #openstack-dev17:20
*** markmcclain1 has quit IRC17:21
*** TheDodd has quit IRC17:22
*** andrew_plunk has left #openstack-dev17:23
*** zoresvit has quit IRC17:24
*** epim has quit IRC17:24
*** Mandell has joined #openstack-dev17:24
*** HenryG has quit IRC17:26
*** pcm_ has quit IRC17:26
*** romcheg has joined #openstack-dev17:26
*** cp16net is now known as cp16net|away17:27
*** tzumainn has quit IRC17:27
*** pcm__ has joined #openstack-dev17:27
*** epim has joined #openstack-dev17:27
*** eglynn has quit IRC17:27
*** egallen has quit IRC17:28
*** egallen has joined #openstack-dev17:30
*** romcheg has quit IRC17:31
*** catohornet has joined #openstack-dev17:31
*** danwent has joined #openstack-dev17:31
*** freedomhui has quit IRC17:32
*** catohornet has quit IRC17:32
*** egallen has quit IRC17:32
*** redbeard2 has joined #openstack-dev17:33
*** catohornet has joined #openstack-dev17:34
*** egallen has joined #openstack-dev17:34
*** bashok has joined #openstack-dev17:34
*** jcoufal has quit IRC17:35
*** cp16net|away is now known as cp16net17:36
*** Ryan_Lane has joined #openstack-dev17:38
*** michchap has joined #openstack-dev17:40
*** anfrolov has joined #openstack-dev17:43
vishydanpb: is there any way to programattically determine through python which file libvirt is using for a managed save?17:46
*** abhisri has quit IRC17:49
*** tzumainn has joined #openstack-dev17:50
*** michchap has quit IRC17:52
openstackgerritA change was merged to openstack/trove: Fixed restore to wait for full mysqld shutdown before attempting restart  https://review.openstack.org/3309217:53
*** eharney has quit IRC17:53
*** mlavalle has joined #openstack-dev17:54
*** eharney has joined #openstack-dev17:55
*** sarob_ has joined #openstack-dev17:56
*** boris-42 has joined #openstack-dev17:58
*** epim has quit IRC17:58
*** boris-42 has quit IRC17:58
*** seanrob has quit IRC17:59
*** atiwari has joined #openstack-dev18:00
adalbasAfter upgrading openstack from grizzly to havana (master) using grenade, glance api is returning (show) deleted images. Someone in the glance team can help me debugging it?18:00
*** danwent has quit IRC18:00
adalbasmarkwash, ^18:00
*** sarob_ has quit IRC18:01
markwashadalbas: interesting, so deleted images are showing up in the list?18:01
*** seanrob has joined #openstack-dev18:01
adalbasyes18:01
adalbasmarkwash, i opened this bug here: https://bugs.launchpad.net/tempest/+bug/118963118:02
uvirtbotLaunchpad bug 1189631 in tempest "test_create_delete_image times out when deleting server" [Undecided,New]18:02
markwashadalbas: are you using the glanceclient cli? or curl? what type of user (admin or regular?)18:02
*** bknudson has quit IRC18:02
adalbasnova show, glance show, the api are showing the same results, markwash18:02
*** bknudson has joined #openstack-dev18:02
*** danwent has joined #openstack-dev18:02
markwashadalbas: sure, makes sense, just trying to narrow things down so I can try to reproduce the issue on my own18:03
adalbasmarkwash, is there a configuration  or policy that should be considered for filtering that?18:03
markwashadalbas: no, its probably just a bug18:03
adalbasmarkwash, installing devstack directly does not cause that, only using grenade18:03
*** egallen has quit IRC18:04
markwashfascinating18:04
adalbasgrenade is also running on the gate, so you can see it at the end of the log here: https://jenkins.openstack.org/job/gate-grenade-devstack-vm/10882/consoleFull18:04
*** epim has joined #openstack-dev18:04
markwashadalbas can you check out one of the deleted images that is showing up in the database?18:04
*** bknudson1 has joined #openstack-dev18:04
*** novas0x2a|laptop has quit IRC18:04
*** abhisri has joined #openstack-dev18:04
adalbasmarkwash, what you mean by check out?18:05
markwashadalbas: something like mysql glance -e "select * from images where uuid = '<uuid of deleted image>'"18:06
adalbasmarkwash, sure. give me a minute18:06
*** monst has quit IRC18:07
*** bknudson has quit IRC18:07
*** reed has quit IRC18:07
adalbasmarkwash, another interesting thing is that getting the image by the image name is behaving as expected18:07
markwashadalbas: it might make sense to file this as a bug in launchpad against both glance and grenade18:09
adalbasmarkwash18:10
adalbassure18:10
markwashadalbas: I work relativley closely with dtroyer_zz who works very closely with grenade18:10
*** anfrolov has quit IRC18:10
*** rscottcoyle_ has joined #openstack-dev18:11
*** jprovazn has joined #openstack-dev18:11
adalbasgreat, i had some discussion about grenade with him. I'm trying to get it in the gate as a voting job.18:11
markwashadalbas, I have to run out here for a while, but I"ll be back online later today18:12
openstackgerritA change was merged to openstack/python-novaclient: Support force update quota  https://review.openstack.org/3315018:12
adalbasmarkwash, ok. i ll add the info you asked to the bug.18:12
markwashadalbas: if you get the mysql output, could you put it in the comments for the bug you file?18:13
markwashadalbas: you read my mind :-)18:13
adalbassure!18:13
adalbastks!18:13
markwashadalbas: also go ahead and ping me again if it seems like I forgot18:13
adalbasok. i added you to be notified on the bug18:14
*** edmund has joined #openstack-dev18:15
*** timello has quit IRC18:17
*** michchap has joined #openstack-dev18:18
*** timello has joined #openstack-dev18:18
*** psedlak_ has quit IRC18:19
*** markwash has quit IRC18:19
*** markwash has joined #openstack-dev18:20
*** markwash has quit IRC18:20
*** lloydde has quit IRC18:21
*** clayg has quit IRC18:22
*** aeperezt has quit IRC18:22
*** yolanda has quit IRC18:22
*** AnilV4 has quit IRC18:22
*** dragondm has quit IRC18:22
*** wkelly has quit IRC18:22
*** maurosr has quit IRC18:22
*** mirrorbox has quit IRC18:22
*** harlowja has quit IRC18:22
*** rainya has quit IRC18:22
*** clayg has joined #openstack-dev18:22
*** maurosr has joined #openstack-dev18:22
*** wkelly has joined #openstack-dev18:22
*** aeperezt has joined #openstack-dev18:22
*** mirrorbox has joined #openstack-dev18:22
*** yolanda has joined #openstack-dev18:22
*** harlowja has joined #openstack-dev18:22
*** AnilV4 has joined #openstack-dev18:23
*** abhishekkr has joined #openstack-dev18:23
*** topol_ has joined #openstack-dev18:23
*** Mandell has quit IRC18:23
*** topol has quit IRC18:25
*** topol_ is now known as topol18:25
*** dragondm has joined #openstack-dev18:25
*** shaon has quit IRC18:25
davidkranzrussellb: Can you mark https://bugs.launchpad.net/nova/+bug/1192131 as critical?18:27
uvirtbotLaunchpad bug 1192131 in nova "giant race in quantum - quantumclient key errors break creation of guests in nova" [High,New]18:27
*** mkollaro has quit IRC18:28
*** eglynn has joined #openstack-dev18:28
*** bashok has quit IRC18:29
*** michchap has quit IRC18:30
*** FunnyLookinHat has quit IRC18:33
*** FunnyLookinHat has joined #openstack-dev18:33
*** ciocari has joined #openstack-dev18:36
*** cococafe has quit IRC18:37
*** pixelbeat has quit IRC18:37
*** souvik has joined #openstack-dev18:40
*** markmcclain has joined #openstack-dev18:40
*** danwent_ has joined #openstack-dev18:41
danpbvishy: I don't believe we expose any information about the "managed save" filenames in the API - it was decided to be an opaque impl detail18:41
danpbvishy: what use case do you have which requires knowledge of the filename ?18:41
*** kirankv has quit IRC18:42
*** danwent has quit IRC18:42
*** danwent_ is now known as danwent18:42
*** monst has joined #openstack-dev18:42
*** cococafe has joined #openstack-dev18:44
*** jvrbanac has joined #openstack-dev18:45
*** egallen has joined #openstack-dev18:47
*** Mandell has joined #openstack-dev18:47
*** egallen has quit IRC18:49
*** sthaha has quit IRC18:50
*** SunilThaha has quit IRC18:50
*** rscottcoyle_ has quit IRC18:56
*** michchap has joined #openstack-dev18:56
*** salv-orlando has left #openstack-dev18:57
*** rscottcoyle_ has joined #openstack-dev18:58
*** jjmb1 has quit IRC18:58
vishydanpb: well it is a little hacky, but I'm creating live snapshots18:58
*** rscottcoyle has quit IRC18:58
vishydanpb: as in images in glance that include memory state18:58
vishydanpb: the snapshot code currently does a managed save of the instance, so I was hoping to grab the memory state from there instead of doing an explicit virDomainSave18:59
danpbhmm, sounds like maybe the more advanced libvirt domain snapshot APIs could be better suited to this19:00
* danpb has to head out to the bank ... back in 30-40 mins19:00
*** abhisri has quit IRC19:01
*** henrynash has quit IRC19:01
*** atiwari has quit IRC19:01
ayoungmordred, I'll take a look, but My devstack is already messed up.  What are you seeing?19:01
anteayahere19:01
mordredayoung: I'm going to hand you off to anteaya as she was the one hitting it19:01
anteayaayoung: here, how should I approach this?19:01
anteayathanks mordred19:02
dolphm_anteaya: what's the issue?19:02
anteayain a default devstack installation19:02
anteayawhen I cd into /opt/stack/keystone or /opt/stack/python-keystoneclient19:02
anteayaand run `tox`19:02
anteayaI get multiple test errors19:02
ayounganteaya, can you paste?19:03
anteayasure I will need to run the tests again to get you the output19:03
anteayaso it will take a bit19:03
*** gyee has quit IRC19:03
anteayaumm, hang on, let me see if I can dig up an old paste, from a week ago19:03
ayounganteaya, either ping me in IRC or send an email with them and I will take a look.  Include the OS version and localrc and whatever else you can think of19:03
*** afazekas has quit IRC19:04
anteayaayoung: I can do that, thank you, what email would you like me to use?19:04
ayoungayoung@redhat.com19:05
anteayaayoung: here are some: https://gist.github.com/anteaya/4c149bcc4672418cf4f7 and https://gist.github.com/anteaya/d3011f369431f6af446c19:05
anteayathese are from 2 weeks ago19:05
anteayaI can run them again and get you fresh results19:05
ayounganteaya, looking19:05
dolphm_anteaya: all that caching code is about to change, as well19:06
ayoungERROR:   py26: InterpreterNotFound: python2.619:06
ayounghttps://gist.github.com/anteaya/4c149bcc4672418cf4f7#file-10-failures-in-keystoneclient-tests-L10919:06
ayoungI wonder if that was just hte P2.6 code failing?19:06
ayounganteaya, try it again when you get a chance, both without and with p2619:07
anteayawow, okay I guess I wasn't used to p26 failing so verbously19:07
anteayaso client appears to be my fault19:07
anteayahow about: https://gist.github.com/anteaya/d3011f369431f6af446c19:07
anteayahttps://gist.github.com/anteaya/d3011f369431f6af446c#file-so-many-errors-L1340-L139019:08
*** michchap has quit IRC19:08
dolphm_anteaya: impossible to say without knowing what the ERROR's are19:08
anteayaayoung: I can run client again both with and without p2619:08
ayounganteaya, OK,  when you have time.  Let me know.  I'll take a look19:09
anteayadolphm_: okay I can get some better output with both p26 and p27 and include the localrc and send it to you19:09
anteayathanks yes, I will try to get you something by tomorrow19:09
anteayaif the fault is mine I would like to correct that19:09
anteayaif there is a bug, I would like to help you isolate it19:09
anteayathanks guys19:09
dolphm_mordred: side note- on the "unittests on devstack hosts" thread, you didn't actually explain what the issue is, if any (and it's only implied that tests *don't* work today)19:10
mordreddolphm_: that's because I suck19:11
anteayadolphm_: that might be due to me giving him erroneious information19:11
anteayaso that is my fault19:11
anteayalet me dig down again and get better info19:11
dolphm_anteaya: ah, wasn't sure if your issue was related19:11
anteayayes I think I am the source of that comment, am I not mordred?19:11
*** melwitt has joined #openstack-dev19:12
*** sarob_ has joined #openstack-dev19:12
dolphm_anteaya: mordred: i had assumed this was somehow related.. ya'll have an opinion on it? https://bugs.launchpad.net/keystone/+bug/119199919:12
uvirtbotLaunchpad bug 1191999 in keystone "unittests should not require internet access" [Undecided,New]19:12
bknudson1dolphm_: what about checking in a tar file with the old clients? and use tempest for master19:13
mordreddolphm_: no, I think, while I think that is a true bug, I do not believe the two are related19:13
dolphm_i think the testing approach is more valuable to have than to not, but it doesn't need to be part of keystone19:13
*** abhisri has joined #openstack-dev19:13
mordreddolphm_: I'd love to chat with you (not necessarily this instant) about ways we can achieve what you are testing there without git clones in your unittest suite19:14
*** rnirmal has quit IRC19:14
mordredbecause I agree - SUPER valuable thing to test19:14
dolphm_bknudson1: i like the tar idea, but i think the tests should stay together (all in keystone, or all in tempest)19:14
anteayadolphm_: yes bug 1191999 also came out of last night's -infra discussion also motivated by info from me, so yes it is related19:16
uvirtbotLaunchpad bug 1191999 in keystone "unittests should not require internet access" [Undecided,New] https://launchpad.net/bugs/119199919:16
*** seanrob has quit IRC19:16
anteayaglad we are talking about it, and if I am working from bad info, I apologize19:16
anteayabut on the upside I am learning more about how keystone runs tests, which was my overall goal19:16
bknudson1anteaya: how do I run devstack without venv to recreate?  I've already got devstack19:17
anteayacd /opt/stack/keystone && tox19:17
bknudson1what's the diff between that and ./run_tests.sh?19:18
anteayaexactly19:18
anteayaI too want to know19:18
anteayamy motivation for wanting to be able to run all projects with tox is to allow for an easy introduction to new contributors19:18
anteayabknudson1: which motivated this file: https://review.openstack.org/#/c/33456/19:19
bknudson1I thought ./run_tests.sh was easy when I was a new contributor19:19
*** chuckieb has quit IRC19:19
anteayanew projects don't have a ./run_tests.sh file19:19
anteayaironic doesn't19:19
anteayaceilometer doesn't19:19
anteayamy understanding is the direction is to use tox19:20
mordredthe gate uses tox19:20
*** sushils has quit IRC19:20
anteayaas the general test runner runner19:20
anteayaah okay, and the gate uses tox (didn't know that)19:20
*** dhellmann has joined #openstack-dev19:20
mordredbut in general, it should be mostly the same as run_tests.sh - it should create a venv, populate it with requirements and then run tests19:20
mordredyes, the gate has never used the run_tests.sh scripts19:20
anteayaso the desire towards tox is to replicate the same behaviour locally as experienced in the gate it sounds like19:21
mordredsure. but for _this_ issue, I think tox is a red herring19:22
*** vipul is now known as vipul|away19:22
mordredI think the underlying problem is "can I run keystone and keystoneclient unittests out of the git repo that's put there by devstack"19:22
mordredin a venv19:22
mordredwhether run_tests.sh or tox creates the venv shoudl not matter if there is an issue19:23
mordrednow - if one of them works but the other does not19:23
mordredwe should sort that out19:23
dolphm_if the answer is no, i want to know why not19:23
mordredright19:23
bknudson1does "cd /opt/stack/keystone && tox " run without a venv?19:23
*** waa has quit IRC19:23
dolphm_bknudson1: no19:23
dolphm_bknudson1: it creates one19:24
anteayabknudson1: I think tox creates a venv for each interpreter19:24
dolphm_or two19:24
dolphm_so, three soon! (py3)19:24
*** vipul|away is now known as vipul19:24
mordred:)19:24
bknudson1so that's not the "with or without venv" problem... there's another problem?19:24
*** ajyounge has joined #openstack-dev19:24
*** jruzicka has quit IRC19:24
mordredunclear. although honest, I think that "cd /opt/stack/keystone && nosetests" should also work - since we've installed all of the depends in devstack anyway19:25
mordredbut I think that's a whole other level of things19:25
*** aeperezt has quit IRC19:25
clarkbmordred: do we install the test requirements? I am not sure that we do19:26
mordredno. we do not19:26
bknudson1wouldn't my venv be pretty much empty if everything was already installed?19:26
*** aeperezt has joined #openstack-dev19:26
mordredbknudson1: no, because we configure them with no-site-packages19:26
*** garyk has quit IRC19:26
mordredbecause for the normal unittest case, we don't want pollution19:27
mordredexcept with nova, where libvirt screws it all up for us19:27
*** rscottcoyle_ has quit IRC19:27
*** sarob_ has quit IRC19:29
*** mlavalle has quit IRC19:29
*** seanrob has joined #openstack-dev19:29
*** seanrob has quit IRC19:30
*** seanrob has joined #openstack-dev19:30
*** seanrob has quit IRC19:31
*** sarob has joined #openstack-dev19:31
*** TheDodd has joined #openstack-dev19:33
*** vipul is now known as vipul|away19:33
*** vipul|away is now known as vipul19:33
*** mlavalle has joined #openstack-dev19:34
*** novas0x2a|laptop has joined #openstack-dev19:34
*** michchap has joined #openstack-dev19:34
*** monst has quit IRC19:36
anteayaI have to be afk for a bit, working on getting some fresh keystone testing data, thanks19:37
dolphm_anteaya: cool19:37
anteaya:D19:38
*** markmc has joined #openstack-dev19:38
*** tjones has quit IRC19:39
*** epim_ has joined #openstack-dev19:43
*** SergeyLukjanov has quit IRC19:44
*** epim has quit IRC19:44
*** epim_ is now known as epim19:44
*** dprince has quit IRC19:44
*** romcheg has joined #openstack-dev19:44
*** michchap has quit IRC19:45
*** monst has joined #openstack-dev19:46
*** mihgen has joined #openstack-dev19:47
*** spzala has quit IRC19:47
*** vipul is now known as vipul|away19:48
*** anniec has quit IRC19:48
*** SergeyLukjanov has joined #openstack-dev19:49
*** networkstatic has joined #openstack-dev19:52
*** drewlander has quit IRC19:56
*** dhellmann has quit IRC19:57
*** gabrielhurley has joined #openstack-dev19:58
dolphm_anyone else getting test failures today on keystone? (bknudson1, ayoung?) http://paste.openstack.org/show/38887/20:02
*** reed has joined #openstack-dev20:04
*** radez is now known as radez_g0n320:04
*** pcm__ has quit IRC20:05
*** anniec has joined #openstack-dev20:05
openstackgerritA change was merged to openstack-dev/devstack: exercise euca.sh check the volume just created  https://review.openstack.org/3318020:05
openstackgerritA change was merged to openstack-dev/devstack: F19 rpm dependencies  https://review.openstack.org/3227920:05
*** eharney has quit IRC20:05
*** markwash has joined #openstack-dev20:06
*** garyTh has quit IRC20:06
*** krtaylor has quit IRC20:06
*** themadcanudist has joined #openstack-dev20:06
*** themadcanudist has left #openstack-dev20:06
openstackgerritA change was merged to openstack-dev/devstack: Fix the OVS version check to work with upstream master versions of OVS.  https://review.openstack.org/3295420:07
openstackgerritA change was merged to openstack/nova: Remove unused arg from make_class_properties.getter method  https://review.openstack.org/3295320:08
*** garyTh has joined #openstack-dev20:08
*** pcm__ has joined #openstack-dev20:09
*** otherwiseguy has quit IRC20:09
*** pcm__ has quit IRC20:09
*** pcm_ has joined #openstack-dev20:10
*** arata has joined #openstack-dev20:10
*** topol has quit IRC20:11
ayoungdolphm_, have to check out once I get home...will look later on tonight20:11
*** dhellmann has joined #openstack-dev20:11
*** dhellmann has quit IRC20:11
*** rkukura has quit IRC20:11
bknudson1dolphm_: I updated and will try it.20:12
dolphm_ayoung: thanks, i'm getting failures in tox and run_tests.sh ... stable/grizzly is running fine20:12
*** michchap has joined #openstack-dev20:12
dolphm_bknudson1: i just updated deps as well, but gates appear to be passing20:12
*** jergerber has quit IRC20:13
*** yolanda has quit IRC20:13
*** ayoung has quit IRC20:14
*** dcasier_ has joined #openstack-dev20:14
*** cococafe has quit IRC20:15
*** davidkranz has quit IRC20:16
*** tjones has joined #openstack-dev20:16
*** eharney has joined #openstack-dev20:18
*** eharney has quit IRC20:18
*** eharney has joined #openstack-dev20:18
*** vipul|away is now known as vipul20:19
*** jprovazn has quit IRC20:19
bknudson1dolphm_: tests passed for me... except my migration repo was messed up so got some errors from that.20:19
*** mkollaro has joined #openstack-dev20:19
*** imsplitbit has joined #openstack-dev20:20
*** imsplitbit has left #openstack-dev20:20
dolphm_bknudson1: hmm, i run "find . -name "*.pyc" -exec rm -rf {} \;" everytime i switch branches so migrations *shouldn't* be an issue for me20:20
dolphm_bknudson1: i'll try something more aggressive20:21
*** michchap has quit IRC20:22
*** jasondotstar has quit IRC20:22
*** arata has left #openstack-dev20:23
*** cococafe has joined #openstack-dev20:24
*** jasondotstar has joined #openstack-dev20:28
*** cococafe has quit IRC20:28
*** athomas has quit IRC20:31
dolphm_bknudson1: running tox again after git clean -xdf20:31
*** spzala has joined #openstack-dev20:31
bknudson1dolphm_: you ever get this from the keystoneclient tests?20:33
bknudson1error: gnutls_handshake() failed: A TLS packet with unexpected length was received. while accessing https://review.openstack.org/p/openstack/python-keystoneclient.git/info/refs20:33
dolphm_bknudson1: never20:33
*** datsun180b has quit IRC20:33
*** jvrbanac has quit IRC20:38
*** mihgen has quit IRC20:39
*** mihgen has joined #openstack-dev20:39
*** sdake has quit IRC20:39
dolphm_bknudson1: yay, all passed this time20:39
dolphm_bknudson1: thanks for the sanity check20:39
*** mihgen has quit IRC20:39
bknudson1dolphm_: ok. I think there was one time where something was checked into python-keystoneclient that wound up breaking keystone tests...20:40
bknudson1so I thought maybe that happened again.20:41
dolphm_bknudson1: that happens on occasion :(20:41
*** tmclaugh[work] has quit IRC20:41
*** nachi_ has joined #openstack-dev20:42
*** nachi__ has joined #openstack-dev20:42
*** nachi__ has quit IRC20:42
bknudson1dolphm_: another reason why client tests in tempest would work better.20:42
*** sdake has joined #openstack-dev20:43
*** sdake has joined #openstack-dev20:43
dolphm_bknudson1: ++20:43
*** stevemar has quit IRC20:45
*** otherwiseguy has joined #openstack-dev20:46
*** sballe has quit IRC20:47
*** diogogmt has joined #openstack-dev20:47
*** ffio_ has quit IRC20:47
*** sballe has joined #openstack-dev20:47
*** michchap has joined #openstack-dev20:49
*** vipul is now known as vipul|away20:49
*** sarob has quit IRC20:50
*** tzumainn has quit IRC20:50
*** jongleur has quit IRC20:50
*** Ryan_Lane has quit IRC20:51
*** vartom3 has joined #openstack-dev20:54
*** vipul|away is now known as vipul20:55
*** markwash has quit IRC20:58
*** HenryG has joined #openstack-dev20:58
openstackgerritA change was merged to openstack/trove: Adding support for encrypted backups.  https://review.openstack.org/3099120:58
*** michchap has quit IRC20:59
*** msmedved has quit IRC21:00
*** msmedved has joined #openstack-dev21:01
*** sdake has quit IRC21:01
*** gary_th has joined #openstack-dev21:03
*** abhisri has quit IRC21:03
*** garyTh has quit IRC21:03
*** npasqua has quit IRC21:04
*** kmartin has quit IRC21:06
*** zaneb has quit IRC21:09
*** zaneb has joined #openstack-dev21:10
*** markmcclain has quit IRC21:16
*** krtaylor has joined #openstack-dev21:17
*** morazi has quit IRC21:18
*** bswartz has quit IRC21:19
*** markvoelker has quit IRC21:19
*** aeperezt has quit IRC21:20
*** dvarga has quit IRC21:20
*** jayg is now known as jayg|g0n321:21
*** markwash has joined #openstack-dev21:21
*** jasondotstar has quit IRC21:23
*** ayoung has joined #openstack-dev21:24
*** pcm_ has quit IRC21:25
*** markmc has quit IRC21:25
*** michchap has joined #openstack-dev21:26
*** edmund has quit IRC21:26
*** xqueralt is now known as xqueralt-afk21:27
*** lbragstad has quit IRC21:28
*** epim has quit IRC21:28
*** torandu has quit IRC21:29
*** lloydde has joined #openstack-dev21:30
*** romcheg has quit IRC21:30
*** rharwood has quit IRC21:33
*** rharwood has joined #openstack-dev21:33
*** lychinus has joined #openstack-dev21:34
*** numero8 has joined #openstack-dev21:35
*** lorin1 has quit IRC21:35
*** rharwood has quit IRC21:36
*** michchap has quit IRC21:37
*** anfrolov has joined #openstack-dev21:38
*** lukego has quit IRC21:38
*** epim has joined #openstack-dev21:39
*** edmund has joined #openstack-dev21:40
*** Ryan_Lane has joined #openstack-dev21:41
*** numero8 has quit IRC21:42
*** pixelbeat has joined #openstack-dev21:44
*** ociuhandu_ has joined #openstack-dev21:45
*** jcoufal has joined #openstack-dev21:46
*** jecarey has quit IRC21:46
*** vartom3 has quit IRC21:46
*** anfrolov has quit IRC21:47
*** ociuhandu_ is now known as ociuhandu21:47
*** alunduil has quit IRC21:47
*** spzala has quit IRC21:47
*** romcheg has joined #openstack-dev21:49
*** anniec has quit IRC21:52
*** otherwiseguy has quit IRC21:57
*** dkehn has quit IRC21:57
*** fifieldt has joined #openstack-dev21:58
*** davidkranz has joined #openstack-dev21:59
*** nunosantos has quit IRC22:00
*** sdake has joined #openstack-dev22:01
*** sdake has joined #openstack-dev22:01
*** krtaylor has quit IRC22:01
*** prad has quit IRC22:01
*** nunosantos has joined #openstack-dev22:02
*** sushils has joined #openstack-dev22:02
*** torandu has joined #openstack-dev22:03
*** davidkranz has quit IRC22:03
*** michchap has joined #openstack-dev22:04
*** gyee has joined #openstack-dev22:05
openstackgerritA change was merged to openstack/nova: Fix flavor extra_specs filter doesn't work for number  https://review.openstack.org/3147422:05
openstackgerritA change was merged to openstack/nova: Revert "Delegate authentication to quantumclient"  https://review.openstack.org/3349922:05
openstackgerritA change was merged to openstack/nova: Updates nova.conf.sample  https://review.openstack.org/3290722:05
openstackgerritA change was merged to openstack/nova: Improved tests for instance_actions_*  https://review.openstack.org/3238822:06
openstackgerritA change was merged to openstack-dev/devstack: Change path to loadbalancer plugin  https://review.openstack.org/3296422:06
*** kbringard has quit IRC22:06
*** anniec has joined #openstack-dev22:06
*** jaybuff has joined #openstack-dev22:07
*** edmund has quit IRC22:07
*** Ryan_Lane has quit IRC22:08
*** dcasier_ has quit IRC22:10
*** noslzzp has quit IRC22:11
*** kmartin has joined #openstack-dev22:11
*** timello has quit IRC22:12
*** timello has joined #openstack-dev22:13
*** nunosantos has quit IRC22:13
*** jhesketh_ has joined #openstack-dev22:15
*** michchap has quit IRC22:15
*** nunosantos has joined #openstack-dev22:16
*** sdake has quit IRC22:17
*** woodspa has quit IRC22:17
*** SergeyLukjanov has quit IRC22:18
*** eglynn has quit IRC22:20
openstackgerritA change was merged to openstack/swift: Treat directory objects as not found  https://review.openstack.org/2884122:21
*** kbrierly has quit IRC22:21
*** kbrierly has joined #openstack-dev22:22
*** darjeeling has joined #openstack-dev22:22
*** neelashah has quit IRC22:22
*** sride has quit IRC22:25
*** markwash has quit IRC22:28
*** maoy has quit IRC22:28
*** HenryG has quit IRC22:28
*** sride has joined #openstack-dev22:29
*** dspano has quit IRC22:30
*** romcheg has quit IRC22:31
*** jayjay has joined #openstack-dev22:31
*** vipul is now known as vipul|away22:32
*** rcleere has quit IRC22:32
*** changbl has quit IRC22:33
*** anniec has quit IRC22:33
jayjaywhat happens if i assign my self to fix a bug, but can't fix it... ?22:34
jayjayafter awhile finds out its more difficalt then i thought22:34
jayjay?22:34
*** anniec has joined #openstack-dev22:35
clarkbjayjay: I would make sure the bug is up to date with whatever information you found then unassign yourself22:35
clarkband perhaps let that particular project knowthat you cannot work it directly22:35
*** otherwiseguy has joined #openstack-dev22:36
*** eharney has quit IRC22:37
fungiand also, don't feel bad about it. i have unassigned myself from more bugs then i care to think about (clarkb probably fixed them all afterward)22:37
*** sride has quit IRC22:38
*** danpb has quit IRC22:40
*** souvik has quit IRC22:41
*** michchap has joined #openstack-dev22:42
*** lloydde has quit IRC22:43
*** souvik has joined #openstack-dev22:43
*** blamar has quit IRC22:44
*** henrynash has joined #openstack-dev22:44
*** mrodden has quit IRC22:45
*** jayjay has quit IRC22:46
*** galstrom is now known as galstrom_zzz22:47
*** krtaylor has joined #openstack-dev22:48
*** souvik has quit IRC22:49
*** michchap has quit IRC22:53
*** isomorphic has quit IRC22:55
*** alop_ has joined #openstack-dev22:55
*** alop has quit IRC22:55
*** alop_ is now known as alop22:55
*** vipul|away is now known as vipul22:57
*** henrynash has quit IRC22:57
*** markwash has joined #openstack-dev22:57
*** monst has quit IRC22:59
*** jcoufal has quit IRC23:00
*** gary_th has quit IRC23:01
*** sandywalsh has quit IRC23:01
*** sarob has joined #openstack-dev23:01
*** markwash has quit IRC23:01
*** isomorphic has joined #openstack-dev23:01
*** sarob has quit IRC23:02
*** sarob has joined #openstack-dev23:03
*** flaper87 has quit IRC23:03
*** mkollaro has quit IRC23:04
*** FunnyLookinHat has quit IRC23:05
*** markwash has joined #openstack-dev23:07
*** maoy has joined #openstack-dev23:07
jgriffithsdague: ping23:07
sdaguejgriffith: pong23:08
jgriffithsdague: not sure if you have expertise here or not, but remember you doing a lot of sqla cleanup soo... :)23:08
jgriffithsdague: http://paste.openstack.org/show/38869/23:08
jgriffithI've been able to repro this sort of thing in Nova as well23:09
jgriffithsdague: I "kinda" understand the problem, just trying to figure out how to fix it23:09
*** jpich has quit IRC23:09
jgriffithsdague: any insight?23:09
*** alunduil has joined #openstack-dev23:09
jgriffithsdague: I hate to think we need to add/store session info on all the calls for this sort of thing23:10
openstackgerritA change was merged to openstack/nova: Update to the latest stevedore  https://review.openstack.org/3274323:10
*** andrewbogott is now known as andrewbogott_afk23:10
sdaguejgriffith: so actually dansmith is probably the best one for this23:11
*** stevemar has joined #openstack-dev23:11
sdaguehe fixed those kinds of things in nova23:11
jgriffithsdague: ahh.. cool23:11
sdaguebasically you need to break the lazy load23:11
sdagueso you aren't carrying around a time bomb23:11
jgriffithYeah, just trying to figure out the clean way to do that23:11
jgriffithsdague: and where it's safe to carry it and where it's not23:12
jgriffith:(23:12
sdaguehonestly, you don't want to every cary the backrefs23:12
sdagueyou should try to convert away from sqla objects as quickly as possible above your db layer23:12
*** sandywalsh has joined #openstack-dev23:12
jgriffithsdague: ahh...23:13
sdagueotherwise unexpectedness happens23:13
sdagueanyway, dansmith can take you on a gory detailed look23:13
sdaguehe's retired for the nigth I think now, but I'd hit him tomorrow23:14
jgriffithsdague: makes sense, might explain some other weirdness when a blast the system with db calls23:14
dansmithI'm back now23:14
* dansmith reads23:14
jgriffithsdague: very cool... I'll ping23:14
jgriffithahh23:14
dansmithjgriffith: yeah, this is really annoying23:15
dansmithis it deref'ing a backref when it blows up, or just some attribute of the object?23:15
jgriffithJust some of them23:15
jgriffithoddly.. or maybe it's just coincidence it's always the same one23:15
dansmithin that trace, it's vol.get('volume_glance_metadata'), right?23:16
jgriffithyes23:16
dansmithI assume that's a backref or relationship to another type of thing, right?23:16
jgriffithexactly23:16
dansmithso, if you want to make it always present, you need a joinedload() in the query23:16
*** jjmb has joined #openstack-dev23:17
*** sarob has quit IRC23:17
*** TheDodd has quit IRC23:17
*** sarob has joined #openstack-dev23:17
jgriffithdansmith: so to be safe it sounds like I should put that in all fo the backrefs?23:17
jgriffithdansmith: obviously not just the one that's failing here23:17
dansmithwell,23:17
*** gabrielhurley has quit IRC23:17
dansmithif you just want to always load everything from the database, then yes23:18
dansmithin nova,23:18
dansmithwe selectively joinedload when we need it,23:18
dansmithbecause otherwise we're yanking tons of data from the db every time we do the query23:18
jgriffithdansmith: tricky...23:18
dansmithwhich has ... been a problem in the past :D23:18
jgriffithdansmith: yeah, that's a problem for certain23:18
dansmithespecially with metadata like things,23:18
openstackgerritA change was merged to openstack/horizon: Manually mock service_catalog in stub_keystoneclient  https://review.openstack.org/3326623:18
jgriffithit's unfortunate as this ref isn't even set23:18
dansmithbecause if you ever do a get_all_volumes(), which also grabs all metadata for each volume,23:19
dansmithand each volume has a lot of metadata,23:19
jgriffithdansmith: that's exactly where this is happening BTW23:19
dansmiththe result is n_vols * n_metadata rows in the result23:19
jgriffithdansmith: it just doesn't blow up until we try and translate everything23:19
dansmithwhich for instances and their metadata is friggin huge23:19
dansmithright23:19
dansmithI'm just saying,23:19
dansmithbe careful with the "always joinedload" approach23:19
jgriffithaye... got ya23:19
dansmithit's an easy "fix"23:19
dansmithbut dragons lie ahead23:19
jgriffithhehe... got ya23:20
jgriffithdansmith: k, thanks a bunch.23:20
dansmithyup, good luck :)23:20
jgriffithdansmith: I'll sort through a bit and take a closer look at what you did for Nova23:20
jgriffithdansmith: :)23:20
dansmithokay, one other thing on that..23:20
jgriffithdansmith: ?23:20
dansmiththere was a case where we needed to do a get_all() and include metadata, which got huge23:21
dansmithand so instead of joining,23:21
*** michchap has joined #openstack-dev23:21
dansmithwe did a second query for all the metadata of the instances in the result of the first query23:21
dansmithwhich ended up growing linearly instead of exponentially23:21
dansmithso there is a hack in db/api around system_metadata for doing that23:21
jgriffithdansmith: interesting, my first thought was it wouldn't help23:21
dansmithtwo queries you mean?23:21
jgriffithdansmith: yeah23:21
dansmithit deeeeeeefinitely helps23:22
dansmithat the scale we were at23:22
jgriffithdansmith: oh I totally believe you, just not what I expected for some reason23:22
*** souvik has joined #openstack-dev23:22
dansmithyeah, you pay a little latency, but it's a huge savings in number of rows returned (and thus number of bytes over the network)23:22
dansmithanyway, that's all :)23:23
jgriffithYeah... which sounds better to me for sure :)23:23
jgriffithdansmith: cool.. thanks a bunch23:23
dansmithnp23:23
jgriffithdansmith: I'll probably add you as reviewer when I get around to this if you don't mind :)23:23
dansmithjgriffith: sure :)23:24
jgriffithhmm.. actually grabbing all of the metadata isn't necessary anyway.  think I have a better way to do/fix this23:24
jgriffithdansmith: it's kinda stupid, I'm actually doing a get on that just to see if I should set the bootable flag in the output or not23:24
dansmithah23:25
jgriffithdansmith: would be wayyy more efficient to just add a bootable column to the volume table23:25
*** wu_wenxiang has joined #openstack-dev23:25
jgriffithand ditch the whole get the metadata in this case altogether23:25
dansmithsounds like it :)23:25
jgriffith:)23:26
jgriffithdansmith: glad you were around ;)23:26
jgriffithsdague: dansmith thanks!!23:26
dansmithdo you have a user quota on metadata?23:26
jgriffithdansmith: well hehe.. that's how I repro this so easily23:26
dansmithit's actually a potential problem, allowing the user to add unlimited metadata to their things, and then trigger this backref load of a bunch of stuff23:26
dansmithah, okay :)23:26
jgriffithdansmith: I clear all quotas and blast it with create 2000 volumes23:27
dansmithgotcha23:27
*** mlavalle has quit IRC23:27
jgriffithdansmith: but... I don't recall implementing metadata quotas :(23:27
dansmithyeah, a hidden danger :)23:27
jgriffithdansmith: somethign else for me to look at23:27
jamielennoxis there a way using oslo.config to get all the key=value pairs from a section without defining them as options to being with?23:29
adam_g_hmm. have the default flavors changed in havana or is tempest just screwing with me?23:29
jamielennoxso [section]; a=a; b=b; c=c and get a dictionary from section of {'a': 'a', 'b': 'b', 'c':'c'}?23:30
jgriffithadam_g_: IIRC yes there was a patch on that a few weeks back23:30
*** pmathews1 has quit IRC23:30
*** phschwar_ has joined #openstack-dev23:30
*** sdake has joined #openstack-dev23:30
*** sdake has joined #openstack-dev23:30
jgriffithadam_g_: it was like a 0 vs 1 GB for disk debate maybe?23:31
*** henrynash has joined #openstack-dev23:31
adam_g_jgriffith, ya.. that is whats screwing me23:31
jgriffithadam_g_: :(23:31
adam_g_jgriffith, ubuntu cloud images wont boot as m1.tiny anymore unless m1.tiny gets set back to disk == 023:31
jgriffithadam_g_: yikes, I don't think that came up in the debate :(23:31
*** michchap has quit IRC23:32
*** electrichead has quit IRC23:32
adam_g_jgriffith, dah! thats what i get for missing it :)23:32
* jgriffith can't believe adam_g_ doesn't catch EVERY single review and change in OpenStack!!23:33
*** egallen has joined #openstack-dev23:35
*** bknudson1 has quit IRC23:38
*** souvik has quit IRC23:39
*** rchunduru has joined #openstack-dev23:40
*** lloydde has joined #openstack-dev23:40
*** souvik has joined #openstack-dev23:40
rchunduruwhy does nova create many tokens while creating image? Nova is using quantumclient to make calls to Quantum and seems not re-using the tokens in several cases.23:42
rchundururead..launching an image23:42
*** jaybuff has left #openstack-dev23:43
*** carl_baldwin has quit IRC23:44
*** bswartz has joined #openstack-dev23:44
*** stevemar has quit IRC23:46
wu_wenxianghello, any quantum devloper here? Could you help to check https://bugs.launchpad.net/quantum/+bug/119238123:46
uvirtbotLaunchpad bug 1192381 in quantum "dhcp dnsmasq lost port in host config file" [Undecided,New]23:46
*** nachi_ has quit IRC23:47
*** stevebaker has quit IRC23:48
*** salv-orlando has joined #openstack-dev23:52
*** tjones has quit IRC23:53
*** jhesketh_ has quit IRC23:57
*** markwash has quit IRC23:58
*** michchap has joined #openstack-dev23:59
*** jjmb has quit IRC23:59

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