*** dklyle has quit IRC | 00:11 | |
*** ttsiouts has joined #openstack-placement | 01:22 | |
*** bhagyashris has joined #openstack-placement | 01:25 | |
*** dklyle has joined #openstack-placement | 01:37 | |
*** ttsiouts has quit IRC | 01:54 | |
*** dklyle has quit IRC | 01:54 | |
*** ttsiouts has joined #openstack-placement | 03:03 | |
*** sean-k-mooney has quit IRC | 03:09 | |
*** sean-k-mooney has joined #openstack-placement | 03:11 | |
*** ttsiouts has quit IRC | 03:35 | |
*** ttsiouts has joined #openstack-placement | 05:33 | |
*** ttsiouts has quit IRC | 06:06 | |
*** amodi has quit IRC | 06:31 | |
*** belmoreira has joined #openstack-placement | 06:41 | |
*** tssurya has joined #openstack-placement | 07:25 | |
*** helenafm has joined #openstack-placement | 07:27 | |
*** ttsiouts has joined #openstack-placement | 07:31 | |
*** openstackgerrit has joined #openstack-placement | 07:47 | |
openstackgerrit | Tetsuro Nakamura proposed openstack/placement master: Skip _exclude_nested_providers() if not nested https://review.opendev.org/658977 | 07:47 |
---|---|---|
*** belmoreira has quit IRC | 07:59 | |
*** ttsiouts has quit IRC | 08:34 | |
*** belmoreira has joined #openstack-placement | 08:39 | |
*** ttsiouts has joined #openstack-placement | 09:10 | |
*** e0ne has joined #openstack-placement | 09:12 | |
openstackgerrit | Tetsuro Nakamura proposed openstack/placement master: Skip _exclude_nested_providers() if not nested https://review.opendev.org/658977 | 09:33 |
*** bhagyashris has quit IRC | 09:35 | |
*** tssurya has quit IRC | 09:41 | |
*** tssurya has joined #openstack-placement | 09:41 | |
*** ttsiouts has quit IRC | 09:44 | |
*** belmoreira has quit IRC | 09:50 | |
*** gibi is now known as gibi_off | 10:02 | |
*** belmoreira has joined #openstack-placement | 10:56 | |
*** e0ne has quit IRC | 11:31 | |
*** e0ne has joined #openstack-placement | 11:31 | |
*** e0ne has quit IRC | 12:02 | |
*** tetsuro has joined #openstack-placement | 12:09 | |
openstackgerrit | Tetsuro Nakamura proposed openstack/placement master: Skip _exclude_nested_providers() if not nested https://review.opendev.org/658977 | 12:09 |
*** tetsuro has quit IRC | 12:11 | |
*** mriedem has joined #openstack-placement | 12:49 | |
*** e0ne has joined #openstack-placement | 12:50 | |
*** ttsiouts has joined #openstack-placement | 13:02 | |
*** belmoreira has quit IRC | 13:02 | |
*** ttsiouts has quit IRC | 13:07 | |
*** ttsiouts has joined #openstack-placement | 13:26 | |
*** ttsiouts has quit IRC | 13:30 | |
*** belmoreira has joined #openstack-placement | 13:58 | |
*** dklyle has joined #openstack-placement | 14:13 | |
*** ttsiouts has joined #openstack-placement | 15:27 | |
*** helenafm has quit IRC | 15:30 | |
*** belmoreira has quit IRC | 15:48 | |
*** dklyle has quit IRC | 15:50 | |
*** dklyle has joined #openstack-placement | 15:52 | |
*** openstackgerrit has quit IRC | 15:54 | |
*** e0ne has quit IRC | 15:57 | |
*** ttsiouts has quit IRC | 16:01 | |
*** dklyle has quit IRC | 16:11 | |
*** dklyle has joined #openstack-placement | 16:16 | |
*** dklyle has quit IRC | 16:21 | |
*** dklyle has joined #openstack-placement | 16:23 | |
*** dklyle has quit IRC | 16:59 | |
*** dklyle has joined #openstack-placement | 17:01 | |
*** tssurya has quit IRC | 17:06 | |
*** dklyle has quit IRC | 17:52 | |
*** e0ne has joined #openstack-placement | 17:57 | |
*** ttsiouts has joined #openstack-placement | 17:58 | |
*** e0ne has quit IRC | 18:05 | |
*** ttsiouts has quit IRC | 18:31 | |
*** e0ne has joined #openstack-placement | 18:38 | |
efried | edleafe: Is it legal and/or acceptable to have a queryparam that's just a key with no value? | 19:08 |
efried | Presumably ?foo= is legal - would translate to {'foo': ''} - but what about just ?foo | 19:09 |
edleafe | efried: dunno - I've never tried that. Usually it's foo=1 | 19:10 |
edleafe | Looking through the spec, I don't see any requirement for '=' | 19:12 |
efried | edleafe: how would that show up in python on the other side of my wsgi? | 19:15 |
edleafe | efried: https://tools.ietf.org/html/rfc3986#section-3.4 | 19:15 |
edleafe | efried: like I said, I haven't tried it. | 19:15 |
*** dklyle has joined #openstack-placement | 19:16 | |
efried | ight | 19:16 |
edleafe | lemme try something quick | 19:16 |
*** dklyle has quit IRC | 19:19 | |
*** david-lyle has joined #openstack-placement | 19:19 | |
edleafe | efried: running flask with uwsgi, you just get back `request.query_string`, so sending ?foo,bar,baz=7 gives "foo,bar,baz=7" as request.query_string | 19:21 |
edleafe | IOW, you have to do your own parsing | 19:22 |
efried | mm, that makes sense. | 19:22 |
efried | edleafe: I guess the methods we're using in the placement handlers, like req.GET.getall('foo'), are doing that parsing | 19:24 |
gryf | efried, delimiter for the query params should be & isn;t it? | 19:24 |
efried | yes | 19:24 |
gryf | sorry, was referring to ed | 19:24 |
edleafe | gryf: yeah, I was just doing a quick and dirty test | 19:24 |
edleafe | same results with & | 19:24 |
gryf | ack | 19:24 |
efried | so a "normal" parser (whatever that means) would return {'foo,bar,baz': '7'} for that one. But I took ed's point. | 19:25 |
edleafe | efried: we pass resource requests like this: ?resources=VCPU:2,MEMORY_MB:1024, so /query | 19:28 |
edleafe | doh! | 19:29 |
edleafe | so I think that we have some stuff that assumes key=val | 19:29 |
efried | well, yes, we do, but we could recode if we wanted | 19:32 |
efried | epic comment coming in the nested magic spec that might explain why I'm asking. | 19:32 |
* edleafe can hardly wait | 19:33 | |
efried | edleafe: https://review.opendev.org/#/c/658510/2/doc/source/specs/train/approved/2005575-nested-magic.rst@134 | 19:38 |
edleafe | efried: got it in an open tab. Will look when I can refocus my brain | 19:40 |
*** david-lyle has quit IRC | 19:42 | |
efried | edleafe: Not sure that's the criterion you should use | 19:58 |
edleafe | efried: s/refocus/unfocus | 19:59 |
*** openstackgerrit has joined #openstack-placement | 20:04 | |
openstackgerrit | Merged openstack/placement master: Skip _exclude_nested_providers() if not nested https://review.opendev.org/658977 | 20:04 |
*** e0ne has quit IRC | 20:20 | |
*** ttsiouts has joined #openstack-placement | 20:28 | |
*** cdent has joined #openstack-placement | 20:36 | |
*** cdent has quit IRC | 20:58 | |
*** ttsiouts has quit IRC | 21:01 | |
*** dklyle has joined #openstack-placement | 21:27 | |
*** dklyle has quit IRC | 21:44 | |
*** amodi has joined #openstack-placement | 21:44 | |
*** dklyle has joined #openstack-placement | 21:44 | |
*** dklyle has quit IRC | 21:50 | |
*** ttsiouts has joined #openstack-placement | 22:58 | |
*** ttsiouts has quit IRC | 23:32 | |
*** irclogbot_2 has quit IRC | 23:45 | |
*** irclogbot_2 has joined #openstack-placement | 23:48 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!