<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-heatclient.git/heatclient/exc.py, branch train-em</title>
<subtitle>opendev.org: openstack/python-heatclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/'/>
<entry>
<title>Fix missing print format</title>
<updated>2019-05-21T07:03:08+00:00</updated>
<author>
<name>zhufl</name>
<email>zhu.fanglei@zte.com.cn</email>
</author>
<published>2019-05-21T06:59:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=036ae75689a8bdbb38c471e417bc71becb423bb0'/>
<id>036ae75689a8bdbb38c471e417bc71becb423bb0</id>
<content type='text'>
This is to:
1. Add missing print format for "%(hook_type)".
2. Add ws between words in log message "notavailable".

Change-Id: Iaee8697c95f66bff0536db9a266158a3cbc89412
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is to:
1. Add missing print format for "%(hook_type)".
2. Add ws between words in log message "notavailable".

Change-Id: Iaee8697c95f66bff0536db9a266158a3cbc89412
</pre>
</div>
</content>
</entry>
<entry>
<title>Move required modules from oslo-incubator</title>
<updated>2016-11-12T13:45:40+00:00</updated>
<author>
<name>rabi</name>
<email>ramishra@redhat.com</email>
</author>
<published>2016-11-04T08:03:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=b25baa9108bb37e0ece20895d464acf00ab2706c'/>
<id>b25baa9108bb37e0ece20895d464acf00ab2706c</id>
<content type='text'>
Move the required module to heatclient/common.

- heatclient/openstack/common/apiclient/base.py

It also moves some required functions and exceptions from
heatclient/openstack/common/cliutils.py and
heatclient/openstack/common/exceptions.py.

Change-Id: I68704c7fab9417492d8390ad05a9797f78d46907
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move the required module to heatclient/common.

- heatclient/openstack/common/apiclient/base.py

It also moves some required functions and exceptions from
heatclient/openstack/common/cliutils.py and
heatclient/openstack/common/exceptions.py.

Change-Id: I68704c7fab9417492d8390ad05a9797f78d46907
</pre>
</div>
</content>
</entry>
<entry>
<title>Graduate to oslo.i18n and cleanup incubator usage</title>
<updated>2016-11-08T02:59:09+00:00</updated>
<author>
<name>Chuck Short</name>
<email>chuck.short@canonical.com</email>
</author>
<published>2016-10-26T23:30:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=29d6c613f674bec9f36a6207ba1b9f50886863e8'/>
<id>29d6c613f674bec9f36a6207ba1b9f50886863e8</id>
<content type='text'>
Graduate from Oslo Incubator to oslo.i18n library.
Cleanup of unused Oslo Incubator utils.
Added optional enable_lazy() usage.

Change-Id: I5ec02477f3f52f4d7097669120581e82cced3748
Signed-off-by: Chuck Short &lt;chuck.short@canonical.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Graduate from Oslo Incubator to oslo.i18n library.
Cleanup of unused Oslo Incubator utils.
Added optional enable_lazy() usage.

Change-Id: I5ec02477f3f52f4d7097669120581e82cced3748
Signed-off-by: Chuck Short &lt;chuck.short@canonical.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Fill status code for every HTTPException"</title>
<updated>2016-03-14T00:23:40+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-03-14T00:23:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=090ae32542096246d592c9dfd53f9906883761f0'/>
<id>090ae32542096246d592c9dfd53f9906883761f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use oslo.utils.reflection to extract class name</title>
<updated>2016-02-16T12:44:57+00:00</updated>
<author>
<name>Bo Wang</name>
<email>bo.wang@easystack.cn</email>
</author>
<published>2016-02-16T12:44:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=236ba5fa6565fe340a1e098bcbe9b216fb5b8931'/>
<id>236ba5fa6565fe340a1e098bcbe9b216fb5b8931</id>
<content type='text'>
The oslo.utils.reflection.get_class_name() handles more variations
of where a class name may come from (on) python 2 and python 3.
Its usage allows getting more accurate class names so we'd better use it.

Change-Id: I97cc7f1e818161c2fe265da1ed1b52add1951c90
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The oslo.utils.reflection.get_class_name() handles more variations
of where a class name may come from (on) python 2 and python 3.
Its usage allows getting more accurate class names so we'd better use it.

