<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-glanceclient.git/glanceclient/common, branch feature/artifacts</title>
<subtitle>opendev.org: openstack/python-glanceclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/'/>
<entry>
<title>Fix exception message in Http.py</title>
<updated>2015-07-14T01:01:12+00:00</updated>
<author>
<name>wangxiyuan</name>
<email>wangxiyuan@huawei.com</email>
</author>
<published>2015-07-06T06:37:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=b48ff98e165160abc1354c2dfe8d9edf472b6965'/>
<id>b48ff98e165160abc1354c2dfe8d9edf472b6965</id>
<content type='text'>
In common.http.py, the exception RequestTimeout has
wrong message.This patch fixed it.

Change-Id: Ie8ff188b9c82ce424cb8177278f36e4d1275b306
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In common.http.py, the exception RequestTimeout has
wrong message.This patch fixed it.

Change-Id: Ie8ff188b9c82ce424cb8177278f36e4d1275b306
</pre>
</div>
</content>
</entry>
<entry>
<title>Import only modules and update tox.ini</title>
<updated>2015-06-17T15:56:37+00:00</updated>
<author>
<name>Cindy Pallares</name>
<email>cindy.pallaresq@gmail.com</email>
</author>
<published>2015-05-20T00:59:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=997c12d3abfd9a571a4e8f0b022dfb1d27c62edb'/>
<id>997c12d3abfd9a571a4e8f0b022dfb1d27c62edb</id>
<content type='text'>
As stated in the OpenStack Hacking Guidelines, it is prefered
that only modules should be imported.

Also updated tox.ini to ignore opestack/common among others.

Change-Id: I2f0a603c31052eadee581c11880c0ec6bd392829
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As stated in the OpenStack Hacking Guidelines, it is prefered
that only modules should be imported.

Also updated tox.ini to ignore opestack/common among others.

Change-Id: I2f0a603c31052eadee581c11880c0ec6bd392829
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Close iterables at the end of iteration"</title>
<updated>2015-06-16T19:01:18+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-06-16T19:01:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=71d852836474f59f10a7bb9883f6dcecc56e5675'/>
<id>71d852836474f59f10a7bb9883f6dcecc56e5675</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Close iterables at the end of iteration</title>
<updated>2015-06-11T18:11:39+00:00</updated>
<author>
<name>Robert Collins</name>
<email>rbtcollins@hp.com</email>
</author>
<published>2015-06-10T21:21:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=43621dc1ac626f7ce3322cee8b7908a93af20f26'/>
<id>43621dc1ac626f7ce3322cee8b7908a93af20f26</id>
<content type='text'>
This fixes a bug where if iteration is interrupted, we're stuck until
the iterable is garbage collected, which can be a very long time (e.g. if
the iterable is held in an exception stack frame).

Co-authored-by: Stuart McLaren &lt;stuart.mclaren@hp.com&gt;

Change-Id: Ibe9990e8c337c117a978b1cd8ec388c4bc6d3b4b
Closes-bug: 1461678
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a bug where if iteration is interrupted, we're stuck until
the iterable is garbage collected, which can be a very long time (e.g. if
the iterable is held in an exception stack frame).

Co-authored-by: Stuart McLaren &lt;stuart.mclaren@hp.com&gt;

Change-Id: Ibe9990e8c337c117a978b1cd8ec388c4bc6d3b4b
Closes-bug: 1461678
</pre>
</div>
</content>
</entry>
<entry>
<title>Make glanceclient accept a session object</title>
<updated>2015-06-11T13:11:56+00:00</updated>
<author>
<name>Jamie Lennox</name>
<email>jamielennox@redhat.com</email>
</author>
<published>2014-11-25T03:25:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=5ce9c7dc964be0b3e8f9f273169b77ada85cd8ec'/>
<id>5ce9c7dc964be0b3e8f9f273169b77ada85cd8ec</id>
<content type='text'>
To make this work we create a different HTTPClient that extends the
basic keystoneclient Adapter. The Adapter is a standard set of
parameters that all clients should know how to use like region_name and
user_agent. We extend this with the glance specific response
manipulation like loading and sending iterables.

