<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-ceilometerclient.git, branch 2.6.1</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>Fix from_response method to process response from requests</title>
<updated>2016-09-07T09:54:24+00:00</updated>
<author>
<name>Andrey Kurilin</name>
<email>akurilin@mirantis.com</email>
</author>
<published>2016-09-07T09:39:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=090e5ffc691c5d40e45ab0c20dc88032a0987b20'/>
<id>090e5ffc691c5d40e45ab0c20dc88032a0987b20</id>
<content type='text'>
SessionClient uses requests library. It's response class doesn't have
"status" property[1], so in case of any errors(with status code &gt; 400),
from_response method is called and raises AttributeError.

Also, HTTPClient implementation uses requests lib by default[2](if 'http'
argument was not transmitted), so from_response method will raise
AttributeError too.

[1] - http://docs.python-requests.org/en/master/api/#requests.Response.status_code
[2] - https://github.com/openstack/python-ceilometerclient/blob/2.6.0/ceilometerclient/openstack/common/apiclient/client.py#L99-L100

Change-Id: Id8fb2f386e8101951716f30a6365c9aa15bd4b24
Closes-Bug: #1620974
(cherry picked from commit 1b1917ab9b56fe92235ce336d3df3e7a8c1c81d2)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SessionClient uses requests library. It's response class doesn't have
"status" property[1], so in case of any errors(with status code &gt; 400),
from_response method is called and raises AttributeError.

Also, HTTPClient implementation uses requests lib by default[2](if 'http'
argument was not transmitted), so from_response method will raise
AttributeError too.

[1] - http://docs.python-requests.org/en/master/api/#requests.Response.status_code
[2] - https://github.com/openstack/python-ceilometerclient/blob/2.6.0/ceilometerclient/openstack/common/apiclient/client.py#L99-L100

Change-Id: Id8fb2f386e8101951716f30a6365c9aa15bd4b24
Closes-Bug: #1620974
(cherry picked from commit 1b1917ab9b56fe92235ce336d3df3e7a8c1c81d2)
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Correct the parameters's position of assertEqual"</title>
<updated>2016-08-08T15:20:45+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-08-08T15:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=7c6cc05ff0e9e95313384303deee69ef11929bc1'/>
<id>7c6cc05ff0e9e95313384303deee69ef11929bc1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Remove keystoneclient dependency"</title>
<updated>2016-08-08T11:11:16+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-08-08T11:11:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=b064a07fa0b4da9859f99d0e0cb04f2c64b4343c'/>
<id>b064a07fa0b4da9859f99d0e0cb04f2c64b4343c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[trivial] add a blank character</title>
<updated>2016-08-04T03:17:33+00:00</updated>
<author>
<name>zhangguoqing</name>
<email>zhang.guoqing@99cloud.net</email>
</author>
<published>2016-08-04T03:14:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=45d475dfe2de8af2eedb22bfd18b955749933248'/>
<id>45d475dfe2de8af2eedb22bfd18b955749933248</id>
<content type='text'>
In ceilometer help event-list, the line
"integer, floator datetime." should be "integer, float or datetime."

Change-Id: Ib8976b5e580e2a95a4e04d7d95c815011127749c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In ceilometer help event-list, the line
"integer, floator datetime." should be "integer, float or datetime."

Change-Id: Ib8976b5e580e2a95a4e04d7d95c815011127749c
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct the parameters's position of assertEqual</title>
<updated>2016-07-29T03:08:36+00:00</updated>
<author>
<name>xiaozhuangqing</name>
<email>zhuangqing.xiao@easystack.cn</email>
</author>
<published>2016-07-29T02:47:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=481cd7d33bf5f91c39888fa695238c562eda7945'/>
<id>481cd7d33bf5f91c39888fa695238c562eda7945</id>
<content type='text'>
assertEqual using should be assertEqual(expected, actual)

misplace have two impacts:
1.giving confusing messages when some tests failed.
2.mislead other developer,new test modules may follow these wrong pattern

see Partial-Bug  https://bugs.launchpad.net/oslo.config/+bug/1604213

Change-Id: I4467d5efb1eed9f4c473c947c93afcfaf9be6ea6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
assertEqual using should be assertEqual(expected, actual)

misplace have two impacts:
1.giving confusing messages when some tests failed.
2.mislead other developer,new test modules may follow these wrong pattern

see Partial-Bug  https://bugs.launchpad.net/oslo.config/+bug/1604213

Change-Id: I4467d5efb1eed9f4c473c947c93afcfaf9be6ea6
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Remove discover from test-requirements"</title>
<updated>2016-07-28T20:15:34+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-07-28T20:15:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=3b35aea69e8618331d85aafe6347572e1db06cd5'/>
<id>3b35aea69e8618331d85aafe6347572e1db06cd5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove keystoneclient dependency</title>
<updated>2016-07-28T14:53:43+00:00</updated>
<author>
<name>Julien Danjou</name>
<email>julien@danjou.info</email>
</author>
<published>2016-07-28T14:52:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=6ca1f270fdc8f04309577c2a9966cf9826595c3e'/>
<id>6ca1f270fdc8f04309577c2a9966cf9826595c3e</id>
<content type='text'>
Change-Id: I3589eca8fd6a581e57524cffa8a8f1278358f38c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I3589eca8fd6a581e57524cffa8a8f1278358f38c
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for Python 3.5</title>
<updated>2016-07-27T13:27:30+00:00</updated>
<author>
<name>Julien Danjou</name>
<email>julien@danjou.info</email>
</author>
<published>2016-07-27T13:27:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=f0faf477afe22f691e586900dcd8abaaccbb767c'/>
<id>f0faf477afe22f691e586900dcd8abaaccbb767c</id>
<content type='text'>
This fixes a test that check too much of the output formatting. Just
test that some of the values we expect are there.

Change-Id: I43a2c2d017bc99ef045ff2e4c5943f1607343ec1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a test that check too much of the output formatting. Just
test that some of the values we expect are there.

Change-Id: I43a2c2d017bc99ef045ff2e4c5943f1607343ec1
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove discover from test-requirements</title>
<updated>2016-07-21T17:17:19+00:00</updated>
<author>
<name>Swapnil Kulkarni (coolsvap)</name>
<email>me@coolsvap.net</email>
</author>
<published>2016-07-21T17:16:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=766b6e1ecf534b60d3b002fe86dfa70964891291'/>
<id>766b6e1ecf534b60d3b002fe86dfa70964891291</id>
<content type='text'>
It's only needed for python &lt; 2.7 which is not supported

Change-Id: I998be560850a2e51d2ba29552617f5722b67f203
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's only needed for python &lt; 2.7 which is not supported

Change-Id: I998be560850a2e51d2ba29552617f5722b67f203
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "base.Resource not define __ne__() built-in function"</title>
<updated>2016-07-12T02:54:39+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-07-12T02:54:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=cfea4aed4aed208358560f9d70b4cbd3d577fc50'/>
<id>cfea4aed4aed208358560f9d70b4cbd3d577fc50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
