<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/urllib3.git/test/test_poolmanager.py, branch pyopenssl-pin-python-2.6</title>
<subtitle>github.com: shazow/urllib3.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/'/>
<entry>
<title>Use FQDN only for DNS and drop trailing dot for other operations</title>
<updated>2017-12-14T21:14:59+00:00</updated>
<author>
<name>Jesse Shapiro</name>
<email>jesse@jesseshapiro.net</email>
</author>
<published>2017-09-02T00:02:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=68f3475b421f81d0e78eb0c2271d27d8b75bea05'/>
<id>68f3475b421f81d0e78eb0c2271d27d8b75bea05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite test_poolmanager.py to be pytest-style</title>
<updated>2017-08-09T16:34:46+00:00</updated>
<author>
<name>Alex Chan</name>
<email>a.chan@wellcome.ac.uk</email>
</author>
<published>2017-08-09T16:34:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=50252bfb2e247ba4b5321ea455dafe992e292a63'/>
<id>50252bfb2e247ba4b5321ea455dafe992e292a63</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add assert_hostname/assert_fingerprint to list of valid keys for PoolManager</title>
<updated>2017-05-01T02:06:01+00:00</updated>
<author>
<name>Davanum Srinivas</name>
<email>davanum@gmail.com</email>
</author>
<published>2017-04-25T20:46:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=5b7f32cf17b9ff282bd102dec96531cb341fab69'/>
<id>5b7f32cf17b9ff282bd102dec96531cb341fab69</id>
<content type='text'>
In Kubernetes' client-python, we ran into this problem with
1.21:
https://travis-ci.org/kubernetes-incubator/client-python/jobs/225699267

We add the assert_hostname to our PoolManager here:
https://github.com/kubernetes-incubator/client-python/blob/192b67c4466c4e1c45f05eb4a1c6a6899e1c279d/kubernetes/client/rest.py#L107

Since PoolManager used to support assert_fingerprint, let us add
that as well to _key_fields
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Kubernetes' client-python, we ran into this problem with
1.21:
https://travis-ci.org/kubernetes-incubator/client-python/jobs/225699267

We add the assert_hostname to our PoolManager here:
https://github.com/kubernetes-incubator/client-python/blob/192b67c4466c4e1c45f05eb4a1c6a6899e1c279d/kubernetes/client/rest.py#L107

Since PoolManager used to support assert_fingerprint, let us add
that as well to _key_fields
</pre>
</div>
</content>
</entry>
<entry>
<title>Failing test for #1165</title>
<updated>2017-04-28T07:26:55+00:00</updated>
<author>
<name>Cory Benfield</name>
<email>lukasaoz@gmail.com</email>
</author>
<published>2017-04-28T07:26:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=e982a56fe9fb797113b20df77cb4d9b288d25d5e'/>
<id>e982a56fe9fb797113b20df77cb4d9b288d25d5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The ``connection_from_*`` methods now accept pool_kwargs</title>
<updated>2017-03-23T15:47:33+00:00</updated>
<author>
<name>Jeremy Cline</name>
<email>jeremy@jcline.org</email>
</author>
<published>2016-10-30T15:20:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=7c14966fc134146223650a8393e17e91a358ba6d'/>
<id>7c14966fc134146223650a8393e17e91a358ba6d</id>
<content type='text'>
This introduces two changes. The first is that connection pools are
keyed off the entire request context rather than a sub-set of the
request context. The second is that it is possible to override
connection pool keyword arguments when calling ``connection_from_*`` by
providing a new keyword argument, ``pool_kwargs``. This is nice because
without it, users that want to change these arguments (when, say,
adjusting SSL configurations) need to make sure they update the keyword
arguments and get a new pool in a thread-safe manner.

Signed-off-by: Jeremy Cline &lt;jeremy@jcline.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This introduces two changes. The first is that connection pools are
keyed off the entire request context rather than a sub-set of the
request context. The second is that it is possible to override
connection pool keyword arguments when calling ``connection_from_*`` by
providing a new keyword argument, ``pool_kwargs``. This is nice because
without it, users that want to change these arguments (when, say,
adjusting SSL configurations) need to make sure they update the keyword
arguments and get a new pool in a thread-safe manner.

Signed-off-by: Jeremy Cline &lt;jeremy@jcline.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix flake errors with unittest2 import</title>
<updated>2017-01-25T15:35:25+00:00</updated>
<author>
<name>Seth Michael Larson</name>
<email>sethmichaellarson@protonmail.com</email>
</author>
<published>2017-01-25T15:35:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=df1d8fd747ffbd85de67a17f8a697a8472860183'/>
<id>df1d8fd747ffbd85de67a17f8a697a8472860183</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>s/version/version_info/</title>
<updated>2017-01-22T21:29:13+00:00</updated>
<author>
<name>Seth Michael Larson</name>
<email>sethmichaellarson@protonmail.com</email>
</author>
<published>2017-01-22T21:29:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=c7c196e3def4ef2367455f1f6d6a2abac729ff80'/>
<id>c7c196e3def4ef2367455f1f6d6a2abac729ff80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add unittest2 for more testcases</title>
<updated>2017-01-22T21:19:34+00:00</updated>
<author>
<name>Seth Michael Larson</name>
<email>sethmichaellarson@protonmail.com</email>
</author>
<published>2017-01-22T21:19:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=b7ffd0e026e4c9e3c50ef5e80e0c75c30bbeb61f'/>
<id>b7ffd0e026e4c9e3c50ef5e80e0c75c30bbeb61f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add cleanup to pools and managers</title>
<updated>2017-01-21T20:35:54+00:00</updated>
<author>
<name>lars4839</name>
<email>lars4839@umn.edu</email>
</author>
<published>2017-01-21T20:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=beb018b971cd15c468999c64bf33b82b3a65c1a5'/>
<id>beb018b971cd15c468999c64bf33b82b3a65c1a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add ``source_address`` to the HTTP and HTTPS pool keys</title>
<updated>2016-04-19T17:05:14+00:00</updated>
<author>
<name>Jeremy Cline</name>
<email>jeremy@jcline.org</email>
</author>
<published>2016-04-19T17:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=4a3078e184a14170845378523e291d0e604d6b52'/>
<id>4a3078e184a14170845378523e291d0e604d6b52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
