<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-neutronclient.git/quantumclient/common/exceptions.py, branch 2.2.2</title>
<subtitle>opendev.org: openstack/python-neutronclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/'/>
<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://git.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://git.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://git.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://git.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://git.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://git.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://git.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>
<entry>
<title>add keystone support, new command interface, API v2.0</title>
<updated>2012-06-20T16:17:39+00:00</updated>
<author>
<name>Yong Sheng Gong</name>
<email>gongysh@cn.ibm.com</email>
</author>
<published>2012-05-18T01:02:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=dd803f8e26f4c3a3b8f1b9e7526d0e1980b2491c'/>
<id>dd803f8e26f4c3a3b8f1b9e7526d0e1980b2491c</id>
<content type='text'>
blueprint new-cli
Bug #1001053

Implement new commands interface, ready for v2.0. adopt cliff arch. new
client binary is quantumv2. After it is stable, we will remove quantum
binary. Httplibs2 is used.

usage: https://docs.google.com/document/d/1e_4UtnhFfgtnsB8EVB31BZKldaVzl_BlsGnGBrKmcDk/edit

Patch 2: add license header
Patch 3: add v1.0 support, fix show net details
Patch 4: quantumclient network api v2.0
Patch 5: subnet and port commands for api v2.0, add fields selector
Patch 6: add test cases
Patch 7: fix interactive mode, modify according to comments and https://review.openstack.org/#/c/8366/, add two tasks to BP: noauth and openstack common
Patch 8: fix log problem
Patch 9: modify according to the comments by dan on patch 5
Patch 10: just trigger jenkins
Patch 11: pep 1.3 fix
Patch 12: cliff and prettytable to more than 0.6.0
Patch 13: change setup.py to include more packages
Patch 14: pep check on jenkins
Patch 15: add license text to empty __init__.py files
Patch 16: fix v1.1 test cases after server changes

Change-Id: Ibbbdd834371c6a023b31e4797718fc0fe9786d89
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
blueprint new-cli
Bug #1001053

Implement new commands interface, ready for v2.0. adopt cliff arch. new
client binary is quantumv2. After it is stable, we will remove quantum
binary. Httplibs2 is used.

usage: https://docs.google.com/document/d/1e_4UtnhFfgtnsB8EVB31BZKldaVzl_BlsGnGBrKmcDk/edit

Patch 2: add license header
Patch 3: add v1.0 support, fix show net details
Patch 4: quantumclient network api v2.0
Patch 5: subnet and port commands for api v2.0, add fields selector
Patch 6: add test cases
Patch 7: fix interactive mode, modify according to comments and https://review.openstack.org/#/c/8366/, add two tasks to BP: noauth and openstack common
Patch 8: fix log problem
Patch 9: modify according to the comments by dan on patch 5
Patch 10: just trigger jenkins
Patch 11: pep 1.3 fix
Patch 12: cliff and prettytable to more than 0.6.0
Patch 13: change setup.py to include more packages
Patch 14: pep check on jenkins
Patch 15: add license text to empty __init__.py files
Patch 16: fix v1.1 test cases after server changes

Change-Id: Ibbbdd834371c6a023b31e4797718fc0fe9786d89
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove server-specific functionality.</title>
<updated>2012-04-24T21:14:52+00:00</updated>
<author>
<name>Maru Newby</name>
<email>mnewby@internap.com</email>
</author>
<published>2012-04-11T09:20:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=05c5a2b4a9b0eb9c0bf88cd81390c7bc906bd289'/>
<id>05c5a2b4a9b0eb9c0bf88cd81390c7bc906bd289</id>
<content type='text'>
 * Moved server-specific functionality found in quantum.common to
   the quantum repo.
 * Renamed primary package from quantum -&gt; quantumclient.
 * Addresses bug 977711 and bug 921933

Change-Id: If34553924c8dfcc6b148c1d91f173a4b81eeb95a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * Moved server-specific functionality found in quantum.common to
   the quantum repo.
 * Renamed primary package from quantum -&gt; quantumclient.
 * Addresses bug 977711 and bug 921933

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