<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-neutronclient.git/quantumclient/common/exceptions.py, branch quantumclient</title>
<subtitle>opendev.org: openstack/python-neutronclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/'/>
<entry>
<title>add missing symbols for 3rd party libs</title>
<updated>2013-09-27T19:25:34+00:00</updated>
<author>
<name>Mark McClain</name>
<email>mark.mcclain@dreamhost.com</email>
</author>
<published>2013-09-27T19:25:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=a4cc81bce47f5ce8c03c1b4dca5b00d638327585'/>
<id>a4cc81bce47f5ce8c03c1b4dca5b00d638327585</id>
<content type='text'>
Change-Id: Id0f758b105b51059c6788afb92ac5840caff6102
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Id0f758b105b51059c6788afb92ac5840caff6102
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove quantumclient and proxy to neutronclient</title>
<updated>2013-09-25T23:38:14+00:00</updated>
<author>
<name>Mark McClain</name>
<email>mark.mcclain@dreamhost.com</email>
</author>
<published>2013-09-25T23:13:38+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=cbb83121c09f95b00720f494ab5f424612ac207d'/>
<id>cbb83121c09f95b00720f494ab5f424612ac207d</id>
<content type='text'>
Change-Id: I95a351071e68dfc2d67f3895c87f45ad2221767f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I95a351071e68dfc2d67f3895c87f45ad2221767f
</pre>
</div>
</content>
</entry>
<entry>
<title>Enables H404 check (multi line docstring) in flake8</title>
<updated>2013-06-17T09:32:54+00:00</updated>
<author>
<name>Akihiro MOTOKI</name>
<email>motoki@da.jp.nec.com</email>
</author>
<published>2013-06-10T13:04:56+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=a5076e620762a5560e694bb10f2c742cff3c57db'/>
<id>a5076e620762a5560e694bb10f2c742cff3c57db</id>
<content type='text'>
This commit ensures docstring follows the docstring convention.

Also enables H301 (one import per line) in flake8.
There is already no violation the source codes.

Change-Id: Icf6ce5bae40b2e6492c060a28587d825a1837b43
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit ensures docstring follows the docstring convention.

Also enables H301 (one import per line) in flake8.
There is already no violation the source codes.

Change-Id: Icf6ce5bae40b2e6492c060a28587d825a1837b43
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Avoid error 414 when retrieving subnet cidrs for ListNetworks"</title>
<updated>2013-05-22T08:58:37+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-05-22T08:58:37+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=5011a21cb3d149181d9c42d75096f3dc1bc7b62a'/>
<id>5011a21cb3d149181d9c42d75096f3dc1bc7b62a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow the HTTPClient consumer to pass endpoint_type.</title>
<updated>2013-05-21T02:47:48+00:00</updated>
<author>
<name>Carl Baldwin</name>
<email>carl.baldwin@hp.com</email>
</author>
<published>2013-04-30T21:20:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=06375f089b9938f1db7f6abc4b2144df2ff6b4fd'/>
<id>06375f089b9938f1db7f6abc4b2144df2ff6b4fd</id>
<content type='text'>
Changes the default behavior of the client.  It will now choose
publicURL by default rather than adminURL.

Now allows the consumer to pass adminURL, internalURL or some other
endpoint type when constructing a Client to override this default
behavior.

Adds --endpoint-type option to the shell client.  Defaults to the
environment variable OS_ENDPOINT_TYPE or publicURL.  This was
patterned after the same option in the Nova client.

Adds a new exception type to handle the case where a suitable endpoint
type is not found in the catalog.  Without this, the exception
encountered is a KeyError that was not clearly reported to the caller
of the quantum command line.

Change-Id: Iaffcaff291d433a605d8379dc89c1308096d36c2
Fixes: Bug #1176197
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes the default behavior of the client.  It will now choose
publicURL by default rather than adminURL.

Now allows the consumer to pass adminURL, internalURL or some other
endpoint type when constructing a Client to override this default
behavior.

Adds --endpoint-type option to the shell client.  Defaults to the
environment variable OS_ENDPOINT_TYPE or publicURL.  This was
patterned after the same option in the Nova client.

Adds a new exception type to handle the case where a suitable endpoint
type is not found in the catalog.  Without this, the exception
encountered is a KeyError that was not clearly reported to the caller
of the quantum command line.

Change-Id: Iaffcaff291d433a605d8379dc89c1308096d36c2
Fixes: Bug #1176197
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid error 414 when retrieving subnet cidrs for ListNetworks</title>
<updated>2013-05-03T20:44:22+00:00</updated>
<author>
<name>Salvatore Orlando</name>
<email>salv.orlando@gmail.com</email>
</author>
<published>2013-05-03T17:46:11+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=7c6327e06207ea2107ba15deda76acd764d9d6ad'/>
<id>7c6327e06207ea2107ba15deda76acd764d9d6ad</id>
<content type='text'>
Bug 1172537