Implements: bp session-objects
Change-Id: Ie8eb4bbf7d1a037099a6d4b272cab70525fbfc85
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To make this work we create a different HTTPClient that extends the
basic keystoneclient Adapter. The Adapter is a standard set of
parameters that all clients should know how to use like region_name and
user_agent. We extend this with the glance specific response
manipulation like loading and sending iterables.

Implements: bp session-objects
Change-Id: Ie8eb4bbf7d1a037099a6d4b272cab70525fbfc85
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix https stack trace on python 3.4 client</title>
<updated>2015-04-11T11:04:23+00:00</updated>
<author>
<name>Stuart McLaren</name>
<email>stuart.mclaren@hp.com</email>
</author>
<published>2015-04-11T10:28:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=bd0aa0672e0ebb5dfaa2178a8ffce79be143524b'/>
<id>bd0aa0672e0ebb5dfaa2178a8ffce79be143524b</id>
<content type='text'>
When using the client with python 3.4 and no ssl compression the following
stack trace ocurrs:

 TypeError: startswith first arg must be bytes or a tuple of bytes, not str

Closes-bug: 1442883
Related-bug: 1357430
Change-Id: I8e28f0bb1f3e866f11851247ce31470ca8c2af4f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When using the client with python 3.4 and no ssl compression the following
stack trace ocurrs:

 TypeError: startswith first arg must be bytes or a tuple of bytes, not str

Closes-bug: 1442883
Related-bug: 1357430
Change-Id: I8e28f0bb1f3e866f11851247ce31470ca8c2af4f
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix client when using no ssl compression</title>
<updated>2015-04-11T11:03:54+00:00</updated>
<author>
<name>Stuart McLaren</name>
<email>stuart.mclaren@hp.com</email>
</author>
<published>2015-04-10T14:25:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=c698b4e3227b4767f042e435423fcc307d7f6d5c'/>
<id>c698b4e3227b4767f042e435423fcc307d7f6d5c</id>
<content type='text'>
Since the release of the 0.16.1 client, using the 'no ssl compression'
option, whether on the command line, or via the library -- Nova does this by
default -- a stack trace was generated.

Closes-bug: 1442664
Related-bug: 1357430

Change-Id: I2b8ddcb0a7ae3cfccdfc20d3ba476f3b4f4ec32d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since the release of the 0.16.1 client, using the 'no ssl compression'
option, whether on the command line, or via the library -- Nova does this by
default -- a stack trace was generated.

Closes-bug: 1442664
Related-bug: 1357430

Change-Id: I2b8ddcb0a7ae3cfccdfc20d3ba476f3b4f4ec32d
</pre>
</div>
</content>
</entry>
<entry>
<title>glance image-show now have --human-readable option</title>
<updated>2015-03-22T11:56:55+00:00</updated>
<author>
<name>yatin karel</name>
<email>yatin.karel@nectechnologies.in</email>
</author>
<published>2015-03-22T11:22:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=c149a94ee1c8c5a04b984063cadf1dbc934eeb8b'/>
<id>c149a94ee1c8c5a04b984063cadf1dbc934eeb8b</id>
<content type='text'>
Added option '--human-readable' to image-show cli which allows users
to display image size in human-readable format.

Change-Id: Ic3452ce4560d3cf90fa7f59f98e5ff42e804f8c9
Closes-Bug: #1434381
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added option '--human-readable' to image-show cli which allows users
to display image size in human-readable format.

Change-Id: Ic3452ce4560d3cf90fa7f59f98e5ff42e804f8c9
Closes-Bug: #1434381
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Unify using six.moves.range rename everywhere"</title>
<updated>2015-03-04T16:29:50+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-03-04T16:29:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=ab52bf3ce2a2a7e42b48b499b56741d6dbe7c0df'/>
<id>ab52bf3ce2a2a7e42b48b499b56741d6dbe7c0df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "https: Prevent leaking sockets for some operations"</title>
<updated>2015-03-04T08:38:19+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-03-04T08:38:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=5ce1de9da47d0874ee2bf920fdb421c750bc1e89'/>
<id>5ce1de9da47d0874ee2bf920fdb421c750bc1e89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
