Andrey Petrov
Andrey Petrov
Hm I think @kevinburke has moved on from urllib3, so we need someone new to take a look at this. :) Any chance you're interested in digging into this, @emgerner-msft?
If you find the time, we'd be happy to point you in the right direction. :)
Absolutely. [connectionpool.py](https://github.com/shazow/urllib3/blob/master/urllib3/connectionpool.py) (and probably connection.py) is where most of the related meat is. I'd search for where various *Timeout exceptions get raised to get a high-level idea. I don't know...
Agreed. Nobody is working on this yet, but we'd appreciate help/contributions and will be happy to help along as needed. :)
Hmm interesting scenario. What about making a Manager which does not use a pool underneath? I'd prefer that over toggling a global state variable.
I don't feel that it's the responsibility of an underlying library to force feature support upon other libraries built on it. :) If that's really what you want to do,...
If I understand what you're proposing, you want some kind of global module-level variable/call which disables pooling in all things regardless of what you're using or in which module. If...
@schlamar You shouldn't be seeing the log entry unless you specifically added a urllib3 namespace logger or have a wildcard root logger setup. See also: https://github.com/shazow/urllib3/pull/71#issuecomment-16972732 Random-aside: Would be neat...
Yeaaaaaa, this is sucky. I'm sorry. :( I consider this issue an extension (or dupe?) of https://github.com/shazow/urllib3/issues/436.
Right, 1x to read the data and 1x to store our encoded copy of it. We had some discussions about converting this into a generator[0] which would help bring it...