In order to avoif 414 the list subnet requests will be split in
multiple requests. The total URI len for each of these requests
will be lower than 8K (the default maximum for eventlet.wsgi.server).
The patch tries to submit a single request, and if the URI is too
long an exception is raised before the request is sent over the
wire; the exception handler will split the subnet id list, and
submit the new requests.

This patch does not address the case in which the server is
configured with a maximum URI length different from 8K.

Change-Id: Ia2414cd5374a91d3d12215807037a5d46b836ad6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug 1172537

In order to avoif 414 the list subnet requests will be split in
multiple requests. The total URI len for each of these requests
will be lower than 8K (the default maximum for eventlet.wsgi.server).
The patch tries to submit a single request, and if the URI is too
long an exception is raised before the request is sent over the
wire; the exception handler will split the subnet id list, and
submit the new requests.

This patch does not address the case in which the server is
configured with a maximum URI length different from 8K.

Change-Id: Ia2414cd5374a91d3d12215807037a5d46b836ad6
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable automatic validation of many HACKING rules.</title>
<updated>2013-04-08T23:10:35+00:00</updated>
<author>
<name>Maru Newby</name>
<email>marun@redhat.com</email>
</author>
<published>2013-04-05T23:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=3c193c9387308af6153c0e6e3d751b6672667c82'/>
<id>3c193c9387308af6153c0e6e3d751b6672667c82</id>
<content type='text'>
 * Add hacking to the tox build - a set of flake8 plugins that
   perform automatic validation of many HACKING.rst rules.
 * This patch configures hacking in the tox build and performs
   the mechanical cleanup required to allow the checks to pass.
 * See https://pypi.python.org/pypi/hacking

Change-Id: Ib41313b5aae991e6ffef2a89dd69e83985bdc36d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * Add hacking to the tox build - a set of flake8 plugins that
   perform automatic validation of many HACKING.rst rules.
 * This patch configures hacking in the tox build and performs
   the mechanical cleanup required to allow the checks to pass.
 * See https://pypi.python.org/pypi/hacking

Change-Id: Ib41313b5aae991e6ffef2a89dd69e83985bdc36d
</pre>
</div>
</content>
</entry>
<entry>
<title>Add exceptions messages for authentication</title>
<updated>2013-02-14T12:05:20+00:00</updated>
<author>
<name>Gary Kotton</name>
<email>gkotton@redhat.com</email>
</author>
<published>2013-02-14T12:04:26+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=2711af7ae39e0aa1f2da9aa1cc6c65eef0117fab'/>
<id>2711af7ae39e0aa1f2da9aa1cc6c65eef0117fab</id>
<content type='text'>
Fixes bug 1125137

Change-Id: Id79d11fb515a7af3b4e5cbe87bc717880fdb268b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes bug 1125137

Change-Id: Id79d11fb515a7af3b4e5cbe87bc717880fdb268b
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove gettext.install from quantumclient.__init__</title>
<updated>2013-02-05T08:47:19+00:00</updated>
<author>
<name>He Jie Xu</name>
<email>xuhj@linux.vnet.ibm.com</email>
</author>
<published>2013-01-19T13:39:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=6cc6875b383b7f94e0f2cd6ebafeac3159a112d4'/>
<id>6cc6875b383b7f94e0f2cd6ebafeac3159a112d4</id>
<content type='text'>
fix bug 1097628

Change-Id: Ic6f2dfb4593fa507fb788786616bff6af3cbb896
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix bug 1097628

Change-Id: Ic6f2dfb4593fa507fb788786616bff6af3cbb896
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to retrieve objects by name</title>
<updated>2012-07-26T10:23:46+00:00</updated>
<author>
<name>Salvatore Orlando</name>
<email>salv.orlando@gmail.com</email>
</author>
<published>2012-07-25T06:45:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=d16e00a056bbe7ba576c4b7195180bfc383bbfad'/>
<id>d16e00a056bbe7ba576c4b7195180bfc383bbfad</id>
<content type='text'>
Fixes bug 979527

xxx-show commands now can accept either an id or a name of the resource to
retrieve, similarly to the "nova get" command. This has been preferred to
using mutually exclusive keyword argument, in order to avoid confusion
with other CLI tools.

NOTE: the current patch allow search by name only for networks.
The restriction will be lifted once name attributes for port and subnets
are added.

Change-Id: Id186139a01c9f2cfc36ca3405b4024bd7780622e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes bug 979527

xxx-show commands now can accept either an id or a name of the resource to
retrieve, similarly to the "nova get" command. This has been preferred to
using mutually exclusive keyword argument, in order to avoid confusion
with other CLI tools.

NOTE: the current patch allow search by name only for networks.
The restriction will be lifted once name attributes for port and subnets
are added.

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