Thursday, 2011-11-24

sorenNo.00:00
sandywalshdb.foo() will always return 123, for example00:00
sorenNo, it's a complete implementation of the db api. It'll behave exactly like and expose an API identical to that of the sqlalchemy driver.00:00
sorenNo backdoors.00:00
sorenNo special instrumentation.00:00
sandywalshhow is it different than sqlite?00:01
sorenJust another DB driver, backed by python dicts and glue.00:01
sorenIt's *loads* faster.00:01
sandywalshah00:01
sandywalshok, that's where I was confused00:02
sandywalsh<thinking of the implications>00:02
sorenThere are many benefits.00:02
sorenFaster tests being one of them.00:03
*** RobertLaptop has left #openstack-dev00:03
sandywalshalmost as fast as a mock00:03
sorenYeah.00:03
sorenBut this will be more trustworthy.00:03
sorenA mock gives you a canned response. My fake will give you a response that is guaranteed to be identical to what the real driver would give.00:04
sandywalshok, I can see that00:04
sorenSo we can rest assured that what our production code gets from the fake db layer during tests will be identical (in nature) to what it would get from the real db driver in production.00:05
sandywalshbut, if I add something to nova.db.sqlalchemy I need to remember to add it to nova.db.soren00:05
sorenThe db API tests suite that will accompany this will ensure that this continues to be true.00:05
sorenYes.00:05
sandywalshhmm00:05
sorenThis is a good thing, IMO.00:05
sorenThe sqlalchemy driver is a mess.00:06
sorenIt's just grown and grown.00:06
sandywalshit's certainly a mix of old and new style sqlalchemy calls00:06
sandywalshbut, this is part of the argument about are we testing the fake or testing the code00:07
sorenThere are lots of things that are really awkward because it has to fit into an rdbms.00:07
sandywalshjust as if I forget to add nova.virt.xen_conn.do_something to nova.virt.libvirt00:07
sorenThen the tests will fail.00:07
sorenBEcause the test suite will use the fake.00:07
sorenUsing this approach we should be *more* sure we're testing the code rather than the fake.00:08
sandywalshI suppose you could write a test to ensure there's a 1-1 mapping of nova.db.api to nova.db.soren.api00:08
soren(compared to when we're using hundreds or thousands of ad-hoc mocks)00:08
sorenYes!00:08
sorenTaht's what I'm doing.00:08
sorenWEll..00:08
sorenNot exactly.00:09
sorenI'm adding a test suite.00:09
sorenDB test suite, I mean.00:09
sorenThis test suite will be run against my fake db as well as the sqlalchemy db driver.00:09
*** martine has quit IRC00:09
sorenTo ensure they give the same responses.00:09
sandywalshok, good enough00:10
sorenIf you're adding new methods to the db API, and you forget to add it to the fake as well, your tests should fail, because during tests, we use the fake.00:10
sorenAnd any new code you're adding that depends on this new DB api method will of course have tests that rely on said db methods.00:10
sandywalshyes, that would be a good check (it would be nice if nova.virt.api did the same thing against nova.virt.fake)00:10
sorenI It does!00:11
sorennova.tests.test_virt_drivers does exactly that.00:11
sandywalshah, is that a recent addition?00:11
sorenIt exercises all the stuff that a virt driver should expose.00:11
sorenI added it in August, I think.00:11
sandywalshok ... interesting00:11
sorenA couple of days ago, my fakelibvirt module got added, so it now also runs against the lbivirt drirver.00:12
sorenSorry, it's 1 AM, I type really poorly.00:12
sandywalshwell, now that I understand the implementation a little better I don't have any concerns about it00:12
sorenThe goal is to be able to run this test suite against any virt driver.00:12
sandywalshI guess eventually we need to push that to all nova.<service>.api layers00:12
sorenAnd this db stuff I'm doing is very much in the same spirit.00:13
sorensandywalsh: I did the same for the image layer.00:13
sorensandywalsh: I'm working through them, one at a time. Right now, I'm attacking db, but it's *big*.00:13
sandywalshok ... gotcha. Make sense00:14
sandywalshso I guess the other gap will be in all the managers and drivers00:15
sandywalshbut, piece at a time, right00:15
sorensandywalsh: Exactly.00:15
sandywalshcool ... thanks for the clarification.00:15
sandywalshI'll let you go to bed now ... look forward to seeing it!00:16
*** jeffjapan has joined #openstack-dev00:16
*** sleepsonthefloo has quit IRC00:18
openstackgerritZiad Sawalha proposed a change to openstack/keystone: Enforce service ownership  https://review.openstack.org/186400:21
openstackgerritJames E. Blair proposed a change to openstack/openstack-ci: Handle machines that were already deleted.  https://review.openstack.org/188400:26
openstackgerritGabriel Hurley proposed a change to openstack/horizon: AJAX modal for associate floating IP. Fixes bug 884495.  https://review.openstack.org/188500:29
openstackgerritGabriel Hurley proposed a change to openstack/horizon: Adds tabindex to nav elements for better accessibility.  https://review.openstack.org/188000:29
uvirtbotLaunchpad bug 884495 in horizon "UX Improvements: Associate Floating IP - New simple modal" [Medium,Confirmed] https://launchpad.net/bugs/88449500:29
*** sandywalsh has quit IRC00:37
*** adjohn has joined #openstack-dev00:44
openstackgerritGabriel Hurley proposed a change to openstack/horizon: Clears session on splash page to prevent old user ids from being cached.  https://review.openstack.org/182400:45
*** deshantm_laptop has joined #openstack-dev00:50
*** nati2_ has joined #openstack-dev01:08
*** stanchan has quit IRC01:19
*** nati2 has quit IRC01:22
openstackgerritBrad Hall proposed a change to openstack/quantum: Second round of packaging changes  https://review.openstack.org/188601:33
*** dolphm has joined #openstack-dev01:34
openstackgerritZiad Sawalha proposed a change to openstack/keystone: Additional middleware test coverage  https://review.openstack.org/186201:34
*** nati2 has joined #openstack-dev01:34
openstackgerritLorin Hochstein proposed a change to openstack-ci/git-review: Create .git/hooks directory if not present  https://review.openstack.org/188701:35
openstackgerritLorin Hochstein proposed a change to openstack/glance: Added example commands for uploading images.  https://review.openstack.org/188801:36
*** pixelbeat has quit IRC01:36
*** nati2_ has quit IRC01:37
openstackgerritZiad Sawalha proposed a change to openstack/keystone: Additional middleware test coverage  https://review.openstack.org/186201:41
*** rods has quit IRC01:48
*** nati2 has quit IRC01:52
*** nati2 has joined #openstack-dev01:52
*** zns has quit IRC01:53
*** 36DAAU429 has joined #openstack-dev01:55
*** rkukura has quit IRC01:57
*** vladimir3p has quit IRC02:02
*** nati2_ has joined #openstack-dev02:04
*** nati2 has quit IRC02:06
*** novas0x2a|laptop has joined #openstack-dev02:10
*** bengrue has quit IRC02:17
*** jdurgin has quit IRC02:18
*** mwhooker has quit IRC02:35
*** dolphm has quit IRC02:38
*** dolphm has joined #openstack-dev02:53
*** nati2_ has quit IRC03:04
*** nati2 has joined #openstack-dev03:05
*** zns has joined #openstack-dev03:10
*** negronjl has joined #openstack-dev03:23
*** sandywalsh has joined #openstack-dev03:30
*** sandywalsh has quit IRC03:37
openstackgerritYogeshwar Srikrishnan proposed a change to openstack/keystone: Bug #854104   - Changes to allow admin url to be shown only for admin users.   - Additional test asserts to verify.  https://review.openstack.org/154203:56
uvirtbotLaunchpad bug 854104 in keystone "add ability to obscure internal and admin endpoints from standard users" [High,In progress] https://launchpad.net/bugs/85410403:56
*** map_nw_ has joined #openstack-dev03:56
*** deshantm_laptop has quit IRC03:58
*** map_nw has quit IRC03:58
*** deshantm_laptop has joined #openstack-dev04:02
*** deshantm_laptop has quit IRC04:03
*** nati2_ has joined #openstack-dev04:18
*** nati2 has quit IRC04:20
*** koolhead17 has quit IRC04:26
*** novas0x2a|laptop has quit IRC04:39
*** nati2_ has quit IRC04:40
*** nati2 has joined #openstack-dev04:40
*** nati2 has quit IRC04:40
*** nati2 has joined #openstack-dev04:40
*** nati2 has joined #openstack-dev04:41
*** gavri has quit IRC05:01
*** mjfork has quit IRC05:13
openstackgerritZiad Sawalha proposed a change to openstack/keystone: Fixes bug 843065  https://review.openstack.org/188905:23
uvirtbotLaunchpad bug 843065 in keystone "--host / --bind-host seem to have no effect ..." [High,Confirmed] https://launchpad.net/bugs/84306505:23
*** cp16net has quit IRC05:27
*** koolhead17 has joined #openstack-dev05:36
*** cp16net has joined #openstack-dev05:37
*** timr1 has joined #openstack-dev05:40
*** cp16net_ has joined #openstack-dev05:43
*** cp16net has quit IRC05:45
*** cp16net_ is now known as cp16net05:45
openstackgerritsanjay-tripathi proposed a change to openstack/nova: Bug#891552 Append the documentation with Nova CLI commands.  https://review.openstack.org/189005:55
openstackgerritsanjay-tripathi proposed a change to openstack/nova: Bug#891552 Append the documentation with Nova CLI commands.  https://review.openstack.org/186505:55
openstackgerritsanjay-tripathi proposed a change to openstack/nova: Bug#891552 Append the documentation with Nova CLI commands.  https://review.openstack.org/175405:55
openstackgerritsanjay-tripathi proposed a change to openstack/nova: Bug#891552 Append the documentation with Nova CLI commands.  https://review.openstack.org/184006:03
openstackgerritYogeshwar Srikrishnan proposed a change to openstack/keystone: Bug #890801: - Changes to support /extensions call. - Removed additional middleware that used to support /extensions call.ie RAX-KEY-extension - Removed related conf file entries. - Removed service extension test as it was no more relavent.  https://review.openstack.org/189106:03
uvirtbotLaunchpad bug 890801 in keystone "GET /extensions returns an empty list" [Medium,In progress] https://launchpad.net/bugs/89080106:03
*** cp16net has quit IRC06:05
*** zaitcev has quit IRC06:06
*** hugokuo has joined #openstack-dev06:15
*** HugoKuo__ has quit IRC06:18
openstackgerritDean Troyer proposed a change to openstack-dev/devstack: Check out integration tests and install prereqs  https://review.openstack.org/189206:20
openstackgerritDean Troyer proposed a change to openstack-dev/devstack: Set up default images for testing  https://review.openstack.org/189306:20
*** timr1 has quit IRC06:40
*** nati2_ has joined #openstack-dev06:42
*** nati2 has quit IRC06:45
*** dolphm has quit IRC06:47
*** nati2_ has quit IRC07:12
*** koolhead17 has quit IRC07:21
openstackgerritMark McLoughlin proposed a change to openstack/nova: Remove boot-from-volume unreachable code path (#894172)  https://review.openstack.org/189407:30
*** dolphm has joined #openstack-dev07:36
openstackgerritZiad Sawalha proposed a change to openstack/keystone: Fixed memcache tests  https://review.openstack.org/189507:37
*** negronjl has quit IRC07:39
ttxvishy, matyalor: I always said there was a short-term business for providing an openstack on lucid distribution.07:44
ttxmtaylor, even ^07:44
*** dachary has joined #openstack-dev07:46
*** dolphm has quit IRC07:50
*** jeffjapan has quit IRC07:50
ttxvishy: the trick is maintaining that "lucid stable version" is not a zero-effort thing as it used to be -- and its lifetime should be around ~1year, until everyone is confident upgrading to 12.04LTS07:50
ttxnotmyname: ACK on swift 1.4.4 -- will try to do this today (Thursday)07:51
*** dachary has quit IRC07:56
*** reidrac has joined #openstack-dev07:57
*** apevec has joined #openstack-dev08:07
*** dachary has joined #openstack-dev08:18
sorenIs this channel logged somewhere?08:24
*** popux has joined #openstack-dev08:30
*** apevec has quit IRC08:33
*** map_nw_ has quit IRC08:42
*** map_nw has joined #openstack-dev08:47
*** adiantum has joined #openstack-dev09:03
markmcsoren, http://eavesdrop.openstack.org/irclogs/%23openstack-dev/09:10
*** pixelbeat has joined #openstack-dev09:17
*** popux has quit IRC09:19
sorenmarkmc: Ah. Ta very much.09:26
*** darraghb has joined #openstack-dev09:56
*** markmc has quit IRC10:04
*** corrigac has joined #openstack-dev10:41
*** tryggvil has quit IRC10:47
*** viraptor has joined #openstack-dev11:09
*** mnour has joined #openstack-dev11:27
*** HugoKuo_ has joined #openstack-dev12:12
*** hugokuo has quit IRC12:16
*** JStoker has quit IRC12:37
*** timr1 has joined #openstack-dev12:40
*** JStoker has joined #openstack-dev12:40
*** hugokuo has joined #openstack-dev12:45
openstackgerrite0ne proposed a change to openstack/nova: Bug 820059: bin/nova-manage.py VpnCommands.spawn calls non-existant method VpnCommands._vpn_for - fixed  https://review.openstack.org/189612:55
uvirtbotLaunchpad bug 820059 in nova "bin/nova-manage.py VpnCommands.spawn calls non-existant method VpnCommands._vpn_for" [Medium,Confirmed] https://launchpad.net/bugs/82005912:55
*** mjfork has joined #openstack-dev13:14
*** hugokuo has quit IRC13:16
*** deshantm_laptop has joined #openstack-dev13:25
*** timr1 has quit IRC13:40
*** timr1 has joined #openstack-dev13:51
*** corrigac has quit IRC14:12
*** chemikadze has quit IRC14:13
*** markmc has joined #openstack-dev14:18
*** rods has joined #openstack-dev14:19
notmynamettx: ok. ping me when you do (email preferred today) so that I can send appropriate emails, etc to announce it14:24
ttxnotmyname: it's in progress14:25
ttxwill upload in the next hour and let you know when it's done14:26
ttxnotmyname: hmm, though the PPA failed for some reason.14:26
* ttx investigates14:26
ttxwtf14:28
*** deshantm_laptop has quit IRC14:28
ttxsoren: any idea what might cause: https://jenkins.openstack.org/job/swift-milestone-ppa/label=swift,series=lucid/17/console14:28
ttxGPG signature fail on PPA upload.14:28
sorenOh, that again.14:29
sorenIgnore it.'14:29
ttxI wish I could14:29
sorenDid the upload not go through?14:29
ttx550 Changes file must be signed with a valid GPG signature: Verification failed 3 times: ['General error', 'General error', 'General error'] : Permission denied.14:29
ttxBuild step 'Execute shell' marked build as failure14:29
sorenYes, I know.14:29
sorenDid the upload not go through?14:29
ttxoh14:30
ttxI see what you mean.14:30
sorenhttps://launchpad.net/~swift-core/+archive/milestone-proposed14:30
ttxI ned to ignore the job failure14:30
soren...has an upload from 16 minutes ago.14:30
ttxok, will ignore it.14:30
ttxbut red balls make me unhappy.14:30
sorenbug 79895714:30
uvirtbotLaunchpad bug 798957 in launchpad "PPA Uploads are seemingly (but not actually) rejected" [Critical,Triaged] https://launchpad.net/bugs/79895714:30
ttxit's random ? lovely.14:31
sorenSemi.14:32
Davieyttx: Lets produce some stats and look for trends :)14:33
* ttx <3 his upload_release script14:36
notmynamettx: cool, does that mean it's done? :-)14:39
ttxnotmyname: the tarball is uploaded. I'm publishing to PPAs now.14:39
ttx(just a matter of reuploading with correct version, thanks to soren's magic scripts)14:40
ttxnotmyname: so yes, you can send out announcements.14:40
ttxhttps://launchpad.net/swift/essex/1.4.414:40
notmynamettx: thanks. I'll get it done today14:41
*** deshantm_laptop has joined #openstack-dev14:41
ttxnotmyname: by the time you do that, ubuntu packages for 1.4.4 should be available at: https://launchpad.net/~swift-core/+archive/release14:43
ttxsoren: the error is persistently random. reupload_with_new_version.py hits it for every series.14:44
ttxI'll go to the bottom of it, though :)14:44
sorenttx: I'm sure lifeless would love to talk to you abuot it.14:44
sorenttx: Or me or whomever.14:45
ttxI'm sure lifeless should be sleeping now.14:45
sorenttx: It's just 2 AM at his place.14:45
sorenYeah.14:45
ttxI bet the loadbalancer on ppa.launchpad.net has decided that my IP must be routed to the failing node.14:46
*** viraptor has quit IRC14:53
*** timr1 has quit IRC15:25
notmynamettx: thanks. I've blasted everything out on email, twitter, and google+.15:33
ttxyay15:35
ttxwill retweet, +1 etc.15:35
Davieyttx: is swift still not following the openstack core projects release schedule?15:35
notmynameDaviey: all projects have the freedom to do whatever release schedule they want between the 6-month cycle of openstack15:36
notmynamesince swift is in a different part of the lifecycle than the other projects, we choose a schedule that makes the most sense for us15:37
Davieynotmyname: will it ever be aligned?15:37
notmynameDaviey: all projects are aligned every 6 months. that's the only requirement for openstack projects15:37
Davieyright, but i think you are missing what i am saying.  Do you think the stability lifecycle will ever be that of the other projects, whcih follow the same milestones?15:38
notmynameperhaps. I think that's up to those projects, though. I don't anticipate swift changing it's release schedule. there are several advantages that we don't want to give up right now15:40
Davieynotmyname: What are the advantages?15:41
notmynamewe are very closely aligned with the rackspace cloud files product. we make swift releases when it makes sense for cloud files (or when other deployers need a release). this gives the advantage of being able to say that each of our releases are running on the largest swift clusters in the world. we don't have to have different release cycles for the rackspace product and the open source project.15:43
notmynameas other large deployers come online, we are able to coordinate swift releases so that these deployers don't have to maintain their own versions and/or patch queues15:44
notmynameone example of another large deployer is HP15:44
Davieynotmyname: Hmm, It does seem kinda odd that the release schedule is tied to a company, rather than the project.15:45
DavieyI'm finding it quite confusing.15:45
openstackgerritBrad Hall proposed a change to openstack/nova: Fix for bug 894431  https://review.openstack.org/189715:45
uvirtbotLaunchpad bug 894431 in nova "linux_net ovsinterfacedriver is setting the wrong iface-id" [Undecided,Confirmed] https://launchpad.net/bugs/89443115:45
Davieynotmyname: Where can i find the release schedule for swift?15:45
reidracin fact I'd like we had swift releases more often so I wouldn't have to maintain local patches15:46
notmynameDaviey: we do feature-based releases, so the next release is always "when it's needed and when it's ready"15:46
Davieynotmyname: swift is *feature* based release?  I thought openstack core was all time based?15:47
DavieySo at Essex release, openstack gets what it is given as the most current swift release?15:47
notmynamereidrac: since the cactus release, we have averaged a release every 4-6 weeks15:47
Davieynotmyname: I thought they were being aligned this cycle. :/15:47
notmynameDaviey: correct. the 6 month openstack releases are time based15:47
notmynamebut what happens between the 6 month releases is up to each project15:48
reidracnotmyname: and it's close to perfect, but still... the fact there's no stable release and backport of the fixes means than waiting for a release can be a bad idea15:48
Davieynotmyname: right, so the other projects are expected to just use the most recent swift release and make do, tagging it essex?15:48
notmynamereidrac: not sure I follow. there is a diablo branch that ttx et al have for swift. are there issues that need to be backported?15:49
reidracnotmyname: I can't say right now, I'm running 1.4.315:49
notmynamereidrac: the difference is that we offer guarantees about the mid-openstack releases we make15:50
notmynameDaviey: you can either use the most recent swift release or target the previous openstack release. this isn't any different than any other openstack project15:51
Davieynotmyname: You can confirm that as it currently stands, Swift is sticking to a release schedule to match RAX's feature requirements, irrelvant of the time around it - providing there is /something/ stable at Essex release point?15:51
* ttx reads backlog15:51
notmynameDaviey: swift is doing feature-based releases. each release will be production-ready and able to upgraded to with no customer downtime. the 6 month openstack cycle takes the last swift release as the version for that cycle15:53
DavieyI guess that is a 'yes', ok - thanks.15:54
*** 36DAAU429 has quit IRC15:54
notmynameDaviey: currently, all of the core swift devs work for rackspace. therefore that's the use case we see every day. I'm currently working on getting more outside core devs15:55
Davieynotmyname: It's not the dev's that concerns me, it's the lack of allignment.15:55
DavieyIt's not a concern to me who pay's their wages :).. It's a project management thing, and it's concerning to me.15:56
notmynameDaviey: except that we are aligned every 6 months as required by openstack15:56
openstackgerritLorin Hochstein proposed a change to openstack/nova: Fix deprecation warnings  https://review.openstack.org/189815:56
ttxnotmyname: right, my fear is that it's a chicken and egg issue. Having feature-based linked-to-RAX-internal-needs releases actually prevents people from considering to participate strategically in the project15:57
Davieynotmyname: That really doesn't make sense.  Aligned to a final release date, just means shipping the most current one that RAX decided to ship.15:58
ttxso you won't (and don't) get significant contributions from other companies, so you don't see the need for changing to something else15:58
*** timr1 has joined #openstack-dev15:58
ttxmaybe Swift is sufficiently advanced to not *need* other significant contributors, and perfactly alright as-is15:59
ttxin which case I say, yes, your vision is right15:59
notmynameI would say that swift is largely feature-complete, and that's why there is less active development around it compared to nova. that's not to say there isn't a lot to do, but it meets the needs of most people out-of-the-box16:00
ttxack16:01
notmynameDaviey: for example, particular project (say a web server) doesn't really make releases based on the various distros it's included in. the distros take the last stable version of that proejct when it's time for the distro release.16:01
Lumiereor the one before that if the release was too late in their cycle16:02
Davieynotmyname: right, but this seems to be different to the vision that oenstack had at it's conception.16:02
LumiereDaviey: if the vision was 'release a bundle every 6 months' then in the end it is the same as Ubuntu, Bring all the stable versions together and test that they work together16:04
notmynameDaviey: I think the biggest disconnect is that swift entered openstack as a complete codebase already in use in production as a product. the other projects within openstack all entered much earlier in the dev livecycle16:04
*** zns has quit IRC16:05
notmynameLumiere: as always the devil's in the details, but ya I agree with that16:05
sorenttx: http://blog.launchpad.net/bug-tracking/customisable-bug-listings-in-beta16:06
DavieyRight, i do see your point - and we've found swift to be stable.  However, the release management is concerning to me.16:06
*** reidrac has quit IRC16:07
notmynameDaviey: if you need a committed change to be in an official swift version, let me know16:08
ttxsoren: holy batman16:09
ttxsoren: looks like a large waste of space.16:09
sorenttx: But it's got rounded corners!16:10
notmynameDaviey: if you'd like to follow up more (I'm always interested in feedback on this), feel free to email me (me@not.mn)16:10
ttxsoren: they sure are catching up with github.16:10
notmynameright now I'm getting dirty looks from my family for being on the computer on thanksgiving ;-)16:10
* soren screams16:11
soren1 → 75 of 1097 results16:11
ttxnotmyname: stay with us, we are your real family.16:11
notmynamettx: lol16:11
ttxyou spend more time with us than with them !16:11
notmynamettx: this community does have a lot of the stereotypical family dynamics, doens't it? (is swift the eccentric uncle?)16:11
ttxheh, I wonder who I am.16:12
Davieynotmyname: thanks!16:12
* notmyname out (for now...)16:12
ttxsoren: ok, I hate this new bugs view.16:13
sorenttx: I like that fact that it has mor einformation. It's just too sparse.16:14
sorenttx: Much too sparse.16:14
ttxthe old one was an efficient use of my screen estate16:14
ttxthis one looks like someone abused greasemonkey while being drunk.16:14
ttxand yes, I used abuse grease monkey and drunk in the same sentence.16:15
ttxsoren: for example, I'm not sure that telling me that all Nova bugs affect "OpenStack Compute (nova)" and making the listing twice as long just because of that is so great16:16
*** zns has joined #openstack-dev16:16
sorenttx: Subscribed you to bug 89444216:19
uvirtbotLaunchpad bug 894442 in launchpad "New bug list is much too sparse" [Undecided,New] https://launchpad.net/bugs/89444216:19
sorenttx: Hm..16:19
sorenttx: No, nothing. Never mind.16:19
sorenI just thought it would perhaps only show that if you were looking at an umbrella project.16:19
sorenBut no.16:20
ttxit's actually worse when you go for a specific project16:20
sorenHow so?16:20
ttxon https://bugs.launchpad.net/nova/+bugs : about half you screen is used to repeat "OpenStack Compute (Nova)"16:21
sorenYeah.16:21
ttxthen you remove it (it's all about customization after all)...16:22
ttxbut each bug still takes twice as much space as it used to.16:22
sorenI don't mind the repetitiveness so much. It can be disabled (each piece of infomration can be removed). I mind that each row has two lines.16:22
sorenRight.16:22
ttxI commented on the blog post (in moderation)16:24
sorenCool.16:24
* soren heads upstairs16:24
ttxpointing to your bug16:24
openstackgerritfred yang proposed a change to openstack/nova: Adds trusted-computing-pools support. Implements blueprint trusted-computing-pools  https://review.openstack.org/189916:25
openstackgerritoliver-leahy-l proposed a change to openstack/nova: Fixes bug 888649  https://review.openstack.org/190016:29
uvirtbotLaunchpad bug 888649 in nova "Snapshots left in undeletable state" [Undecided,New] https://launchpad.net/bugs/88864916:29
*** koolhead17 has joined #openstack-dev16:45
*** ollie1 has joined #openstack-dev16:45
*** chemikadze has joined #openstack-dev16:56
*** zns has quit IRC17:10
*** tryggvil_ has joined #openstack-dev17:20
*** mnour has quit IRC17:30
*** pixelbeat has quit IRC17:35
*** pixelbeat has joined #openstack-dev17:49
*** dachary has quit IRC17:55
*** deshantm_laptop has quit IRC18:05
*** adiantum has quit IRC18:15
*** timr1 has quit IRC18:18
*** darraghb has quit IRC18:22
*** dolphm has joined #openstack-dev18:31
*** dolphm has quit IRC18:35
*** bengrue has joined #openstack-dev18:52
*** GheRivero_ has joined #openstack-dev19:51
*** timr1 has joined #openstack-dev20:00
*** GheRivero_ has quit IRC20:10
*** GheRivero_ has joined #openstack-dev20:10
*** koolhead17 has quit IRC20:12
*** pixelbeat has quit IRC20:16
*** negronjl has joined #openstack-dev20:30
*** GheRivero_ has quit IRC20:50
*** koolhead17 has joined #openstack-dev21:43
*** nati2 has joined #openstack-dev22:02
openstackgerritEwan Mellor proposed a change to openstack/nova: Fix trivial fourth quote in docstring.  https://review.openstack.org/190122:05
*** zykes- has quit IRC22:05
*** pasik has quit IRC22:07
*** pasik has joined #openstack-dev22:07
*** nati2 has quit IRC22:20
*** nati2 has joined #openstack-dev22:21
*** hugokuo has joined #openstack-dev22:56
*** camm has quit IRC23:12
*** openstackgerrit has quit IRC23:12
*** clayg has quit IRC23:12
*** guaqua has quit IRC23:12
*** medberry has quit IRC23:12
*** markmc has quit IRC23:12
*** cdub has quit IRC23:12
*** adam_g has quit IRC23:12
*** Kiall has quit IRC23:12
*** Vek has quit IRC23:12
*** termie has quit IRC23:12
*** wwkeyboard has quit IRC23:12
*** rods has quit IRC23:12
*** JStoker has quit IRC23:12
*** HugoKuo_ has quit IRC23:12
*** ollie1 has quit IRC23:12
*** ayoung has quit IRC23:12
*** Lumiere has quit IRC23:12
*** russellb has quit IRC23:12
*** martines has quit IRC23:12
*** cmagina has quit IRC23:12
*** root_ has quit IRC23:12
*** Tribaal has quit IRC23:12
*** Daviey has quit IRC23:12
*** hugokuo has quit IRC23:12
*** cburgess has quit IRC23:12
*** n0ano has quit IRC23:12
*** benner has quit IRC23:12
*** uvirtbot has quit IRC23:12
*** troytoman-away has quit IRC23:12
*** pasik has quit IRC23:12
*** koolhead17 has quit IRC23:12
*** tryggvil_ has quit IRC23:12
*** map_nw has quit IRC23:12
*** chmouel has quit IRC23:12
*** johan_-_ has quit IRC23:12
*** ahale has quit IRC23:12
*** vishy has quit IRC23:12
*** LinuxJedi has quit IRC23:12
*** GheRivero has quit IRC23:12
*** errr has quit IRC23:13
*** markwash has quit IRC23:13
*** kpepple has quit IRC23:13
*** villep has quit IRC23:13
*** zul has quit IRC23:13
*** jeblair has quit IRC23:13
*** doude has quit IRC23:13
*** blamar has quit IRC23:13
*** comstud has quit IRC23:13
*** openstackjenkins has quit IRC23:13
*** dabo has quit IRC23:13
*** hyakuhei has quit IRC23:13
*** _0x44 has quit IRC23:13
*** clayg_ is now known as clayg23:13
*** pasik has joined #openstack-dev23:14
*** koolhead17 has joined #openstack-dev23:14
*** tryggvil_ has joined #openstack-dev23:14
*** ollie1 has joined #openstack-dev23:14
*** rods has joined #openstack-dev23:14
*** markmc has joined #openstack-dev23:14
*** JStoker has joined #openstack-dev23:14
*** HugoKuo_ has joined #openstack-dev23:14
*** map_nw has joined #openstack-dev23:14
*** ayoung has joined #openstack-dev23:14
*** adam_g has joined #openstack-dev23:14
*** chmouel has joined #openstack-dev23:14
*** cdub has joined #openstack-dev23:14
*** cburgess has joined #openstack-dev23:14
*** GheRivero has joined #openstack-dev23:14
*** Lumiere has joined #openstack-dev23:14
*** russellb has joined #openstack-dev23:14
*** n0ano has joined #openstack-dev23:14
*** benner has joined #openstack-dev23:14
*** martines has joined #openstack-dev23:14
*** Tribaal has joined #openstack-dev23:14
*** cmagina has joined #openstack-dev23:14
*** errr has joined #openstack-dev23:14
*** LinuxJedi has joined #openstack-dev23:14
*** johan_-_ has joined #openstack-dev23:14
*** ahale has joined #openstack-dev23:14
*** vishy has joined #openstack-dev23:14
*** root_ has joined #openstack-dev23:14
*** markwash has joined #openstack-dev23:14
*** Daviey has joined #openstack-dev23:14
*** uvirtbot has joined #openstack-dev23:14
*** wwkeyboard has joined #openstack-dev23:14
*** termie has joined #openstack-dev23:14
*** Vek has joined #openstack-dev23:14
*** troytoman-away has joined #openstack-dev23:14
*** kpepple has joined #openstack-dev23:14
*** villep has joined #openstack-dev23:14
*** pixelbeat has joined #openstack-dev23:14
*** zul has joined #openstack-dev23:15
*** jeblair has joined #openstack-dev23:15
*** doude has joined #openstack-dev23:15
*** blamar has joined #openstack-dev23:15
*** comstud has joined #openstack-dev23:15
*** openstackjenkins has joined #openstack-dev23:15
*** dabo has joined #openstack-dev23:15
*** hyakuhei has joined #openstack-dev23:15
*** _0x44 has joined #openstack-dev23:15
*** clayg is now known as 15SAADNDC23:15
*** Kiall_ has joined #openstack-dev23:15
*** camm has joined #openstack-dev23:15
*** openstackgerrit has joined #openstack-dev23:15
*** clayg has joined #openstack-dev23:15
*** guaqua has joined #openstack-dev23:15
*** medberry has joined #openstack-dev23:15
*** medberry is now known as Guest91323:16
*** Kiall_ is now known as Guest7957823:16
*** Guest79578 has quit IRC23:16
*** Guest79578 has joined #openstack-dev23:16
*** Guest79578 is now known as Kiall23:16
*** zykes- has joined #openstack-dev23:54
*** jeffjapan has joined #openstack-dev23:55
*** pixelbeat has quit IRC23:55
*** bengrue has quit IRC23:56

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