Alexander Mohr

Results 302 comments of Alexander Mohr

ok changes look good, just want to dig into the Transfer-Encoding issue

ok figured out the chunk thing, and added support for running https tests, unfortunately moto doesn't appear to support the algs yet so still need to xfail for now.

@palazzem ddtrace needs to hook after on_prepare, unfortunately there isn't a good hook for this, the best I've seen is that each request has it's own asyncio task, so theoretically...

@Dreamsorcerer where are we with this? :)

> > @Dreamsorcerer where are we with this? :) > > I have 100+ tabs open for things to get back to. :P I had a couple of open questions...

so latest version is pretty weird, it just totally strips all the metadata keys that have `_`. Given amazon will always return `_` as `-` I'm going to close this....

i figured out a workaround: ```python def _werkzeug_make_environ(original_method, instance, args, kwargs): environ = original_method(*args, **kwargs) for key, value in instance.headers.items(): key = key.upper().replace("-", "_") value = value.replace("\r\n", "") if key.startswith('X_AMZ_META_')...

btw, we also found that having setuptools 68.2.0 w/ pipenv 2023.7.11 installed also seems to trigger this behavior (68.0.0 works correctly), however I've been unable to reproduce with my stripped...

going to close for now as clients/sessions should be long lived. Please re-open if that does not help

can you re-try with latest version?