<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-ceilometerclient.git/ceilometerclient/tests/test_http.py, branch 1.0.10</title>
<subtitle>opendev.org: openstack/python-ceilometerclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/'/>
<entry>
<title>test_url_generation_with_proxy: do not use contextlib.nested()</title>
<updated>2014-02-17T05:10:14+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-02-14T15:31:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=117767df47a19c2db9f79b56ad4a0a8a31007410'/>
<id>117767df47a19c2db9f79b56ad4a0a8a31007410</id>
<content type='text'>
This method does not exist in Python 3, use the "@mock.patch.object" decorator
instead.

Change-Id: Ic45fea1553320c61be284a9397b54fd32f7d30ef
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This method does not exist in Python 3, use the "@mock.patch.object" decorator
instead.

Change-Id: Ic45fea1553320c61be284a9397b54fd32f7d30ef
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure url sent to proxy don't have redundant /</title>
<updated>2014-02-13T09:51:19+00:00</updated>
<author>
<name>Mehdi Abaakouk</name>
<email>mehdi.abaakouk@enovance.com</email>
</author>
<published>2014-01-31T16:16:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=85c80f0fc5f02ed406d662ddb390d71bd32ee34e'/>
<id>85c80f0fc5f02ed406d662ddb390d71bd32ee34e</id>
<content type='text'>
When a proxy is set, the url requested to the proxy have a double // after
the domain, but for ceilometer this kind of url is not valid.

So, this patch ensures the url have only one /

Closes-bug: #1274981

Change-Id: Id6fc5cf7ab7a3866bc23af7102785a9cede593fe
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a proxy is set, the url requested to the proxy have a double // after
the domain, but for ceilometer this kind of url is not valid.

So, this patch ensures the url have only one /

Closes-bug: #1274981

Change-Id: Id6fc5cf7ab7a3866bc23af7102785a9cede593fe
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused import for print_function</title>
<updated>2014-01-28T00:59:31+00:00</updated>
<author>
<name>ZhiQiang Fan</name>
<email>zhiqiang.fan@huawei.com</email>
</author>
<published>2014-01-28T00:59:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=970a0be666fe5ba211f2ea9833abba0eef1739c9'/>
<id>970a0be666fe5ba211f2ea9833abba0eef1739c9</id>
<content type='text'>
A minor fix to https://review.openstack.org/#/c/69234/ which forgets
to remove the unused 'from __future__ import print_function' after
remove all print function.

Change-Id: Iedc925a66fa4dec209cf34ce28b45f768f7bc81d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A minor fix to https://review.openstack.org/#/c/69234/ which forgets
to remove the unused 'from __future__ import print_function' after
remove all print function.

Change-Id: Iedc925a66fa4dec209cf34ce28b45f768f7bc81d
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove print debugs statements.</title>
<updated>2014-01-19T07:38:53+00:00</updated>
<author>
<name>Chmouel Boudjnah</name>
<email>chmouel@enovance.com</email>
</author>
<published>2014-01-19T07:38:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=50eadcd4223cafe4f57aca4de72b9119ae422150'/>
<id>50eadcd4223cafe4f57aca4de72b9119ae422150</id>
<content type='text'>
Change-Id: I78a885ba98363ca309598294bc84604d05a55446
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I78a885ba98363ca309598294bc84604d05a55446
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix cacert argument to HTTPS connection</title>
<updated>2013-10-24T08:00:35+00:00</updated>
<author>
<name>Kieran Spear</name>
<email>kispear@gmail.com</email>
</author>
<published>2013-10-24T07:50:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=e337ae3f639d506a40538d6540ca5cdc4da9db61'/>
<id>e337ae3f639d506a40538d6540ca5cdc4da9db61</id>
<content type='text'>
This fixes a typo that broke the client for HTTPS URLs.

Added a basic test to cover this case.
Coverage is very low in common/http.py.

Change-Id: Ic440f20f463c3b8558a7639f1015096a01496cf8
Closes-bug: 1244091
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a typo that broke the client for HTTPS URLs.

Added a basic test to cover this case.
Coverage is very low in common/http.py.

Change-Id: Ic440f20f463c3b8558a7639f1015096a01496cf8
Closes-bug: 1244091
</pre>
</div>
</content>
</entry>
<entry>
<title>Translate print statement to print function</title>
<updated>2013-10-14T09:23:27+00:00</updated>
<author>
<name>Kui Shi</name>
<email>skuicloud@gmail.com</email>
</author>
<published>2013-10-14T08:56:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=39328adaff910955407dadaad810cc2d6889f335'/>
<id>39328adaff910955407dadaad810cc2d6889f335</id>
<content type='text'>
Use "from __future__ import print_function"
docs.python.org/3/howto/pyporting.html#from-future-import-print-function

Partial Implement: blueprint py33-support

Change-Id: I92fc07257851795a9972c8273d3278c8679d6628
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use "from __future__ import print_function"
docs.python.org/3/howto/pyporting.html#from-future-import-print-function

Partial Implement: blueprint py33-support

Change-Id: I92fc07257851795a9972c8273d3278c8679d6628
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace OpenStack LLC with OpenStack Foundation</title>
<updated>2013-09-19T19:58:04+00:00</updated>
<author>
<name>ZhiQiang Fan</name>
<email>aji.zqfan@gmail.com</email>
</author>
<published>2013-09-19T19:14:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=fb1ff39d53826b94c3c04645d972a0a96dc8225a'/>
<id>fb1ff39d53826b94c3c04645d972a0a96dc8225a</id>
<content type='text'>
Change-Id: Ia007da282714d8ee7337fd3b51f6dcc3b64d7ec3
Fixes-Bug: #1214176
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ia007da282714d8ee7337fd3b51f6dcc3b64d7ec3
Fixes-Bug: #1214176
</pre>
</div>
</content>
</entry>
<entry>
<title>Move tests to ceilometerclient.</title>
<updated>2013-07-01T05:40:55+00:00</updated>
<author>
<name>Monty Taylor</name>
<email>mordred@inaugust.com</email>
</author>
<published>2013-07-01T05:40:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=6f81aa1a99b4e073855270120d18643ee0a7133e'/>
<id>6f81aa1a99b4e073855270120d18643ee0a7133e</id>
<content type='text'>
tests.* implies an incorrect global package name. Additionally,
consuming code can benefit from being able to choose to consume
test code and fixtures.

Change-Id: I7ba2b3ba1c2a99410b54fc40b48dfe2fc53eb79a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tests.* implies an incorrect global package name. Additionally,
consuming code can benefit from being able to choose to consume
test code and fixtures.

Change-Id: I7ba2b3ba1c2a99410b54fc40b48dfe2fc53eb79a
</pre>
</div>
</content>
</entry>
</feed>