Change-Id: I97cc7f1e818161c2fe265da1ed1b52add1951c90
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable pep8 E126 test</title>
<updated>2015-11-30T16:31:31+00:00</updated>
<author>
<name>ricolin</name>
<email>rico.l@inwinstack.com</email>
</author>
<published>2015-11-15T16:42:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=978eeb39949afa64d9bbbee7ae5799d45e9fd3d8'/>
<id>978eeb39949afa64d9bbbee7ae5799d45e9fd3d8</id>
<content type='text'>
Enable E126 continuation line over-indented for hanging indent.

Change-Id: I12ca2d8d610574dfcd528b0e613ec0328f4fb45e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable E126 continuation line over-indented for hanging indent.

Change-Id: I12ca2d8d610574dfcd528b0e613ec0328f4fb45e
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable pep8 E265 test</title>
<updated>2015-11-23T15:45:04+00:00</updated>
<author>
<name>ricolin</name>
<email>rico.l@inwinstack.com</email>
</author>
<published>2015-11-15T15:07:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=6f1542c2ca9a477d836039ec82ff6d2890eb71cd'/>
<id>6f1542c2ca9a477d836039ec82ff6d2890eb71cd</id>
<content type='text'>
Enable E265 block comment should start with '# '

Change-Id: I78813e73f8dd800bc58a1d69eedc2c066ccb8c28
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable E265 block comment should start with '# '

Change-Id: I78813e73f8dd800bc58a1d69eedc2c066ccb8c28
</pre>
</div>
</content>
</entry>
<entry>
<title>Fill status code for every HTTPException</title>
<updated>2015-11-12T08:43:23+00:00</updated>
<author>
<name>Bartlomiej Biernacki</name>
<email>pax0r@o2.pl</email>
</author>
<published>2015-11-12T08:43:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=11dfd95c469eea456841a9f6c7e04f34d62077c2'/>
<id>11dfd95c469eea456841a9f6c7e04f34d62077c2</id>
<content type='text'>
Change-Id: Ib73398f0a555c9ac4534fd3ce4a1c06e51bc5962
Closes-Bug: #1515519
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ib73398f0a555c9ac4534fd3ce4a1c06e51bc5962
Closes-Bug: #1515519
</pre>
</div>
</content>
</entry>
<entry>
<title>Poll functionality for stack create action</title>
<updated>2015-08-10T03:00:47+00:00</updated>
<author>
<name>Rakesh H S</name>
<email>rh-s@hp.com</email>
</author>
<published>2015-06-04T06:13:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=04b3880cb45fb683df32cca248a47f6578464d50'/>
<id>04b3880cb45fb683df32cca248a47f6578464d50</id>
<content type='text'>
Poll functionality is required for long running stacks.

When stack-create is passed with --poll argument, it will first print
stack-show output and then continously print the events in log format
until stack completes its action with success/failure.

This patch only implements poll for stack create action.

DocImpact
A new option --poll is added to stack-create.

Partial-Bug: #1420541

Change-Id: Ib7d35b66521f0ccca8544fd18fb70e04eaf98e5a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Poll functionality is required for long running stacks.

When stack-create is passed with --poll argument, it will first print
stack-show output and then continously print the events in log format
until stack completes its action with success/failure.

This patch only implements poll for stack create action.

DocImpact
A new option --poll is added to stack-create.

Partial-Bug: #1420541

Change-Id: Ib7d35b66521f0ccca8544fd18fb70e04eaf98e5a
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate to new oslo_xxx namespace</title>
<updated>2015-03-23T12:54:33+00:00</updated>
<author>
<name>tengqm</name>
<email>tengqim@cn.ibm.com</email>
</author>
<published>2015-03-23T11:49:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-heatclient.git/commit/?id=284c1c5b8da799564f0afb40aa0c1a69cecb40f7'/>
<id>284c1c5b8da799564f0afb40aa0c1a69cecb40f7</id>
<content type='text'>
This patch migrates the namespace of oslo packages from oslo.foobar to
oslo_foobar.  The oslo_incubator code need to be resynced, which will be
submitted in another patch.

Change-Id: Id77207750556b71f20797a0ee6f2cafd62ea30e1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch migrates the namespace of oslo packages from oslo.foobar to
oslo_foobar.  The oslo_incubator code need to be resynced, which will be
submitted in another patch.

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