kr / webx

Crazy experimental HTTP-over-RSPDY router
12 stars 1 forks source link

Support Query Strings #3

Open rhyselsmore opened 11 years ago

rhyselsmore commented 11 years ago

Copied from https://github.com/heroku/webx/issues/25

Query strings are not being passed through to the application.

$ curl -H'Host: foo.webxapp.io' "http://127.0.0.1:8000?test=1&test2=2"

ImmutableMultiDict([])

$ curl "http://127.0.0.1:80?test=1&test2=2"

ImmutableMultiDict([('test', u'1'), ('test2', u'2')])

First test is against the router, second is going straight to the application.

kr commented 11 years ago

I believe this is fixed in a4f7cf4c5e198c993e6c8ce93d32dce45e8d83f0. Still need to verify in production.