*** dims has quit IRC | 00:03 | |
*** dims has joined #openstack-oslo | 00:03 | |
*** gordc has quit IRC | 00:05 | |
*** dims has quit IRC | 00:08 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Add a claims listener that connects job claims to engines https://review.openstack.org/136923 | 00:12 |
---|---|---|
*** dims has joined #openstack-oslo | 00:21 | |
*** ftcjeff has joined #openstack-oslo | 00:23 | |
*** tsekiyam_ has joined #openstack-oslo | 00:29 | |
*** tsekiya__ has joined #openstack-oslo | 00:30 | |
*** dims has quit IRC | 00:31 | |
*** dims has joined #openstack-oslo | 00:31 | |
*** tsekiyama has quit IRC | 00:32 | |
*** ftcjeff has quit IRC | 00:32 | |
*** tsekiyam_ has quit IRC | 00:34 | |
*** ftcjeff has joined #openstack-oslo | 00:34 | |
*** ftcjeff has quit IRC | 00:35 | |
*** dims has quit IRC | 00:36 | |
*** jeckersb is now known as jeckersb_gone | 00:37 | |
openstackgerrit | Surojit Pathak proposed openstack-dev/hacking: Fixing broken while loop in imports.py https://review.openstack.org/136517 | 00:44 |
*** ViswaV has joined #openstack-oslo | 00:55 | |
ViswaV | @zzzeek . Hi , my name is Viswa. @Harlowja from Taskflow project pointed me to you. | 00:56 |
zzzeek | hello | 00:56 |
ViswaV | We are running into a weird error with alembic. | 00:57 |
harlowja | something alembic related i think :) | 00:57 |
ViswaV | 2014-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 |
ViswaV | And we narrowed down the possible culprit to sql_mode being set to ANS_QUOTES on our production server. | 00:57 |
zzzeek | looks like it | 00:57 |
zzzeek | but shoudl still work | 00:58 |
ViswaV | The 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 |
zzzeek | what is the actual sql mode setting | 00:58 |
ViswaV | ANSI_QUOTES | 00:58 |
zzzeek | so DESCRIBE “alembic_version” is ANSI_QUOTES | 00:59 |
ViswaV | you want me to run DESCRIBE “alembic_version” and give you the output? | 00:59 |
zzzeek | well more I’m wondering if your app, or oslo.db, is setting SQL_MODE *after* SQLAlchemy has already detected it | 01:00 |
zzzeek | that seems like what is happening here | 01:01 |
zzzeek | whats the context of applciations, is this oslo.db, what is the connectivity pattern | 01:01 |
harlowja | not oslo.db (currently) | 01:01 |
ViswaV | We just use taskflow library. I don't think our code is setting the sql_mode. | 01:01 |
zzzeek | brcause oslo.db sets up SQL_MODE and i think it woudl blow away ANSI_QUOTES | 01:02 |
harlowja | kk, taskflow currently is setting TRADITIONAL unless provided | 01:02 |
zzzeek | harlowja: theres your problem | 01:02 |
harlowja | kk | 01:02 |
zzzeek | if you run w/ echo=True you will see SHOW VARIABLES LIKE 'sql_mode' in your log | 01:03 |
zzzeek | that is what SQLAlchemy is using | 01:03 |
zzzeek | if your libray then sets it to TRADITIONAL, boom | 01:03 |
harlowja | ViswaV ya, if this is it, can just override this to not use that | 01:03 |
ViswaV | Good catch. @harlowja is there a way to force taskflow not to override, or tell it to override with ANSI_QUOTES mode? | 01:03 |
harlowja | conf = { | 01:04 |
harlowja | "connection": "sqlite:////tmp/test.db", | 01:04 |
harlowja | 'mysql_sql_mode': None, | 01:04 |
harlowja | } | 01:04 |
harlowja | something like that | 01:04 |
harlowja | should do it | 01:04 |
ViswaV | Got it. Let me give that a try. | 01:04 |
harlowja | kk | 01:04 |
ViswaV | Thx Gentlemen. Will report back my findings. | 01:04 |
harlowja | cools | 01:04 |
zzzeek | SQLAlchemy 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 style | 01:05 |
harlowja | sounds good to me | 01:06 |
harlowja | i'll take out this mode setting then, seems safer to just let it happen 'naturally' | 01:06 |
zzzeek | oslo.db does it witin first_connect as well as connect, to nail it before SQLAlcehmy does it for sure, and on every connection | 01:06 |
harlowja | since 0.6 i think? | 01:06 |
zzzeek | harlowja: if youre using SQLA to render all SQL then yes definitely take it out | 01:06 |
harlowja | k | 01:06 |
zzzeek | harlowja: youd only want to set that if you have hardcoded SQL, and even then with ANSI_QUOTES the ` is still accepted | 01:06 |
harlowja | no hardcoder stuff | 01:07 |
harlowja | *hard coded, ha | 01:07 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Remove default setting of 'mysql_traditional_mode' https://review.openstack.org/136938 | 01:09 |
harlowja | someday i'll get to use oslo.db and its helpers around this, hopefully this cycle | 01:10 |
harlowja | cut out that wart | 01:10 |
harlowja | *well not wart, but code, haha | 01:10 |
*** jecarey has joined #openstack-oslo | 01:23 | |
*** dims has joined #openstack-oslo | 01:42 | |
lifeless | zzzeek: btw I'm on sabbatical for about 6 weeks now, but AFAIK everything you need for your patches is landed and released upstream | 01:44 |
lifeless | zzzeek: e.g. load_tests on the top level dir should just work | 01:44 |
*** sigmavirus24 is now known as sigmavirus24_awa | 01:53 | |
*** dims has quit IRC | 02:00 | |
*** arnaud___ has quit IRC | 02:00 | |
*** dims has joined #openstack-oslo | 02:00 | |
*** dims has quit IRC | 02:05 | |
*** jecarey has quit IRC | 02:08 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Move scheduler and completer classes to there own modules https://review.openstack.org/136944 | 02:15 |
*** tsekiya__ has quit IRC | 02:32 | |
*** mtanino has quit IRC | 02:40 | |
*** yamahata has joined #openstack-oslo | 02:57 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for atoms to fail and execution to continue https://review.openstack.org/136952 | 03:12 |
*** ftcjeff has joined #openstack-oslo | 03:33 | |
ViswaV | zzzeek 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 the | 03:34 |
ViswaV | sql_mode default to? Is that configurable? | 03:34 |
zzzeek | ViswaV: it does some games with it but i dont know that it changes the quoting mode | 03:34 |
zzzeek | ViswaV: however it does it in such a way taht its before SQLAlchemy grabs the value so shoudl be safe | 03:35 |
ViswaV | ok. thx | 03:35 |
*** arnaud___ has joined #openstack-oslo | 03:38 | |
*** ftcjeff has quit IRC | 03:45 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 03:51 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 03:52 |
*** ViswaV has quit IRC | 03:53 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 03:54 |
*** sigmavirus24_awa is now known as sigmavirus24 | 04:07 | |
*** ViswaV has joined #openstack-oslo | 04:14 | |
openstackgerrit | Mike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli https://review.openstack.org/135150 | 04:15 |
*** ViswaV_ has joined #openstack-oslo | 04:16 | |
*** ViswaV has quit IRC | 04:18 | |
*** exploreshaifali has joined #openstack-oslo | 04:24 | |
*** ViswaV_ has quit IRC | 04:29 | |
*** ViswaV has joined #openstack-oslo | 04:34 | |
*** exploreshaifali has quit IRC | 04:35 | |
*** stevemar has quit IRC | 04:36 | |
openstackgerrit | Ian Wienand proposed openstack/oslo.config: Clear up MultiStrOpt and related documentation https://review.openstack.org/132613 | 04:37 |
*** oomichi has quit IRC | 04:38 | |
*** ViswaV has quit IRC | 04:54 | |
*** subscope_ has joined #openstack-oslo | 04:55 | |
*** exploreshaifali has joined #openstack-oslo | 04:59 | |
*** subscope_ has quit IRC | 05:25 | |
*** oomichi has joined #openstack-oslo | 05:32 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for the notifier to provide a details_filter https://review.openstack.org/136969 | 05:37 |
*** sigmavirus24 is now known as sigmavirus24_awa | 05:44 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 05:59 |
*** exploreshaifali has quit IRC | 06:03 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.db: Imported Translations from Transifex https://review.openstack.org/136684 | 06:04 |
*** renlt has joined #openstack-oslo | 06:06 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/oslo.utils: Imported Translations from Transifex https://review.openstack.org/136566 | 06:14 |
*** zzzeek has quit IRC | 06:16 | |
*** k4n0 has joined #openstack-oslo | 06:24 | |
*** vigneshvar has joined #openstack-oslo | 06:25 | |
*** vigneshvar has quit IRC | 06:33 | |
*** _gryf has quit IRC | 06:54 | |
*** harlowja is now known as harlowja_away | 07:01 | |
*** exploreshaifali has joined #openstack-oslo | 07:03 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 07:37 |
*** e0ne has joined #openstack-oslo | 07:40 | |
*** exploreshaifali has quit IRC | 07:43 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use a module level constant to provide the DEFAULT_LISTEN_FOR https://review.openstack.org/136983 | 07:51 |
*** e0ne has quit IRC | 07:53 | |
*** e0ne has joined #openstack-oslo | 07:57 | |
*** e0ne has quit IRC | 07:59 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Add a claims listener that connects job claims to engines https://review.openstack.org/136923 | 08:01 |
*** e0ne has joined #openstack-oslo | 08:03 | |
*** e0ne has quit IRC | 08:08 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Add a claims listener that connects job claims to engines https://review.openstack.org/136923 | 08:08 |
*** e0ne has joined #openstack-oslo | 08:12 | |
*** e0ne has quit IRC | 08:18 | |
*** stannie has joined #openstack-oslo | 08:31 | |
*** eezhova has quit IRC | 08:40 | |
*** eezhova has joined #openstack-oslo | 08:41 | |
*** i159 has joined #openstack-oslo | 08:47 | |
*** yamahata has quit IRC | 09:11 | |
*** ihrachyshka has joined #openstack-oslo | 09:18 | |
*** andreykurilin_ has joined #openstack-oslo | 09:22 | |
*** renlt has quit IRC | 09:25 | |
*** e0ne has joined #openstack-oslo | 09:25 | |
*** oomichi has quit IRC | 09:33 | |
*** noelbk has quit IRC | 09:39 | |
*** andreykurilin_ has quit IRC | 10:00 | |
*** andreykurilin_ has joined #openstack-oslo | 10:00 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/oslo-incubator: Add middleware.catch_errors shim for Kilo https://review.openstack.org/136999 | 10:02 |
ihrachyshka | dhellmann: ^^ needed for oslo.middleware migration for neutron (and swift) | 10:03 |
*** andreykurilin_ has quit IRC | 10:05 | |
*** andreykurilin_ has joined #openstack-oslo | 10:06 | |
openstackgerrit | Victor Sergeyev proposed openstack/oslo.db: Ensure, handle_connect_error() close test connection https://review.openstack.org/137001 | 10:06 |
openstackgerrit | Julien Danjou proposed openstack/oslo.log: Remove unused NullHandler https://review.openstack.org/137002 | 10:10 |
*** vigneshvar has joined #openstack-oslo | 10:41 | |
openstackgerrit | Victor Sergeyev proposed openstack/oslo.db: Ensure, handle_connect_error() close test connection https://review.openstack.org/137001 | 11:00 |
openstackgerrit | Victor Sergeyev proposed openstack/oslo.db: Ensure that create_engine() close test connection https://review.openstack.org/137001 | 11:01 |
*** andreykurilin_ has quit IRC | 11:12 | |
*** k4n0 has quit IRC | 11:20 | |
*** dims has joined #openstack-oslo | 11:20 | |
*** vigneshvar has quit IRC | 11:27 | |
*** vigneshvar has joined #openstack-oslo | 11:30 | |
*** vigneshvar has quit IRC | 11:49 | |
*** vigneshvar has joined #openstack-oslo | 12:02 | |
*** arnaud___ has quit IRC | 12:08 | |
*** pblaho has joined #openstack-oslo | 12:13 | |
*** vigneshvar has quit IRC | 12:30 | |
*** exploreshaifali has joined #openstack-oslo | 12:37 | |
*** tedross has joined #openstack-oslo | 12:39 | |
*** sreshetnyak has joined #openstack-oslo | 12:56 | |
*** sreshetnyak has joined #openstack-oslo | 12:56 | |
*** kgiusti has joined #openstack-oslo | 13:11 | |
*** stannie has quit IRC | 13:12 | |
*** arnaud___ has joined #openstack-oslo | 13:18 | |
*** arnaud___ has quit IRC | 13:28 | |
dims | Hi all, anyone have experience hacking on mox3? https://bugs.launchpad.net/openstack-ci/+bug/1396144 | 13:36 |
openstackgerrit | Mike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli https://review.openstack.org/135150 | 13:37 |
openstackgerrit | Mike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli https://review.openstack.org/135150 | 13:39 |
*** gordc has joined #openstack-oslo | 13:40 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 13:56 | |
*** jeckersb_gone is now known as jeckersb | 13:56 | |
*** dims has quit IRC | 13:57 | |
*** yamahata has joined #openstack-oslo | 13:58 | |
*** dims has joined #openstack-oslo | 13:58 | |
*** ftcjeff has joined #openstack-oslo | 14:15 | |
*** arnaud___ has joined #openstack-oslo | 14:24 | |
*** mriedem has joined #openstack-oslo | 14:26 | |
*** arnaud___ has quit IRC | 14:29 | |
*** ftcjeff has quit IRC | 14:31 | |
*** ftcjeff has joined #openstack-oslo | 14:33 | |
*** jeckersb is now known as jeckersb_gone | 14:43 | |
*** jeckersb_gone is now known as jeckersb | 14:48 | |
*** mtanino has joined #openstack-oslo | 14:52 | |
*** zz_jgrimm is now known as jgrimm | 15:03 | |
*** tedross has left #openstack-oslo | 15:05 | |
*** yamahata has quit IRC | 15:08 | |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo-specs: blueprint: https://blueprints.launchpad.net/oslo.messaging/+spec/oslo-functional-testing-apps https://review.openstack.org/137094 | 15:13 |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo-specs: blueprint: https://blueprints.launchpad.net/oslo.messaging/+spec/oslo-functional-testing-apps https://review.openstack.org/137094 | 15:16 |
*** yamahata has joined #openstack-oslo | 15:16 | |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo-specs: blueprint: https://blueprints.launchpad.net/oslo.messaging/+spec/oslo-functional-testing-apps https://review.openstack.org/137094 | 15:19 |
*** ftcjeff has quit IRC | 15:28 | |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo-specs: oslo.messaging functional tests proposal https://review.openstack.org/137094 | 15:31 |
*** alexpilotti has joined #openstack-oslo | 15:32 | |
openstackgerrit | Oleksii Zamiatin proposed openstack/oslo-specs: oslo.messaging functional tests proposal https://review.openstack.org/137094 | 15:44 |
openstackgerrit | Julien Danjou proposed openstack/oslo.log: Remove Python 2.6 support https://review.openstack.org/137002 | 15:51 |
*** tsekiyama has joined #openstack-oslo | 16:06 | |
*** arnaud___ has joined #openstack-oslo | 16:13 | |
*** arnaud___ has quit IRC | 16:19 | |
*** zzzeek has joined #openstack-oslo | 16:25 | |
*** alexpilotti has quit IRC | 16:37 | |
*** alexpilotti has joined #openstack-oslo | 16:38 | |
zzzeek | looks like things broke with alembic | 16:40 |
bknudson | if 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-oslo | 16:46 | |
zzzeek | hmm or things are breaking with my provisioning changes :) | 16:47 |
zzzeek | another day, another which one of my improvements is breaking everyones tests.... | 16:47 |
openstackgerrit | Brant Knudson proposed openstack/oslo.messaging: Remove the use of PROTOCOL_SSLv3 https://review.openstack.org/136278 | 16:47 |
*** e0ne has quit IRC | 16:54 | |
*** noelbk has joined #openstack-oslo | 16:55 | |
*** amotoki has quit IRC | 17:00 | |
openstackgerrit | Brant Knudson proposed openstack/oslo.messaging: Add more TLS protocols to rabbit impl https://review.openstack.org/137141 | 17:01 |
*** i159 has quit IRC | 17:07 | |
*** arnaud___ has quit IRC | 17:08 | |
*** dims has quit IRC | 17:09 | |
*** yamahata has quit IRC | 17:14 | |
openstackgerrit | Mike Fedosin proposed openstack/oslo.config: Fix wrong order of positional args in cli https://review.openstack.org/135150 | 17:27 |
*** alexpilotti has quit IRC | 17:28 | |
*** arnaud___ has joined #openstack-oslo | 17:35 | |
*** zzzeek has quit IRC | 17:36 | |
*** ViswaV has joined #openstack-oslo | 17:38 | |
*** zzzeek has joined #openstack-oslo | 17:38 | |
*** e0ne has joined #openstack-oslo | 17:40 | |
*** exploreshaifali has quit IRC | 17:41 | |
*** andreykurilin_ has joined #openstack-oslo | 17:42 | |
*** ViswaV_ has joined #openstack-oslo | 17:44 | |
*** ViswaV has quit IRC | 17:44 | |
*** harlowja_away is now known as harlowja | 17:49 | |
*** dimsum__ has joined #openstack-oslo | 17:51 | |
harlowja | anyone know whats up with the 'NOT_REGISTERED' errors? | 17:51 |
bnemec | harlowja: Is it an icehouse job? http://lists.openstack.org/pipermail/openstack-dev/2014-November/051485.html | 17:53 |
harlowja | ya | 17:53 |
harlowja | asking infra they said it shouldn't be happening anymore, so maybe just need to recheck stuff | 17:54 |
harlowja | lets see (i just rechecked one of taskflows that had this issue) | 17:54 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Remove default setting of 'mysql_traditional_mode' https://review.openstack.org/136938 | 17:57 |
*** e0ne has quit IRC | 18:05 | |
*** mriedem has quit IRC | 18:06 | |
*** e0ne has joined #openstack-oslo | 18:06 | |
*** russellb has quit IRC | 18:11 | |
*** russellb has joined #openstack-oslo | 18:12 | |
*** e0ne has quit IRC | 18:14 | |
*** ViswaV_ has quit IRC | 18:15 | |
*** e0ne has joined #openstack-oslo | 18:16 | |
*** pblaho has quit IRC | 18:16 | |
*** pblaho has joined #openstack-oslo | 18:16 | |
*** pblaho has quit IRC | 18:22 | |
*** e0ne has quit IRC | 18:22 | |
*** alexpilotti has joined #openstack-oslo | 18:33 | |
*** gabriel-bezerra has left #openstack-oslo | 18:35 | |
*** ViswaV has joined #openstack-oslo | 18:38 | |
*** stevemar has joined #openstack-oslo | 18:50 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/oslo.vmware: Switch to use requests/urllib3 and enable cacert validation https://review.openstack.org/121956 | 18:55 |
*** harlowja is now known as harlowja_away | 18:58 | |
*** harlowja_away is now known as harlowja | 19:07 | |
*** _honning_ has joined #openstack-oslo | 19:14 | |
*** ihrachyshka has quit IRC | 19:15 | |
harlowja | damn, same bug still happening on icehouse stff | 19:17 |
*** jeckersb is now known as jeckersb_gone | 19:19 | |
harlowja | https://review.openstack.org/#/c/136657/ should classify that one | 19:23 |
*** exploreshaifali has joined #openstack-oslo | 19:48 | |
*** jeckersb_gone is now known as jeckersb | 19:49 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for the notifier to provide a 'details_filter' https://review.openstack.org/136969 | 19:57 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 19:57 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use a module level constant to provide the DEFAULT_LISTEN_FOR https://review.openstack.org/136983 | 19:57 |
*** andreykurilin_ has quit IRC | 20:07 | |
*** andreykurilin_ has joined #openstack-oslo | 20:08 | |
*** jgrimm is now known as zz_jgrimm | 20:13 | |
openstackgerrit | Ben Nemec proposed openstack/oslo-incubator: Don't log missing policy.d as a warning https://review.openstack.org/137191 | 20:16 |
*** exploreshaifali has quit IRC | 20:16 | |
*** zz_jgrimm is now known as jgrimm | 20:18 | |
*** jgrimm is now known as zz_jgrimm | 20:19 | |
*** andreykurilin_ has quit IRC | 20:24 | |
*** andreykurilin_ has joined #openstack-oslo | 20:24 | |
openstackgerrit | Merged openstack/oslo-incubator: Use same mask pattern for reports as mask_password https://review.openstack.org/128771 | 20:31 |
*** e0ne has joined #openstack-oslo | 20:45 | |
*** zz_jgrimm is now known as jgrimm | 20:53 | |
*** jgrimm is now known as zz_jgrimm | 20:53 | |
openstackgerrit | enikanorov proposed openstack/oslo.db: Add ability to pass isolation level to create_engine https://review.openstack.org/137203 | 20:55 |
*** ViswaV has quit IRC | 20:59 | |
*** alexpilotti has quit IRC | 21:04 | |
openstackgerrit | Merged openstack/oslosphinx: Add pbr to installation requirements https://review.openstack.org/130794 | 21:08 |
openstackgerrit | Merged openstack/oslotest: Add pbr to installation requirements https://review.openstack.org/130793 | 21:12 |
*** ViswaV has joined #openstack-oslo | 21:13 | |
openstackgerrit | Merged openstack/oslo-incubator: Fixed a problem with neutron http policy check https://review.openstack.org/131709 | 21:20 |
*** zz_jgrimm is now known as jgrimm | 21:32 | |
*** kgiusti has left #openstack-oslo | 21:37 | |
*** ajo has quit IRC | 21:41 | |
*** raildo_ has joined #openstack-oslo | 21:46 | |
*** e0ne has quit IRC | 21:47 | |
*** ajo has joined #openstack-oslo | 21:50 | |
*** raildo_ has quit IRC | 21:58 | |
openstackgerrit | Merged openstack/oslo.concurrency: Allow the lock delay to be provided https://review.openstack.org/130872 | 21:58 |
openstackgerrit | Merged openstack/oslo.serialization: Add pbr to installation requirements https://review.openstack.org/130788 | 22:07 |
*** ViswaV has quit IRC | 22:07 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo.concurrency: Remove return since its not currently checked/used https://review.openstack.org/137224 | 22:07 |
*** denis_makogon_ has joined #openstack-oslo | 22:07 | |
openstackgerrit | Joshua Harlow proposed openstack/oslo.concurrency: Add a TODO for retrying pull request #20 https://review.openstack.org/137225 | 22:09 |
openstackgerrit | Merged openstack/oslo.config: Add pbr to installation requirements https://review.openstack.org/130782 | 22:12 |
openstackgerrit | Joshua Harlow proposed openstack/oslo.concurrency: Remove return since its not currently checked/used https://review.openstack.org/137224 | 22:15 |
*** ViswaV_ has joined #openstack-oslo | 22:16 | |
*** dimsum__ has quit IRC | 22:16 | |
*** dimsum__ has joined #openstack-oslo | 22:17 | |
openstackgerrit | Merged openstack/oslo.log: Activate pep8 check that _ is imported https://review.openstack.org/132343 | 22:20 |
*** alexpilotti has joined #openstack-oslo | 22:20 | |
*** dimsum__ has quit IRC | 22:21 | |
*** noelbk has quit IRC | 22:24 | |
*** noelbk has joined #openstack-oslo | 22:28 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Allow for the notifier to provide a 'details_filter' https://review.openstack.org/136969 | 22:36 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Update listeners to ensure they correctly handle all atoms https://review.openstack.org/136958 | 22:36 |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Use a module level constant to provide the DEFAULT_LISTEN_FOR https://review.openstack.org/136983 | 22:36 |
*** e0ne has joined #openstack-oslo | 22:42 | |
*** e0ne has quit IRC | 22:42 | |
*** dims_ has joined #openstack-oslo | 22:49 | |
*** stevemar has quit IRC | 23:00 | |
*** andreykurilin_ has quit IRC | 23:01 | |
*** stevemar has joined #openstack-oslo | 23:01 | |
*** gordc has quit IRC | 23:09 | |
*** denis_makogon has quit IRC | 23:38 | |
*** denis_makogon_ is now known as denis_makogon | 23:38 | |
*** dmakogon_ has joined #openstack-oslo | 23:38 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 23:43 | |
*** oomichi has joined #openstack-oslo | 23:46 | |
*** _honning_ has quit IRC | 23:48 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Cache visible scopes in the runtime component https://review.openstack.org/137241 | 23:50 |
harlowja | gus 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 |
harlowja | http://paste.ubuntu.com/9240802/ is an example + output @ http://paste.ubuntu.com/9240814/ | 23:52 |
harlowja | u'll see it walking up the scope tree and stuff trying to find the 'creator' | 23:53 |
harlowja | i mean 'provider' | 23:53 |
*** ajo has quit IRC | 23:54 | |
openstackgerrit | Joshua Harlow proposed openstack/taskflow: Cache immutable visible scopes in the runtime component https://review.openstack.org/137241 | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!