You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* properly grab content type
we're not using a case insensitive dict so these end up overlapping. this now
grabs the right content type out of the user headers before creating the real
http headers, at least, but we should probably use a case insensitive dict for
these things as this has been a real pain. this also changes the default to be
"text/plain" instead of sending in Content-Type: None is the user does not set
this particular header. Now I see application/json being set properly without
None or another value in content type, so this ought to work.
* add case insensitive dict to async_http lib
removes any higher level setting of the content type, since the async_http lib
itself will handle this and only at that level do we have case insensitive
header checks. it wasn't worth trying to change all of async_http header
getting to use lower case.
0 commit comments