Tuesday, 2014-07-08

openstackgerritMichael Bayer proposed a change to openstack/oslo.db: - implement exception compatibility layer - work up a system of filters to replace imperative exception handling logic with declarative logic - fully move all exception reraises to be rules  https://review.openstack.org/10530700:00
zzzeekOK, this is my first big change + blueprint + everything, I probably screwed some things up00:00
*** yamahata has quit IRC00:05
openstackgerritJoshua Harlow proposed a change to openstack/oslo-specs: Add a redis backed job/jobboard  https://review.openstack.org/10529800:06
harlowjazzzeek something i refer newbs to, https://wiki.openstack.org/wiki/GitCommitMessages#Summary_of_GIT_commit_message_structure00:07
harlowjajust as a start :)00:07
harlowjasome people are more strict about this00:07
zzzeekoh i put my own style of commit messages into my thing…. ?  checking00:08
harlowjaand might ding u for the first line00:08
zzzeekill amend that00:08
harlowjacool00:08
zzzeekit looks like my patch is already off from what master is, how is that going to pop up, jenkins build ?00:08
harlowjazzzeek ya00:09
zzzeekok00:09
harlowjahttp://status.openstack.org/zuul/ will run your stuff00:09
harlowjaif u want to watch that00:09
harlowjahttps://github.com/harlowja/gerrit_view#czuul is much better (actually its pretty much the same, just a terminal view i made)00:09
harlowjahttp://pypi.python.org/pypi/gerrit-view (u can selective pick out a project like --project "openstack/oslo.db"00:10
harlowjaif u want to watch whats happening00:10
harlowjahttp://docs.openstack.org/infra/publications/zuul/#%281%29 is neat to look over to understand the full thing00:11
harlowja*well actually probably only a few people understand the full thing, ha00:12
openstackgerritMichael Bayer proposed a change to openstack/oslo.db: Implement exception interception and filtering layer  https://review.openstack.org/10530700:14
harlowjaboris-42 u might want to check ^ out since i think u did alot of that exception stuff00:14
zzzeekOK who wants to review00:15
zzzeeki redid the commit message.   I know how to put up patches, the blueprint part is new to me.00:15
harlowja:)00:15
harlowjaanother thing that will happen, is the the flake8 checks will run, and this runs some specific ones that openstack has that i think your patch will fail on00:16
harlowjahttp://docs.openstack.org/developer/hacking/#imports ; so just something to be aware of00:16
zzzeekharlowja: what line00:17
harlowjahandle_error.py ?00:17
zzzeekoh this chemy import event, exc as sqla_exc00:17
zzzeekk00:17
harlowjazzzeek and they like to group things00:17
harlowjahttp://docs.openstack.org/developer/hacking/#import-order-template00:18
harlowjaand it will actually check this00:18
harlowjaand barf if it isn't likeing it00:18
zzzeekokey doke00:18
zzzeekthis is a review so just review it ! :)00:18
harlowjalol00:18
harlowjaya ya00:18
harlowjai'll do that, gotta go explain what asyncio and stuff is to a coworker00:19
harlowjabut after that :-P00:19
zzzeekwho should review the blueprint00:19
*** joesavak has joined #openstack-oslo00:26
*** tsekiyam_ has joined #openstack-oslo00:26
*** jsavak has joined #openstack-oslo00:27
*** tsekiya__ has joined #openstack-oslo00:28
*** tsekiyama has quit IRC00:30
*** joesavak has quit IRC00:31
*** tsekiyam_ has quit IRC00:32
*** jsavak has quit IRC00:41
*** zzzeek has quit IRC00:41
*** zzzeek has joined #openstack-oslo00:53
*** yamahata has joined #openstack-oslo00:55
openstackgerritA change was merged to openstack/oslo.vmware: Fix wrong usage of assertRaises  https://review.openstack.org/10507700:56
*** liusheng has quit IRC01:02
*** tsekiya__ has quit IRC01:07
openstackgerritMichael Bayer proposed a change to openstack/oslo-specs: Add use-events-for-error-wrapping  https://review.openstack.org/10530601:09
openstackgerritMichael Bayer proposed a change to openstack/oslo.db: Implement exception interception and filtering layer  https://review.openstack.org/10530701:17
harlowjazzzeek i think boris-42 likely is a good candiate, any others that have worked on oslo.db01:18
zzzeekyup01:18
zzzeeki have  a lot of work getting all the pep8 stuff fixed :)01:18
zzzeekoddly, i have flake8 turned on here....01:18
zzzeekid love to get this stuff happening when i get a PR but bitbucket doesnt have much of a PR api yet01:19
harlowja:) good ole pep8, ha01:20
zzzeekwell imports in alphabetical order isnt exaclty pep8 i think01:20
harlowjaya, its openstack special01:22
harlowjaspecial sauce01:22
zzzeekok so, ordering is like:01:26
zzzeekfrom oslo.db.openstack.common.gettextutils import _LW01:26
zzzeekfrom oslo.db.openstack.common import timeutils01:26
zzzeekfrom oslo.db import options01:27
zzzeekmeaning, take all the tokens together despite the word “import” ?01:27
zzzeeki think this was like this01:27
zzzeekyeah im getting pep8 failures for other code hre01:27
openstackgerritMichael Bayer proposed a change to openstack/oslo.db: Implement exception interception and filtering layer  https://review.openstack.org/10530701:28
harlowjazzzeek :)01:30
harlowjazzzeek u can download https://review.openstack.org/#/c/68988/ if u want01:30
zzzeekid have to figure out how to run their pep8-er on just my diff01:30
harlowjaor examine it if u want01:30
harlowjai could never remember the import order, so i just made a tool, ha01:31
zzzeekyeah, “tools” to fix pep8, what an idea!01:31
harlowja;)01:31
zzzeeki found this https://github.com/hhatto/autopep801:31
zzzeekbut of course it makes mistakes01:31
harlowjaya thats the problem with the 'auto' part01:31
harlowjamine never makes mistakes, ha01:31
zzzeekit works pretty well, better than this other one i used to use01:31
harlowjaya, i just made a small tool to fix the import oredering stuffs,01:32
*** liusheng has joined #openstack-oslo01:32
harlowjathe way i know remembre to do it is to convert 'from oslo.db.openstack.common.gettextutils import _LW' -> oslo.db.openstack.common.gettextutils._LW for all imports then sort them in your brainnzz01:32
zzzeeki re-uploaded my blueprint to be a little less harsh on the existing code :)01:32
harlowjacool01:33
harlowjaanother thing that i've made recently zzzeek  (u may or may not find it useful) is https://github.com/harlowja/remote_tox01:33
harlowjaif u setup a cluster of vms that can act as slaves that thing will send the code to somewhere else (one of those slaves) and run tox there, lol01:33
zzzeekum OK :)01:34
zzzeekwant to write a thing for my jenkins to run pep8 when i get a PR :)01:34
harlowjahmmm01:34
zzzeekwhos your openstack sponsor co01:34
harlowjamove your thing over to stackforge ;)01:34
zzzeekheh01:34
harlowjazzzeek yahoo01:34
zzzeekthat would just prove all the “oh theyre just going to take over SQLAlchemy” naysayers correc01:35
zzzeekcorrect01:35
zzzeekwow yahoo.   i have never met  yahoo employee01:35
harlowjalol01:35
zzzeekand ive been in this game since ‘9501:35
harlowjafirst time for everything01:35
zzzeekwhen yahoo was the only game in town01:35
zzzeekthey were like google01:35
zzzeekwow!  the yahoo guys!  they are so hooked !01:35
harlowjaya, back in them olden-days01:35
zzzeekwow now lets go to altavista to search for something!01:36
harlowjadef, altavista was my fav01:36
zzzeekahha you are an olde01:36
harlowjanot that much, ha01:36
harlowjamedium olde01:36
harlowjanot olde olde01:36
zzzeekyou were literate in the 90’s olde01:37
harlowja:)01:38
harlowjayes01:38
*** joesavak has joined #openstack-oslo01:38
zzzeekbut not, “i saw the original star wars in 77” olde01:38
harlowjaright, not that far back :)01:38
zzzeeka long time ago01:39
zzzeekin a decade far far away01:39
harlowjaya, back then when people had to walk to school barefoot01:39
zzzeekwe did01:39
harlowjauphill01:39
harlowjaboth ways uphill01:39
harlowja* which may not seem possible, but it was, ha01:39
zzzeekour town was designed by mc escher01:40
harlowjayup, youngins now got it easy, only 1 way uphill01:41
zzzeekim told kids cant even walk down the street anymore unattended01:41
zzzeekif you leave your kid in the car for 5 minutes you can get arrested or something01:41
zzzeekthis is very surprising to me01:41
harlowjaya, i used to live in my car, for days, kids these days01:42
harlowjacan't even handle 5 minutes01:42
harlowjahaha01:42
zzzeekwell if you’re younger than star wars age not sure if you recall, the seats were these giant benches and the seatbelts were only in the front01:42
zzzeekand only a crazy person used them01:42
harlowjawith horses?01:43
zzzeekyeah01:43
zzzeekand i waited in the car all the time, who cared01:43
harlowjaya, without a/c too, jeez01:44
zzzeeki actually got a download of the star wars movies that I *think* are the 1981 release01:44
harlowjathe only a/c u got was the horse flipping its tail01:44
zzzeekso they are largely their old form01:44
harlowjanone of that computer crap messing up the movie01:46
harlowjadamn computer crap01:46
harlowjalol01:46
*** mriedem has quit IRC01:55
*** zzzeek has quit IRC01:55
*** mriedem has joined #openstack-oslo02:00
*** arnaud__ has quit IRC02:03
*** zhiyan_ is now known as zhiyan02:08
*** joesavak has quit IRC02:09
openstackgerritJoshua Harlow proposed a change to openstack/oslo-specs: Add a redis backed job/jobboard  https://review.openstack.org/10529802:21
openstackgerritAlex Xu proposed a change to openstack/oslo-specs: Support policy configuration directories  https://review.openstack.org/10415702:43
*** SridharG has joined #openstack-oslo02:47
*** liusheng has quit IRC02:51
*** liusheng has joined #openstack-oslo02:53
*** mriedem has left #openstack-oslo02:56
*** mriedem has quit IRC02:57
*** zzzeek has joined #openstack-oslo03:01
*** dstanek_zzz is now known as dstanek03:05
*** zzzeek has quit IRC03:13
*** SridharG has quit IRC03:13
*** amotoki has joined #openstack-oslo03:14
*** dims has quit IRC03:24
*** arnaud__ has joined #openstack-oslo03:30
openstackgerritAlex Xu proposed a change to openstack/oslo-specs: Support policy configuration directories  https://review.openstack.org/10415704:21
*** ajc_ has joined #openstack-oslo04:25
openstackgerritAdrian Otto proposed a change to openstack-dev/pbr: Switch from pypi.python.org to pypi.orpestack.org  https://review.openstack.org/10534404:27
*** praneshp has quit IRC04:43
*** SridharG has joined #openstack-oslo04:45
*** dstanek is now known as dstanek_zzz04:55
*** dims has joined #openstack-oslo04:58
*** dims has quit IRC05:02
*** praneshp_ has joined #openstack-oslo05:11
*** dstanek_zzz is now known as dstanek05:29
*** ildikov has joined #openstack-oslo05:30
*** harlowja is now known as harlowja_away05:42
openstackgerritJoshua Harlow proposed a change to openstack/oslo-specs: Add a redis backed job/jobboard  https://review.openstack.org/10529805:54
*** dstanek is now known as dstanek_zzz05:55
*** dims has joined #openstack-oslo05:58
openstackgerritJoshua Harlow proposed a change to openstack/oslo-specs: Add a redis backed job/jobboard  https://review.openstack.org/10529805:59
*** dims has quit IRC06:03
openstackgerritAlex Xu proposed a change to openstack/oslo-incubator: [WIP] Add support for policy configration directories  https://review.openstack.org/10536206:08
openstackgerritAlex Xu proposed a change to openstack/oslo-specs: Support policy configuration directories  https://review.openstack.org/10415706:13
openstackgerritAlex Xu proposed a change to openstack/oslo-incubator: [WIP] Add support for policy configration directories  https://review.openstack.org/10536206:14
openstackgerritAlex Xu proposed a change to openstack/oslo-incubator: [WIP] Add support for policy configration directories  https://review.openstack.org/10536206:44
*** nacim has quit IRC06:51
*** AAzza_afk is now known as AAzza06:53
*** dims_ has joined #openstack-oslo06:59
*** dims_ has quit IRC07:04
*** pcm_ has quit IRC07:05
*** pcm_ has joined #openstack-oslo07:06
*** HenryG has quit IRC07:07
*** tkelsey has joined #openstack-oslo07:18
*** rmcall has quit IRC07:19
*** rmcall has joined #openstack-oslo07:20
*** AAzza is now known as AAzza_afk07:23
*** pblaho has joined #openstack-oslo07:23
*** praneshp has joined #openstack-oslo07:27
*** praneshp_ has quit IRC07:29
*** rdopieralski has joined #openstack-oslo07:38
*** markmc has joined #openstack-oslo07:40
*** ihrachyshka has joined #openstack-oslo07:48
*** nacim has joined #openstack-oslo08:00
*** flaper87|afk is now known as flaper8708:06
openstackgerritIlya Pekelny proposed a change to openstack/oslo.db: Add a base test case for DB schema comparison  https://review.openstack.org/9339808:14
boris-42markmc hi, sorry for 100500 pings but08:22
boris-42markmc could you pls at least say when I can expect review for my spec, e.g. in 2-3 weeks (and I won't ping you these 3 weeks)08:22
boris-42markmc thanks08:23
openstackgerritAlex Xu proposed a change to openstack/oslo-incubator: [WIP] Add support for policy configration directories  https://review.openstack.org/10536208:23
*** ildikov has quit IRC08:23
*** dims has joined #openstack-oslo08:28
*** dims has quit IRC08:33
openstackgerritAlex Xu proposed a change to openstack/oslo-incubator: [WIP] Add support for policy configration directories  https://review.openstack.org/10536208:35
openstackgerritIlya Pekelny proposed a change to openstack/oslo.db: Implementation Alembic as migration engine  https://review.openstack.org/9996508:38
*** dstanek_zzz is now known as dstanek08:40
openstackgerritAlex Xu proposed a change to openstack/oslo-incubator: [WIP] Add support for policy configration directories  https://review.openstack.org/10536208:52
*** stannie has joined #openstack-oslo09:04
*** HenryG has joined #openstack-oslo09:05
*** dstanek is now known as dstanek_zzz09:05
*** arnaud__ has quit IRC09:09
*** tsufiev has joined #openstack-oslo09:18
tsufievhi there! how do you run unit tests in oslo incubator?09:19
tsufievi've some some weird error during running them with tox: http://paste.openstack.org/show/85642/09:19
*** ajc_ has quit IRC09:20
tsufievdoes anyone know what to do with it?09:21
*** i159 has joined #openstack-oslo09:22
*** dims has joined #openstack-oslo09:29
*** ildikov has joined #openstack-oslo09:30
*** dims has quit IRC09:33
thervetsufiev, It's not super weird :). mysql_config is not found, you should install the package providing it09:33
tsufievtherve, there are not so many mysql_config packages in pip index :-/09:35
tsufievtimur@tsufiev-pc:~/develop/oslo-incubator$ pip search mysql|grep config -> opengever.mysqlconfig     - configures the mysql as database engine09:35
tsufievis that one i should use?09:36
therveNo it's not a python package, it's a mysql package09:36
therveTypically libmysqlclient-dev09:37
*** praneshp has quit IRC09:42
tsufievtherve, thank you, it was that package indeed :)09:43
*** alexpilotti has joined #openstack-oslo10:00
*** yamahata has quit IRC10:02
*** oomichi has quit IRC10:04
*** viktors|afk has quit IRC10:13
*** alexpilotti has joined #openstack-oslo10:37
*** zhiyan is now known as zhiyan_10:46
*** zhiyan_ is now known as zhiyan10:47
*** nacim has quit IRC10:53
*** AAzza_afk is now known as AAzza11:01
*** dims_ has joined #openstack-oslo11:02
openstackgerritTimur Sufiev proposed a change to openstack/oslo-incubator: Enhance versionutils.deprecated to work with classes  https://review.openstack.org/10491611:04
openstackgerritgaryk proposed a change to openstack/oslo.vmware: Add support for using extensions  https://review.openstack.org/10091111:05
rdopieralskianybody familiar with oslo.messaging?11:06
rdopieralskiI'd like to ask for some advice -- whether it would make sense to try and make a websocket transport for it.11:08
*** AAzza is now known as AAzza_afk11:16
*** ihrachyshka has quit IRC11:23
*** ihrachyshka has joined #openstack-oslo11:26
openstackgerritTimur Sufiev proposed a change to openstack/oslo-incubator: Enhance versionutils.deprecated to work with classes  https://review.openstack.org/10491611:31
openstackgerritA change was merged to openstack/oslo-specs: Add rootwrap-daemon-mode blueprint  https://review.openstack.org/9461311:40
YorikSardhellmann: Good morning. Thanks a lot :)11:43
dhellmannYorikSar: I'm not sure the milestone or priority are right for the bp, so update those if you feel they should be.11:44
*** dstanek_zzz is now known as dstanek11:45
YorikSardhellmann: I can't change the priority (and not sure if it's necessary), milestone is fine.11:46
dhellmannYorikSar: ok, I can change it for you if you want11:46
YorikSardhellmann: Since I have code almost finished anyway, priority should not be a problem. So Low is fine for me11:47
dhellmannYorikSar: ok11:48
openstackgerritA change was merged to openstack/oslo-specs: Add basic support for conditional execution  https://review.openstack.org/9894611:50
*** SridharG has quit IRC12:00
*** markmcclain has joined #openstack-oslo12:11
*** markmcclain1 has joined #openstack-oslo12:13
*** markmcclain has quit IRC12:16
boris-42dhellmann markmc so guys could you provide some opinion about my spec https://review.openstack.org/#/c/103825/12:18
boris-42dhellmann markmc I really don't see any super big reason to block this...12:18
openstackgerritYuriy Taraday proposed a change to openstack/oslo.rootwrap: Add an option to run rootwrap as a daemon  https://review.openstack.org/8179812:23
*** viktors has joined #openstack-oslo12:24
*** dims_ has quit IRC12:26
*** dims_ has joined #openstack-oslo12:26
*** dims_ has quit IRC12:27
*** dims_ has joined #openstack-oslo12:28
*** nacim has joined #openstack-oslo12:30
*** morganfainberg is now known as morganfainberg_Z12:46
ihrachyshkagus: around? I have a question re oslo.db12:46
openstackgerritYuriy Taraday proposed a change to openstack/oslo.rootwrap: Add an option to run rootwrap as a daemon  https://review.openstack.org/8179812:54
*** dstanek is now known as dstanek_zzz12:55
*** pblaho_ has joined #openstack-oslo13:04
*** pblaho has quit IRC13:04
*** markmcclain1 has quit IRC13:06
viktorspblaho_: around?13:09
pblaho_viktors: meeting... will you have time later?13:09
viktorspblaho_: sure13:10
pblaho_viktors: thnx13:10
*** bknudson has joined #openstack-oslo13:13
*** mriedem has joined #openstack-oslo13:13
*** pcm_ has quit IRC13:17
*** HenryG has quit IRC13:17
*** zzzeek has joined #openstack-oslo13:20
*** jecarey has quit IRC13:23
*** zzzeek has quit IRC13:34
openstackgerritTom Cammann proposed a change to openstack/oslo.config: Check config default value is correct type  https://review.openstack.org/10545013:38
viktorsbnemec: around?13:39
openstackgerritValeriy Ponomaryov proposed a change to openstack/oslo-incubator: Fix exception message in openstack.common.processutils.execute  https://review.openstack.org/10545213:42
openstackgerritRadoslav Gerganov proposed a change to openstack/oslo.vmware: Refactor the PBM support  https://review.openstack.org/10248013:42
*** SridharG has joined #openstack-oslo13:47
bnemecviktors: For a bit13:55
*** pblaho_ has quit IRC13:59
*** jecarey has joined #openstack-oslo14:01
openstackgerritTom Cammann proposed a change to openstack/oslo.config: Check config default value is correct type  https://review.openstack.org/10545014:02
*** pblaho_ has joined #openstack-oslo14:03
*** pblaho_ is now known as pblaho14:05
pblahoviktors: I am here and available14:05
*** rdopieralski has quit IRC14:05
viktorspblaho: I have a question as for your patch https://review.openstack.org/#/c/99670/ (Changes import orders to pass H305 check)14:06
viktorsis it still in WIP state?14:06
*** jaosorior has joined #openstack-oslo14:07
pblahoviktors: I am not sure about how hacking discussion ended....14:08
pblahoviktors: I will check and decide14:08
viktorspblaho: I found,that patch https://review.openstack.org/#/c/100231/ (revert hacking to 0.8 series) was abandoned, so we can move on14:10
viktorspblaho: ok, thanks14:10
pblahoviktors: yeah, just found it too14:10
*** flaper87 is now known as flaper87|afk14:11
pblahoviktors: ok... I will change that patch to previous version as rpodolyaka suggested .. it looks more reasonable to me to let that imports be inside of function14:12
viktorspblaho: ok14:12
*** dstanek_zzz is now known as dstanek14:13
*** pcm_ has joined #openstack-oslo14:14
*** pcm__ has joined #openstack-oslo14:16
*** pcm_ has quit IRC14:20
*** flaper87|afk is now known as flaper8714:34
ihrachyshkadhellmann: hey. I need to pass some options to underneath sql driver (specifically, raise_on_warnings=False). I may add those options to connection string, but I think it should be default for the driver I attempt to use. Is there a place in oslo.db to put default values for those options?14:35
boris-42ihrachyshka hi14:42
boris-42ihrachyshka probably you face something like this http://paste.openstack.org/show/85680/14:42
boris-42ihrachyshka it's from keystone when it tries to send any notification14:42
*** ihrachyshka has quit IRC14:43
*** pcm__ has quit IRC14:46
*** james_li has joined #openstack-oslo14:51
*** alexpilotti has quit IRC14:55
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Changes import orders to pass H305 check  https://review.openstack.org/9967014:56
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Fixes whitespaces between imports to pass H307  https://review.openstack.org/9967114:56
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Fixes comments to pass E265 check.  https://review.openstack.org/9967614:56
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Uses keyword params for i18n string to pass H703  https://review.openstack.org/9967414:56
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Fixes indentations to pass E128 check.  https://review.openstack.org/9967514:56
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Updates one line docstring with dot to pass H402  https://review.openstack.org/9967214:56
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Adds empty line to multilines docs to pass H405  https://review.openstack.org/9967314:56
openstackgerritA change was merged to openstack/oslo.messaging: Replaced 'e.g.' with 'for example'  https://review.openstack.org/10502814:59
*** ildikov has quit IRC14:59
*** zhiyan is now known as zhiyan_15:00
*** mriedem1 has joined #openstack-oslo15:01
pblahodo anyone has idea what bug I should recheck this https://review.openstack.org/#/c/99639/ with?15:02
*** mriedem has quit IRC15:02
*** ildikov has joined #openstack-oslo15:02
openstackgerritmouad benchchaoui proposed a change to openstack/oslo.messaging: Fix reconnect race condition with RabbitMQ cluster  https://review.openstack.org/10315715:09
openstackgerritA change was merged to openstack/oslo.config: Replaced 'e.g.' with 'for example'  https://review.openstack.org/10508615:09
*** tkelsey has quit IRC15:19
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Fixes comments to pass E265 check.  https://review.openstack.org/9967615:24
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Uses keyword params for i18n string to pass H703  https://review.openstack.org/9967415:24
openstackgerritPetr Blaho proposed a change to openstack/oslo.db: Fixes indentations to pass E128 check.  https://review.openstack.org/9967515:24
*** AAzza_afk is now known as AAzza15:25
viktorsbnemec: ping15:27
*** zzzeek has joined #openstack-oslo15:30
bnemecviktors: ack15:32
viktorsbnemec: hi! I want to ask you to look at patch, which compares SQLA models definitions with actual DB state - https://review.openstack.org/#/c/93398/15:34
viktorsbnemec: does i159 fixed your notes?15:35
bnemecviktors: looking15:35
*** bknudson has quit IRC15:38
bnemecviktors: Yeah, looks like all of the comments were addressed.15:38
viktorsbnemec: thank you!15:40
viktorsbnemec: this was a long running patch :)15:40
bnemecviktors: Yeah15:40
bnemecDefinitely a \o/ moment :-)15:40
viktorsbnemec: I want to improve this feature in OS projects, but I'm not really sure, when should we release oslo.db15:42
viktorsmaybe dhellmann knows :)15:43
bnemecYeah, he's the release guru. :-)15:43
viktors:)15:43
bnemecI don't see any reason not to release oslo.db with this added though.  It's a significant enough change and we need a release to start using it.15:43
viktorsagreed15:44
dhellmannviktors, bnemec : yes, you can release a new alpha with that change. I think the ironic team at least is waiting for that, aren't they?15:45
dhellmannmaybe that's not the patch they're waiting for15:45
viktorsdhellmann: they wait also one more chain - https://review.openstack.org/#/c/93424/ (Opportunistic migration tests)15:46
*** tsekiyama has joined #openstack-oslo15:46
viktorsso reviewers are welcomed :)15:46
* bnemec is reviewing CSS changes again15:46
* bnemec wonders what he did wrong in a past life to deserve this ;-)15:46
dhellmannbnemec: maybe we should find some folks on the horizon ui team to look at that stuff? :-)15:47
bnemecdhellmann: Probably. :-)15:47
viktorsdhellmann: should I send a email to `-dev` mail list about the new oslo.db release?15:49
dhellmannviktors: yes, for each release we need to announce the version and what has changed15:50
dhellmannviktors: I've been using the same basic outline in the messages I've sent for releases, and you could use one of those as an example15:51
viktorsdhellmann: ok, thanks, will do.15:51
dhellmannviktors: did we get you set up with a gpg key for signing the release tags?15:51
viktorsdhellmann: yes15:51
dhellmannok, good15:51
openstackgerritA change was merged to openstack/oslosphinx: Fixed link text colour for incubation variant  https://review.openstack.org/10523315:51
dhellmannviktors: oh, I said "alpha" release before but you're doing non-alpha releases 0.x for oslo.db, right?15:52
viktorsdhellmann: I suppose to make a new release tomorrow morning, if we don't have any timestamps for it15:52
viktorsdhellmann: 0.3.0 I suppose15:52
dhellmannyes15:52
dhellmanndo you have an etherpad with the release notes in it, like for the other libs?15:52
dhellmannfor example: https://etherpad.openstack.org/p/oslo-i18n-1.0.015:52
dhellmannviktors: you can use https://etherpad.openstack.org/p/oslo-db-1.0.015:53
viktorsdhellmann: ok, wikk do15:53
viktors*will15:53
dhellmannviktors: ok, thanks15:53
viktorsdhellmann: so just to clarify - tomorrow is ok for new release?15:54
dhellmannviktors: yes, that's fine. I try not to release new libraries on fridays because I don't want to have to deal with anything that breaks with the release over a weekend. So I have been trying to make releases on Monday or Tuesday morning in my time zone.15:56
*** praneshp has joined #openstack-oslo15:57
viktorsdhellmann: ok, thanks a lot!15:57
dhellmannviktors: thank *you* for doing the hard work :-)15:57
*** viktors is now known as viktors|afk16:00
*** praneshp has quit IRC16:03
*** praneshp has joined #openstack-oslo16:10
*** pblaho has quit IRC16:12
*** ildikov has quit IRC16:22
openstackgerritTom Cammann proposed a change to openstack/oslo.config: Check config default value is correct type  https://review.openstack.org/10545016:24
*** alexpilotti has joined #openstack-oslo16:26
*** alexpilotti has quit IRC16:32
openstackgerritMark McLoughlin proposed a change to openstack/oslo.messaging: Add release notes for 1.4.0.0a2/a3  https://review.openstack.org/10551516:32
openstackgerritA change was merged to openstack/oslo.db: Add a base test case for DB schema comparison  https://review.openstack.org/9339816:34
zzzeekOK so.   when i want oslo.db tests to hit MySQL, I just make a MySQL schema with that magic name / username ?16:35
i159zzzeek: are you talking about `openstack_citest` magic url?16:37
zzzeekyes16:37
i159Yes, CI has databases and users with this names in both of Postgres and MySQL16:38
i159zzzeek: Yes, CI has databases and users with this names in both of Postgres and MySQL16:38
zzzeekthe “skip” in the test suite is jst looking for that URL right16:38
zzzeekyeah16:40
i159zzzeek: yes, we assume that a user can don't have this database on local machine16:40
zzzeeknm i got it16:40
zzzeekthe code has been cleaned up recently :)16:40
i159zzzeek: great! And note, that `openstack_citest` user is superuser and it can create and dop new databases16:41
zzzeeki159: any reason that utils.is_backend_avail() doesnt accept jut a striaght SQLAlchemy URL ?16:41
zzzeekId like to support an option like “export OSLODB_TEST_URL=postgresql://foo:bar@host/test; tox -e py27”16:42
i159zzzeek: maybe I didn't got your message, but something very similar is implemented now16:43
openstackgerritA change was merged to openstack/oslo-incubator: Fix exception message in openstack.common.processutils.execute  https://review.openstack.org/10545216:44
i159zzzeek: please see this module https://github.com/openstack/oslo.db/blob/master/oslo/db/sqlalchemy/provision.py#L14316:44
*** arnaud__ has joined #openstack-oslo16:44
zzzeeki159: OK but in OpportunisticFixture, we are fixed:     DBNAME = PASSWORD = USERNAME = 'openstack_citest'16:45
zzzeeki159: i will propose somethign ilke thijs:  export OSLODB_OPPORTUNISTIC_DBS=“postgreql://foo:bar@host/test mysql://foo:bar@host/test oracle://dsn”16:46
zzzeeki159: OpportunisticFixture will gather these up and do the right thing16:46
zzzeeki159: not to mention that the host here is hardcoded to “localhost"16:47
i159zzzeek: yes, because CI has it. Every test run in its temporary database, citest credentials is just an entry point16:48
zzzeeki159: OK, I am not proposing any change to any of that.  I am proposing, making the test suite more flexible when it is run in other places, like, my workstation, or, in some environemnt testing special database backends that arent on localhost, or tests that can run against any backend, or tests that dont use hostname in the URL16:49
*** mkoderer has quit IRC16:52
i159zzzeek: I think you can customize your own OS_TEST_DBAPI_ADMIN_CONNECTION in your environment. I can't see how should we change existing code to provide this possibility, and I can't see any reason to implement it, because it looks to me like very personal customization. But you can discuss it with rpodolyaka and viktors.16:54
zzzeeki159: what if i want to write a test that runs against oracle?16:54
zzzeeki159: not possible. Oracle doesnt have “localhost” in its URL.16:54
zzzeeki159: is that a reason ?16:54
i159zzzeek: I think it will be difficult. I may be wrong, but I don't remember any places in our code with Oracle support. But the reason really good =)16:56
zzzeeki159: it is super easy.    just need to open this stuff up.  dont worry ill do it :)16:56
i159zzzeek: Ok, great : )16:57
zzzeeki159: keep in mind, SQLAlchemy’s test suite runs against *any* backend, it exports test suites that are run by 3rd party drivers, it can run tests repeatedly against many DBAPIs / drivers at the same time, it does many many things in this regard that are way beyond what oslo.db needs16:57
zzzeeki159: so…I konw how to do it :)16:58
i159zzzeek: Cool! I'm interested in review, keep me in, please.16:59
*** flaper87 is now known as flaper87|afk17:00
zzzeeki159: i think also the “create a schema for every test” thing might not be viable on some systems.   if we are doing DB-connected tests with this thing, we should be able to hit systems like DB2 and similar where creating new DBs might not be viable.  it might have to be able to run in different modes.17:03
i159zzzeek: the author of this approach is rpodolyaka, you should discuss it with him, I'm sure he has iron arguments ; )17:06
zzzeeki159: i know why it is like this17:06
zzzeeki159: and i think this appraoch is good but i want to open it up some17:06
zzzeeki159: its much easier to read now than it was a few weeks ago in fact17:06
*** dstanek is now known as dstanek_zzz17:07
zzzeeki159: the test system we have here needs to scale out to be used by any project in many different ways17:07
i159zzzeek: Sounds awesome! I know very little about DB2, Oracle, so I'll follow your changes and help you with it as possible.17:09
zzzeekive subscribed you17:11
*** i159 has quit IRC17:13
*** james_li has quit IRC17:23
*** mriedem has joined #openstack-oslo17:25
*** dstanek_zzz is now known as dstanek17:28
*** mriedem1 has quit IRC17:29
*** harlowja_away is now known as harlowja17:29
*** tmcpeak has joined #openstack-oslo17:34
openstackgerritMichael Bayer proposed a change to openstack/oslo.db: Implement exception interception and filtering layer  https://review.openstack.org/10530717:34
*** dims_ has quit IRC17:41
*** AAzza is now known as AAzza_afk17:45
*** pblaho has joined #openstack-oslo17:58
openstackgerritMark McLoughlin proposed a change to openstack/oslo.config: Hook IPOpt class into the docs  https://review.openstack.org/10553817:59
openstackgerritMark McLoughlin proposed a change to openstack/oslo.config: Hook up config fixture docs  https://review.openstack.org/10553917:59
openstackgerritMark McLoughlin proposed a change to openstack/oslo.config: Add release notes for 1.3.0 and 1.4.0.0a1/2  https://review.openstack.org/10554017:59
*** AAzza_afk is now known as AAzza18:03
*** dims_ has joined #openstack-oslo18:08
*** dims_ has quit IRC18:12
*** tmcpeak has left #openstack-oslo18:13
*** dims_ has joined #openstack-oslo18:16
*** arnaud__ has quit IRC18:16
*** alexpilotti has joined #openstack-oslo18:18
openstackgerritAlexei Kornienko proposed a change to openstack/oslo.messaging: Moved main loop to server class  https://review.openstack.org/10498318:21
*** mkoderer has joined #openstack-oslo18:22
Alexei_9871markmc: Hi please tell me if you have some time to chat18:22
*** dstanek is now known as dstanek_zzz18:26
*** james_li has joined #openstack-oslo18:33
*** AAzza is now known as AAzza_afk18:37
*** pblaho has quit IRC18:42
*** markmcclain has joined #openstack-oslo18:59
*** markmcclain1 has joined #openstack-oslo19:00
*** markmcclain has quit IRC19:03
*** arnaud has joined #openstack-oslo19:08
*** dstanek_zzz is now known as dstanek19:11
openstackgerritAlexei Kornienko proposed a change to openstack/oslo.messaging: Moved main loop to server class  https://review.openstack.org/10498319:15
*** SridharG has quit IRC19:25
*** ildikov has joined #openstack-oslo19:28
*** arnaud has quit IRC19:32
*** markmcclain has joined #openstack-oslo19:36
*** markmcclain1 has quit IRC19:37
*** dstanek is now known as dstanek_zzz19:38
james_liHi All, can someone look at this new bug https://bugs.launchpad.net/oslo.messaging/+bug/1339285  ?19:42
*** jecarey has quit IRC19:49
*** james_li has quit IRC20:05
*** james_li has joined #openstack-oslo20:15
*** jecarey has joined #openstack-oslo20:16
*** dstanek_zzz is now known as dstanek20:24
*** arnaud has joined #openstack-oslo20:27
*** arnaud__ has joined #openstack-oslo20:27
*** jecarey has quit IRC20:33
*** mkoderer has quit IRC20:42
openstackgerritA change was merged to openstack/oslo.messaging: Add release notes for 1.4.0.0a2/a3  https://review.openstack.org/10551520:52
*** james_li has quit IRC21:04
*** AAzza_afk is now known as AAzza21:05
openstackgerritMichael Bayer proposed a change to openstack/oslo.db: Implement exception interception and filtering layer  https://review.openstack.org/10530721:05
*** markmcclain has quit IRC21:07
*** markmc has quit IRC21:12
*** markmc has joined #openstack-oslo21:12
*** AAzza is now known as AAzza_afk21:13
*** arnaud__ has quit IRC21:15
*** arnaud has quit IRC21:15
*** markmc has quit IRC21:16
*** arnaud has joined #openstack-oslo21:29
*** tmcpeak has joined #openstack-oslo21:34
openstackgerritAlexei Kornienko proposed a change to openstack/oslo.messaging: Moved main loop to server class  https://review.openstack.org/10498321:37
*** stannie has quit IRC21:40
*** mriedem has left #openstack-oslo21:50
*** mriedem has quit IRC21:50
*** arnaud has quit IRC21:50
*** dstanek is now known as dstanek_zzz21:51
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Add a timing listener that also prints the results  https://review.openstack.org/10560421:54
*** dims__ has joined #openstack-oslo21:55
*** dims_ has quit IRC21:56
*** tmcpeak has left #openstack-oslo21:57
*** dstanek_zzz is now known as dstanek23:20
*** alexpilotti has quit IRC23:35
*** dstanek is now known as dstanek_zzz23:38
openstackgerritMichael Bayer proposed a change to openstack/oslo.db: Implement exception interception and filtering layer  https://review.openstack.org/10530723:39
openstackgerritJames E. Blair proposed a change to openstack/pycadf: Remove docutils pin  https://review.openstack.org/10562623:42
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Avoid comparison to active qsize when spawning new green workers  https://review.openstack.org/10563323:52
boris-42zzzeek around?23:58
openstackgerritJoshua Harlow proposed a change to openstack/taskflow: Avoid comparison to active qsize when spawning new green workers  https://review.openstack.org/10563323:59

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