*** chlong has joined #openstack-mistral | 00:20 | |
*** thrash is now known as thrash|g0ne | 01:21 | |
*** apetrich has quit IRC | 01:23 | |
*** apetrich has joined #openstack-mistral | 01:25 | |
*** yangyapeng has joined #openstack-mistral | 01:31 | |
*** chlong has quit IRC | 02:03 | |
*** yangyapeng has quit IRC | 02:04 | |
*** yangyapeng has joined #openstack-mistral | 02:09 | |
*** yangyapeng has quit IRC | 05:23 | |
*** zhurong has joined #openstack-mistral | 05:24 | |
*** jtomasek has joined #openstack-mistral | 05:59 | |
*** rbrady has quit IRC | 06:05 | |
*** harlowja has quit IRC | 06:05 | |
*** aspiers has quit IRC | 06:05 | |
*** doriftoshoes__ has quit IRC | 06:05 | |
*** mwhahaha has quit IRC | 06:05 | |
*** rbrady has joined #openstack-mistral | 06:05 | |
*** rbrady has quit IRC | 06:05 | |
*** rbrady has joined #openstack-mistral | 06:05 | |
*** doriftoshoes__ has joined #openstack-mistral | 06:06 | |
*** mwhahaha has joined #openstack-mistral | 06:06 | |
*** aspiers has joined #openstack-mistral | 06:11 | |
*** zhurong has quit IRC | 06:54 | |
*** zhurong has joined #openstack-mistral | 07:19 | |
*** yangyapeng has joined #openstack-mistral | 07:55 | |
*** d0ugal has quit IRC | 08:01 | |
*** shardy has joined #openstack-mistral | 08:04 | |
*** d0ugal has joined #openstack-mistral | 08:09 | |
*** jpich has joined #openstack-mistral | 08:11 | |
*** zhurong has quit IRC | 08:24 | |
*** xavierhardy has quit IRC | 08:28 | |
*** jaosorior has quit IRC | 08:33 | |
*** jaosorior has joined #openstack-mistral | 08:34 | |
*** yangyapeng has quit IRC | 08:47 | |
*** yangyapeng has joined #openstack-mistral | 08:54 | |
*** yangyapeng has quit IRC | 08:59 | |
*** zhurong has joined #openstack-mistral | 09:06 | |
*** szahers has joined #openstack-mistral | 09:44 | |
*** livelace2 has quit IRC | 10:11 | |
*** jtomasek has quit IRC | 10:33 | |
*** jtomasek has joined #openstack-mistral | 10:34 | |
*** jkilpatr has quit IRC | 10:42 | |
*** oidgar has joined #openstack-mistral | 10:47 | |
*** thrash|g0ne is now known as thrash | 10:50 | |
*** jkilpatr has joined #openstack-mistral | 11:16 | |
*** yangyapeng has joined #openstack-mistral | 11:38 | |
*** zhurong has quit IRC | 11:49 | |
*** xavierhardy has joined #openstack-mistral | 12:00 | |
xavierhardy | d0ugal : we found ways to fix the search on tags and inputs even on sqlite, but it's quite ugly | 12:00 |
---|---|---|
d0ugal | xavierhardy: yeah? do you have a patch? | 12:01 |
xavierhardy | I just did it internally, but I will try to upstream it | 12:01 |
xavierhardy | basically, it uses like | 12:01 |
d0ugal | cool, thanks | 12:01 |
d0ugal | yikes :) | 12:01 |
*** jaosorior has quit IRC | 12:02 | |
xavierhardy | for the tags, it's formatted like this in the DB | 12:02 |
xavierhardy | ["tag1", "tag2", "tag3"] | 12:02 |
xavierhardy | so if you do a tags LIKE '%"tag1"%' you'll have all objects with tag1 | 12:02 |
d0ugal | Makes sense | 12:02 |
d0ugal | What if a tag has " in the name? :) | 12:02 |
xavierhardy | you can also do tags LIKE '%"tag1"%' AND tags LIKE '%"tag2"%' to have those with both tag1 and tag2 | 12:03 |
xavierhardy | you need to escape the name | 12:03 |
xavierhardy | in the code | 12:03 |
d0ugal | right | 12:03 |
xavierhardy | (the JSON encoder does that anyway) | 12:03 |
d0ugal | I guess this would be an okay fix for now that we could backport to pike | 12:04 |
xavierhardy | for the inputs, it's more or less the same ID | 12:04 |
xavierhardy | *idea | 12:04 |
d0ugal | but in queens we should try and come up with a better representation in the database. | 12:04 |
xavierhardy | As I said, yesterday, I totally agree | 12:04 |
d0ugal | xavierhardy: btw, did you open a bug for this? | 12:06 |
xavierhardy | As I see it, at least: | 12:06 |
xavierhardy | params, input, output, published => JSON | 12:06 |
xavierhardy | tags => Array on PostgreSQL or JSON on MySQL | 12:06 |
xavierhardy | id => UUID as much as possible | 12:06 |
xavierhardy | I already have but I did it as feature request | 12:06 |
xavierhardy | I'll try to edit it | 12:06 |
xavierhardy | https://bugs.launchpad.net/mistral/+bug/1716648 | 12:07 |
openstack | Launchpad bug 1716648 in Mistral ""tags" query argument filters everything out" [Undecided,New] | 12:07 |
xavierhardy | I edited it | 12:08 |
d0ugal | Thanks | 12:09 |
xavierhardy | For input | 12:14 |
xavierhardy | https://bugs.launchpad.net/mistral/+bug/1718191 | 12:14 |
openstack | Launchpad bug 1718191 in Mistral "input/output/params/published filters not working" [Undecided,New] | 12:14 |
*** dprince has joined #openstack-mistral | 12:16 | |
openstackgerrit | Xavier Hardy proposed openstack/mistral master: Fix tags, input, params, output, published filters https://review.openstack.org/505206 | 12:35 |
xavierhardy | I will add some tests ASAP | 12:35 |
xavierhardy | https://review.openstack.org/#/c/505206/ | 12:35 |
openstackgerrit | Xavier Hardy proposed openstack/mistral master: Fix tags, input, params, output, published filters https://review.openstack.org/505206 | 12:36 |
openstackgerrit | Xavier Hardy proposed openstack/mistral master: Fix tags, input, params, output, published filters https://review.openstack.org/505206 | 12:38 |
*** yangyapeng has quit IRC | 12:38 | |
xavierhardy | ASAP => this afternoon, if everything goes well ;) | 12:38 |
*** pratapagoutham has joined #openstack-mistral | 12:48 | |
*** catintheroof has joined #openstack-mistral | 12:49 | |
*** szahers has quit IRC | 12:54 | |
rakhmerov | hi guys, sorry for not participating today | 12:56 |
rakhmerov | have to be focused on internal things.. | 12:56 |
d0ugal | np | 12:58 |
pratapagoutham | yes d0ugal | 13:05 |
pratapagoutham | i will open bug for that | 13:05 |
*** bobh has joined #openstack-mistral | 13:07 | |
openstackgerrit | junbo.li proposed openstack/mistral master: Switch to use stestr for unit tests directly https://review.openstack.org/504298 | 13:09 |
d0ugal | pratapagoutham: thanks! | 13:09 |
pratapagoutham | you are welcome d0ugal :) | 13:10 |
*** toure_biab is now known as toure|ptg | 13:19 | |
*** toure|ptg is now known as toure | 13:19 | |
*** chlong has joined #openstack-mistral | 13:19 | |
openstackgerrit | junbo.li proposed openstack/mistral master: Switch to use stestr for unit tests directly https://review.openstack.org/504298 | 13:23 |
openstackgerrit | Goutham Pratapa proposed openstack/python-mistralclient master: Remove "insecure" in token-based authentication. https://review.openstack.org/505240 | 13:27 |
*** toure is now known as toure_biab | 13:28 | |
*** pratapagoutham has quit IRC | 13:41 | |
openstackgerrit | Xavier Hardy proposed openstack/mistral master: Fix tags, input, params, output, published filters https://review.openstack.org/505206 | 13:46 |
*** thrash has quit IRC | 14:04 | |
*** yangyapeng has joined #openstack-mistral | 14:04 | |
*** thrash has joined #openstack-mistral | 14:08 | |
*** thrash has quit IRC | 14:08 | |
*** thrash has joined #openstack-mistral | 14:08 | |
*** yangyapeng has quit IRC | 14:13 | |
*** yangyapeng has joined #openstack-mistral | 14:14 | |
*** yangyapeng has quit IRC | 14:18 | |
*** yangyapeng has joined #openstack-mistral | 14:23 | |
*** bobh has quit IRC | 14:26 | |
openstackgerrit | Xavier Hardy proposed openstack/mistral master: Add "fields" filter support on single objects https://review.openstack.org/505287 | 14:29 |
*** yangyapeng has quit IRC | 14:30 | |
*** yangyapeng has joined #openstack-mistral | 14:30 | |
*** yangyapeng has quit IRC | 14:36 | |
*** jrist has quit IRC | 14:41 | |
*** jaosorior has joined #openstack-mistral | 14:48 | |
*** szahers has joined #openstack-mistral | 14:49 | |
*** yangyapeng has joined #openstack-mistral | 14:52 | |
*** szahers has quit IRC | 15:00 | |
*** yangyapeng has quit IRC | 15:09 | |
*** toure_biab is now known as toure | 15:17 | |
*** yangyapeng has joined #openstack-mistral | 15:18 | |
*** bobh has joined #openstack-mistral | 15:26 | |
*** bobh has quit IRC | 15:31 | |
*** jaosorior has quit IRC | 15:32 | |
*** dprince has quit IRC | 16:02 | |
*** oidgar has quit IRC | 16:03 | |
*** dprince has joined #openstack-mistral | 16:04 | |
*** oidgar has joined #openstack-mistral | 16:11 | |
*** bobh has joined #openstack-mistral | 16:27 | |
*** bobh has quit IRC | 16:32 | |
*** thrash is now known as thrash|lunch | 16:32 | |
*** dprince has quit IRC | 16:35 | |
*** jpich has quit IRC | 16:36 | |
*** Qiming has quit IRC | 16:45 | |
*** Qiming has joined #openstack-mistral | 16:49 | |
*** dprince has joined #openstack-mistral | 16:56 | |
*** szahers has joined #openstack-mistral | 17:08 | |
*** szahers has quit IRC | 17:10 | |
openstackgerrit | Renat Akhmerov proposed openstack/mistral master: Use @db_utils.retry_on_deadlock to retry scheduler transactions https://review.openstack.org/501657 | 17:15 |
*** bobh has joined #openstack-mistral | 17:29 | |
*** bobh has quit IRC | 17:33 | |
*** shardy has quit IRC | 17:44 | |
*** harlowja has joined #openstack-mistral | 17:49 | |
*** thrash|lunch is now known as thrash | 18:17 | |
*** bobh has joined #openstack-mistral | 18:27 | |
*** jrist has joined #openstack-mistral | 19:26 | |
*** jtomasek has quit IRC | 19:35 | |
*** jkilpatr has quit IRC | 20:18 | |
*** jkilpatr has joined #openstack-mistral | 20:42 | |
*** jrist has quit IRC | 20:43 | |
*** thrash is now known as thrash|g0ne | 20:48 | |
*** catintheroof has quit IRC | 20:50 | |
*** catintheroof has joined #openstack-mistral | 20:50 | |
*** catintheroof has quit IRC | 20:51 | |
*** jistr has quit IRC | 21:41 | |
*** bobh has quit IRC | 21:43 | |
*** jistr has joined #openstack-mistral | 22:01 | |
*** dprince has quit IRC | 22:09 | |
*** chlong has quit IRC | 22:21 | |
*** catintheroof has joined #openstack-mistral | 22:45 | |
*** openstackgerrit has quit IRC | 22:47 | |
*** bobh has joined #openstack-mistral | 23:12 | |
*** bobh has quit IRC | 23:57 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!