Tuesday, 2014-11-25

*** dims has quit IRC00:03
*** dims has joined #openstack-oslo00:03
*** gordc has quit IRC00:05
*** dims has quit IRC00:08
openstackgerritJoshua Harlow proposed openstack/taskflow: Add a claims listener that connects job claims to engines  https://review.openstack.org/13692300:12
*** dims has joined #openstack-oslo00:21
*** ftcjeff has joined #openstack-oslo00:23
*** tsekiyam_ has joined #openstack-oslo00:29
*** tsekiya__ has joined #openstack-oslo00:30
*** dims has quit IRC00:31
*** dims has joined #openstack-oslo00:31
*** tsekiyama has quit IRC00:32
*** ftcjeff has quit IRC00:32
*** tsekiyam_ has quit IRC00:34
*** ftcjeff has joined #openstack-oslo00:34
*** ftcjeff has quit IRC00:35
*** dims has quit IRC00:36
*** jeckersb is now known as jeckersb_gone00:37
openstackgerritSurojit Pathak proposed openstack-dev/hacking: Fixing broken while loop in imports.py  https://review.openstack.org/13651700:44
*** ViswaV has joined #openstack-oslo00:55
ViswaV@zzzeek  . Hi , my name is Viswa. @Harlowja from Taskflow project pointed me to you.00:56
zzzeekhello00:56
ViswaVWe are running into a weird error with alembic.00:57
harlowjasomething alembic related i think :)00:57
ViswaV2014-11-25 00:20:59.981 12367 TRACE taskflow.persistence.backends.impl_sqlalchemy ProgrammingError: (ProgrammingError) (1064, 'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'"alembic_version"\' at line 1') 'DESCRIBE "alembic_version"' ()00:57
ViswaVAnd we narrowed down the possible culprit to sql_mode being set to ANS_QUOTES on our production server.00:57
zzzeeklooks like it00:57
zzzeekbut shoudl still work00:58
ViswaVThe error did not happen on our test server. But as soon as we set the sql_mode to same value as prod, we could reproduce the error.00:58
zzzeekwhat is the actual sql mode setting00:58
ViswaVANSI_QUOTES00:58
zzzeekso DESCRIBE “alembic_version” is ANSI_QUOTES00:59
ViswaVyou want me to run DESCRIBE “alembic_version”  and give you the output?00:59
zzzeekwell more I’m wondering if your app, or oslo.db, is setting SQL_MODE *after* SQLAlchemy has already detected it01:00
zzzeekthat seems like what is happening here01:01
zzzeekwhats the context of applciations, is this oslo.db, what is the connectivity pattern01:01
harlowjanot oslo.db (currently)01:01
ViswaVWe just use taskflow library.  I don't think our code is setting the sql_mode.01:01
zzzeekbrcause oslo.db sets up SQL_MODE and i think it woudl blow away ANSI_QUOTES01:02
harlowjakk, taskflow currently is setting TRADITIONAL unless provided01:02
zzzeekharlowja: theres your problem01:02
harlowjakk01:02
zzzeekif you run w/ echo=True you will see SHOW VARIABLES LIKE 'sql_mode' in your log01:03
zzzeekthat is what SQLAlchemy is using01:03
zzzeekif your libray then sets it to TRADITIONAL, boom01:03
harlowjaViswaV ya, if this is it, can just override this to not use that01:03
ViswaVGood catch. @harlowja is there a way to force taskflow not to override,  or tell it to override with ANSI_QUOTES mode?01:03
harlowjaconf = {01:04
harlowja        "connection": "sqlite:////tmp/test.db",01:04
harlowja        'mysql_sql_mode': None,01:04
harlowja    }01:04
harlowjasomething like that01:04
harlowjashould do it01:04
ViswaVGot it. Let me give that a try.01:04
harlowjakk01:04
ViswaVThx Gentlemen. Will report back my findings.01:04
harlowjacools01:04
zzzeekSQLAlchemy might not give you a good shot at setting up this mode before it detects it.  I’d just not set it at all, and if you need to change SQL_MODE, try to preserve the quoting style01:05
harlowjasounds good to me01:06
harlowjai'll take out this mode setting then, seems safer to just let it happen 'naturally'01:06
zzzeekoslo.db does it witin first_connect as well as connect, to nail it before SQLAlcehmy does it for sure, and on every connection01:06
harlowjasince 0.6 i think?01:06
zzzeekharlowja: if youre using SQLA to render all SQL then yes definitely take it out01:06
harlowjak01:06
zzzeekharlowja: youd only want to set that if you have hardcoded SQL, and even then with ANSI_QUOTES the ` is still accepted01:06
harlowjano hardcoder stuff01:07
harlowja*hard coded, ha01:07
openstackgerritJoshua Harlow proposed openstack/taskflow: Remove default setting of 'mysql_traditional_mode'  https://review.openstack.org/13693801:09
harlowjasomeday i'll get to use oslo.db and its helpers around this, hopefully this cycle01:10
harlowjacut out that wart01:10
harlowja*well not wart, but code, haha01:10
*** jecarey has joined #openstack-oslo01:23
*** dims has joined #openstack-oslo01:42
lifelesszzzeek: btw I'm on sabbatical for about 6 weeks now, but AFAIK everything you need for your patches is landed and released upstream01:44
lifelesszzzeek: e.g. load_tests on the top level dir should just work01:44
*** sigmavirus24 is now known as sigmavirus24_awa01:53
*** dims has quit IRC02:00
*** arnaud___ has quit IRC02:00
*** dims has joined #openstack-oslo02:00
*** dims has quit IRC02:05
*** jecarey has quit IRC02:08
openstackgerritJoshua Harlow proposed openstack/taskflow: Move scheduler and completer classes to there own modules  https://review.openstack.org/13694402:15
*** tsekiya__ has quit IRC02:32
*** mtanino has quit IRC02:40
*** yamahata has joined #openstack-oslo02:57
openstackgerritJoshua Harlow proposed openstack/taskflow: Allow for atoms to fail and execution to continue  https://review.openstack.org/13695203:12
*** ftcjeff has joined #openstack-oslo03:33
ViswaVzzzeek and harlowja :    'mysql_sql_mode': None,   hint to the tasfklow library worked like a charm !  Thanks for the explanation of the potential problem and the fix . You guys saved my day :)  As harlowja mentioned, it might be good idea to modify Taskflow to not attempt to set the sql_mode at all by default unless specified and let the underlying stacks (sqlalchemy, oslo.db) take care of it. zzzeek do you happen to know what oslo.db sets the03:34
ViswaV sql_mode default to? Is that configurable?03:34
zzzeekViswaV: it does some games with it but i dont know that it changes the quoting mode03:34
zzzeekViswaV: however it does it in such a way taht its before SQLAlchemy grabs the value so shoudl be safe03:35
ViswaVok. thx03:35
*** arnaud___ has joined #openstack-oslo03:38
*** ftcjeff has quit IRC03:45
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695803:51
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695803:52
*** ViswaV has quit IRC03:53
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695803:54
*** sigmavirus24_awa is now known as sigmavirus2404:07
*** ViswaV has joined #openstack-oslo04:14
openstackgerritMike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli  https://review.openstack.org/13515004:15
*** ViswaV_ has joined #openstack-oslo04:16
*** ViswaV has quit IRC04:18
*** exploreshaifali has joined #openstack-oslo04:24
*** ViswaV_ has quit IRC04:29
*** ViswaV has joined #openstack-oslo04:34
*** exploreshaifali has quit IRC04:35
*** stevemar has quit IRC04:36
openstackgerritIan Wienand proposed openstack/oslo.config: Clear up MultiStrOpt and related documentation  https://review.openstack.org/13261304:37
*** oomichi has quit IRC04:38
*** ViswaV has quit IRC04:54
*** subscope_ has joined #openstack-oslo04:55
*** exploreshaifali has joined #openstack-oslo04:59
*** subscope_ has quit IRC05:25
*** oomichi has joined #openstack-oslo05:32
openstackgerritJoshua Harlow proposed openstack/taskflow: Allow for the notifier to provide a details_filter  https://review.openstack.org/13696905:37
*** sigmavirus24 is now known as sigmavirus24_awa05:44
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695805:59
*** exploreshaifali has quit IRC06:03
openstackgerritOpenStack Proposal Bot proposed openstack/oslo.db: Imported Translations from Transifex  https://review.openstack.org/13668406:04
*** renlt has joined #openstack-oslo06:06
openstackgerritOpenStack Proposal Bot proposed openstack/oslo.utils: Imported Translations from Transifex  https://review.openstack.org/13656606:14
*** zzzeek has quit IRC06:16
*** k4n0 has joined #openstack-oslo06:24
*** vigneshvar has joined #openstack-oslo06:25
*** vigneshvar has quit IRC06:33
*** _gryf has quit IRC06:54
*** harlowja is now known as harlowja_away07:01
*** exploreshaifali has joined #openstack-oslo07:03
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695807:37
*** e0ne has joined #openstack-oslo07:40
*** exploreshaifali has quit IRC07:43
openstackgerritJoshua Harlow proposed openstack/taskflow: Use a module level constant to provide the DEFAULT_LISTEN_FOR  https://review.openstack.org/13698307:51
*** e0ne has quit IRC07:53
*** e0ne has joined #openstack-oslo07:57
*** e0ne has quit IRC07:59
openstackgerritJoshua Harlow proposed openstack/taskflow: Add a claims listener that connects job claims to engines  https://review.openstack.org/13692308:01
*** e0ne has joined #openstack-oslo08:03
*** e0ne has quit IRC08:08
openstackgerritJoshua Harlow proposed openstack/taskflow: Add a claims listener that connects job claims to engines  https://review.openstack.org/13692308:08
*** e0ne has joined #openstack-oslo08:12
*** e0ne has quit IRC08:18
*** stannie has joined #openstack-oslo08:31
*** eezhova has quit IRC08:40
*** eezhova has joined #openstack-oslo08:41
*** i159 has joined #openstack-oslo08:47
*** yamahata has quit IRC09:11
*** ihrachyshka has joined #openstack-oslo09:18
*** andreykurilin_ has joined #openstack-oslo09:22
*** renlt has quit IRC09:25
*** e0ne has joined #openstack-oslo09:25
*** oomichi has quit IRC09:33
*** noelbk has quit IRC09:39
*** andreykurilin_ has quit IRC10:00
*** andreykurilin_ has joined #openstack-oslo10:00
openstackgerritIhar Hrachyshka proposed openstack/oslo-incubator: Add middleware.catch_errors shim for Kilo  https://review.openstack.org/13699910:02
ihrachyshkadhellmann: ^^ needed for oslo.middleware migration for neutron (and swift)10:03
*** andreykurilin_ has quit IRC10:05
*** andreykurilin_ has joined #openstack-oslo10:06
openstackgerritVictor Sergeyev proposed openstack/oslo.db: Ensure, handle_connect_error() close test connection  https://review.openstack.org/13700110:06
openstackgerritJulien Danjou proposed openstack/oslo.log: Remove unused NullHandler  https://review.openstack.org/13700210:10
*** vigneshvar has joined #openstack-oslo10:41
openstackgerritVictor Sergeyev proposed openstack/oslo.db: Ensure, handle_connect_error() close test connection  https://review.openstack.org/13700111:00
openstackgerritVictor Sergeyev proposed openstack/oslo.db: Ensure that create_engine() close test connection  https://review.openstack.org/13700111:01
*** andreykurilin_ has quit IRC11:12
*** k4n0 has quit IRC11:20
*** dims has joined #openstack-oslo11:20
*** vigneshvar has quit IRC11:27
*** vigneshvar has joined #openstack-oslo11:30
*** vigneshvar has quit IRC11:49
*** vigneshvar has joined #openstack-oslo12:02
*** arnaud___ has quit IRC12:08
*** pblaho has joined #openstack-oslo12:13
*** vigneshvar has quit IRC12:30
*** exploreshaifali has joined #openstack-oslo12:37
*** tedross has joined #openstack-oslo12:39
*** sreshetnyak has joined #openstack-oslo12:56
*** sreshetnyak has joined #openstack-oslo12:56
*** kgiusti has joined #openstack-oslo13:11
*** stannie has quit IRC13:12
*** arnaud___ has joined #openstack-oslo13:18
*** arnaud___ has quit IRC13:28
dimsHi all, anyone have experience hacking on mox3? https://bugs.launchpad.net/openstack-ci/+bug/139614413:36
openstackgerritMike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli  https://review.openstack.org/13515013:37
openstackgerritMike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli  https://review.openstack.org/13515013:39
*** gordc has joined #openstack-oslo13:40
*** sigmavirus24_awa is now known as sigmavirus2413:56
*** jeckersb_gone is now known as jeckersb13:56
*** dims has quit IRC13:57
*** yamahata has joined #openstack-oslo13:58
*** dims has joined #openstack-oslo13:58
*** ftcjeff has joined #openstack-oslo14:15
*** arnaud___ has joined #openstack-oslo14:24
*** mriedem has joined #openstack-oslo14:26
*** arnaud___ has quit IRC14:29
*** ftcjeff has quit IRC14:31
*** ftcjeff has joined #openstack-oslo14:33
*** jeckersb is now known as jeckersb_gone14:43
*** jeckersb_gone is now known as jeckersb14:48
*** mtanino has joined #openstack-oslo14:52
*** zz_jgrimm is now known as jgrimm15:03
*** tedross has left #openstack-oslo15:05
*** yamahata has quit IRC15:08
openstackgerritOleksii Zamiatin proposed openstack/oslo-specs:     blueprint: https://blueprints.launchpad.net/oslo.messaging/+spec/oslo-functional-testing-apps  https://review.openstack.org/13709415:13
openstackgerritOleksii Zamiatin proposed openstack/oslo-specs:     blueprint: https://blueprints.launchpad.net/oslo.messaging/+spec/oslo-functional-testing-apps  https://review.openstack.org/13709415:16
*** yamahata has joined #openstack-oslo15:16
openstackgerritOleksii Zamiatin proposed openstack/oslo-specs:     blueprint: https://blueprints.launchpad.net/oslo.messaging/+spec/oslo-functional-testing-apps  https://review.openstack.org/13709415:19
*** ftcjeff has quit IRC15:28
openstackgerritOleksii Zamiatin proposed openstack/oslo-specs: oslo.messaging functional tests proposal  https://review.openstack.org/13709415:31
*** alexpilotti has joined #openstack-oslo15:32
openstackgerritOleksii Zamiatin proposed openstack/oslo-specs: oslo.messaging functional tests proposal  https://review.openstack.org/13709415:44
openstackgerritJulien Danjou proposed openstack/oslo.log: Remove Python 2.6 support  https://review.openstack.org/13700215:51
*** tsekiyama has joined #openstack-oslo16:06
*** arnaud___ has joined #openstack-oslo16:13
*** arnaud___ has quit IRC16:19
*** zzzeek has joined #openstack-oslo16:25
*** alexpilotti has quit IRC16:37
*** alexpilotti has joined #openstack-oslo16:38
zzzeeklooks like things broke with alembic16:40
bknudsonif nobody else is updating https://review.openstack.org/#/c/136278/ (Remove the use of PROTOCOL_SSLv3) I'll go ahead and make the changes.16:44
*** arnaud___ has joined #openstack-oslo16:46
zzzeekhmm or things are breaking with my provisioning changes :)16:47
zzzeekanother day, another which one of my improvements is breaking everyones tests....16:47
openstackgerritBrant Knudson proposed openstack/oslo.messaging: Remove the use of PROTOCOL_SSLv3  https://review.openstack.org/13627816:47
*** e0ne has quit IRC16:54
*** noelbk has joined #openstack-oslo16:55
*** amotoki has quit IRC17:00
openstackgerritBrant Knudson proposed openstack/oslo.messaging: Add more TLS protocols to rabbit impl  https://review.openstack.org/13714117:01
*** i159 has quit IRC17:07
*** arnaud___ has quit IRC17:08
*** dims has quit IRC17:09
*** yamahata has quit IRC17:14
openstackgerritMike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli  https://review.openstack.org/13515017:27
*** alexpilotti has quit IRC17:28
*** arnaud___ has joined #openstack-oslo17:35
*** zzzeek has quit IRC17:36
*** ViswaV has joined #openstack-oslo17:38
*** zzzeek has joined #openstack-oslo17:38
*** e0ne has joined #openstack-oslo17:40
*** exploreshaifali has quit IRC17:41
*** andreykurilin_ has joined #openstack-oslo17:42
*** ViswaV_ has joined #openstack-oslo17:44
*** ViswaV has quit IRC17:44
*** harlowja_away is now known as harlowja17:49
*** dimsum__ has joined #openstack-oslo17:51
harlowjaanyone know whats up with the 'NOT_REGISTERED' errors?17:51
bnemecharlowja: Is it an icehouse job?  http://lists.openstack.org/pipermail/openstack-dev/2014-November/051485.html17:53
harlowjaya17:53
harlowjaasking infra they said it shouldn't be happening anymore, so maybe just need to recheck stuff17:54
harlowjalets see (i just rechecked one of taskflows that had this issue)17:54
openstackgerritJoshua Harlow proposed openstack/taskflow: Remove default setting of 'mysql_traditional_mode'  https://review.openstack.org/13693817:57
*** e0ne has quit IRC18:05
*** mriedem has quit IRC18:06
*** e0ne has joined #openstack-oslo18:06
*** russellb has quit IRC18:11
*** russellb has joined #openstack-oslo18:12
*** e0ne has quit IRC18:14
*** ViswaV_ has quit IRC18:15
*** e0ne has joined #openstack-oslo18:16
*** pblaho has quit IRC18:16
*** pblaho has joined #openstack-oslo18:16
*** pblaho has quit IRC18:22
*** e0ne has quit IRC18:22
*** alexpilotti has joined #openstack-oslo18:33
*** gabriel-bezerra has left #openstack-oslo18:35
*** ViswaV has joined #openstack-oslo18:38
*** stevemar has joined #openstack-oslo18:50
openstackgerritDavanum Srinivas (dims) proposed openstack/oslo.vmware: Switch to use requests/urllib3 and enable cacert validation  https://review.openstack.org/12195618:55
*** harlowja is now known as harlowja_away18:58
*** harlowja_away is now known as harlowja19:07
*** _honning_ has joined #openstack-oslo19:14
*** ihrachyshka has quit IRC19:15
harlowjadamn, same bug still happening on icehouse stff19:17
*** jeckersb is now known as jeckersb_gone19:19
harlowjahttps://review.openstack.org/#/c/136657/ should classify that one19:23
*** exploreshaifali has joined #openstack-oslo19:48
*** jeckersb_gone is now known as jeckersb19:49
openstackgerritJoshua Harlow proposed openstack/taskflow: Allow for the notifier to provide a 'details_filter'  https://review.openstack.org/13696919:57
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695819:57
openstackgerritJoshua Harlow proposed openstack/taskflow: Use a module level constant to provide the DEFAULT_LISTEN_FOR  https://review.openstack.org/13698319:57
*** andreykurilin_ has quit IRC20:07
*** andreykurilin_ has joined #openstack-oslo20:08
*** jgrimm is now known as zz_jgrimm20:13
openstackgerritBen Nemec proposed openstack/oslo-incubator: Don't log missing policy.d as a warning  https://review.openstack.org/13719120:16
*** exploreshaifali has quit IRC20:16
*** zz_jgrimm is now known as jgrimm20:18
*** jgrimm is now known as zz_jgrimm20:19
*** andreykurilin_ has quit IRC20:24
*** andreykurilin_ has joined #openstack-oslo20:24
openstackgerritMerged openstack/oslo-incubator: Use same mask pattern for reports as mask_password  https://review.openstack.org/12877120:31
*** e0ne has joined #openstack-oslo20:45
*** zz_jgrimm is now known as jgrimm20:53
*** jgrimm is now known as zz_jgrimm20:53
openstackgerritenikanorov proposed openstack/oslo.db: Add ability to pass isolation level to create_engine  https://review.openstack.org/13720320:55
*** ViswaV has quit IRC20:59
*** alexpilotti has quit IRC21:04
openstackgerritMerged openstack/oslosphinx: Add pbr to installation requirements  https://review.openstack.org/13079421:08
openstackgerritMerged openstack/oslotest: Add pbr to installation requirements  https://review.openstack.org/13079321:12
*** ViswaV has joined #openstack-oslo21:13
openstackgerritMerged openstack/oslo-incubator: Fixed a problem with neutron http policy check  https://review.openstack.org/13170921:20
*** zz_jgrimm is now known as jgrimm21:32
*** kgiusti has left #openstack-oslo21:37
*** ajo has quit IRC21:41
*** raildo_ has joined #openstack-oslo21:46
*** e0ne has quit IRC21:47
*** ajo has joined #openstack-oslo21:50
*** raildo_ has quit IRC21:58
openstackgerritMerged openstack/oslo.concurrency: Allow the lock delay to be provided  https://review.openstack.org/13087221:58
openstackgerritMerged openstack/oslo.serialization: Add pbr to installation requirements  https://review.openstack.org/13078822:07
*** ViswaV has quit IRC22:07
openstackgerritJoshua Harlow proposed openstack/oslo.concurrency: Remove return since its not currently checked/used  https://review.openstack.org/13722422:07
*** denis_makogon_ has joined #openstack-oslo22:07
openstackgerritJoshua Harlow proposed openstack/oslo.concurrency: Add a TODO for retrying pull request #20  https://review.openstack.org/13722522:09
openstackgerritMerged openstack/oslo.config: Add pbr to installation requirements  https://review.openstack.org/13078222:12
openstackgerritJoshua Harlow proposed openstack/oslo.concurrency: Remove return since its not currently checked/used  https://review.openstack.org/13722422:15
*** ViswaV_ has joined #openstack-oslo22:16
*** dimsum__ has quit IRC22:16
*** dimsum__ has joined #openstack-oslo22:17
openstackgerritMerged openstack/oslo.log: Activate pep8 check that _ is imported  https://review.openstack.org/13234322:20
*** alexpilotti has joined #openstack-oslo22:20
*** dimsum__ has quit IRC22:21
*** noelbk has quit IRC22:24
*** noelbk has joined #openstack-oslo22:28
openstackgerritJoshua Harlow proposed openstack/taskflow: Allow for the notifier to provide a 'details_filter'  https://review.openstack.org/13696922:36
openstackgerritJoshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms  https://review.openstack.org/13695822:36
openstackgerritJoshua Harlow proposed openstack/taskflow: Use a module level constant to provide the DEFAULT_LISTEN_FOR  https://review.openstack.org/13698322:36
*** e0ne has joined #openstack-oslo22:42
*** e0ne has quit IRC22:42
*** dims_ has joined #openstack-oslo22:49
*** stevemar has quit IRC23:00
*** andreykurilin_ has quit IRC23:01
*** stevemar has joined #openstack-oslo23:01
*** gordc has quit IRC23:09
*** denis_makogon has quit IRC23:38
*** denis_makogon_ is now known as denis_makogon23:38
*** dmakogon_ has joined #openstack-oslo23:38
*** sigmavirus24 is now known as sigmavirus24_awa23:43
*** oomichi has joined #openstack-oslo23:46
*** _honning_ has quit IRC23:48
openstackgerritJoshua Harlow proposed openstack/taskflow: Cache visible scopes in the runtime component  https://review.openstack.org/13724123:50
harlowjagus btw with the scope stuff, i u want to see what the scopes that are being found are there is debug logging that should show u that (if its of interest)23:51
harlowjahttp://paste.ubuntu.com/9240802/ is an example + output @ http://paste.ubuntu.com/9240814/23:52
harlowjau'll see it walking up the scope tree and stuff trying to find the 'creator'23:53
harlowjai mean 'provider'23:53
*** ajo has quit IRC23:54
openstackgerritJoshua Harlow proposed openstack/taskflow: Cache immutable visible scopes in the runtime component  https://review.openstack.org/13724123:55

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