<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/taskflow.git/taskflow/tests, branch 0.7.1</title>
<subtitle>opendev.org: openstack/taskflow.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/'/>
<entry>
<title>Merge "Revert "Add retries to fetching the zookeeper server version""</title>
<updated>2015-02-16T19:44:55+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-16T19:44:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=28bece7c7c97199b8d941b16865c3670c323589a'/>
<id>28bece7c7c97199b8d941b16865c3670c323589a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "adding check for str/unicode type in requires"</title>
<updated>2015-02-16T19:15:44+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-16T19:15:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=77e6b99afc316ebc8e9200703bdb843452e7b62d'/>
<id>77e6b99afc316ebc8e9200703bdb843452e7b62d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Add retries to fetching the zookeeper server version"</title>
<updated>2015-02-16T18:13:31+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@gmail.com</email>
</author>
<published>2015-02-16T18:13:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=9f60336aad60648415cbe711f8813196704f813a'/>
<id>9f60336aad60648415cbe711f8813196704f813a</id>
<content type='text'>
This reverts commit a14adc3c62658228a12d45e0851ae443c8429b85.

Change-Id: Ib0d1dad15142b3b8650d343515ad4c61db65db1b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit a14adc3c62658228a12d45e0851ae443c8429b85.

Change-Id: Ib0d1dad15142b3b8650d343515ad4c61db65db1b
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add retries to fetching the zookeeper server version"</title>
<updated>2015-02-16T16:25:49+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-16T16:25:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=a3f126f0e66fd5cf98db52e6ce7a03de1c4ccd3e'/>
<id>a3f126f0e66fd5cf98db52e6ce7a03de1c4ccd3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>adding check for str/unicode type in requires</title>
<updated>2015-02-16T07:20:48+00:00</updated>
<author>
<name>Min Pae</name>
<email>sputnik13@gmail.com</email>
</author>
<published>2015-02-16T00:55:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=55110111851939cef650ff400f57598f7fb484d2'/>
<id>55110111851939cef650ff400f57598f7fb484d2</id>
<content type='text'>
When the requires argument for an Atom is passed in as a string,
each character of the string is iterated over to build up a
requirement list.  This works for simple one letter argument
names but not for long argument names.

Added check for str and unicode types to prevent iterating over a
string.

Change-Id: Ida584221b48966d26935fb2ede0075aabb7ce972
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the requires argument for an Atom is passed in as a string,
each character of the string is iterated over to build up a
requirement list.  This works for simple one letter argument
names but not for long argument names.

Added check for str and unicode types to prevent iterating over a
string.

Change-Id: Ida584221b48966d26935fb2ede0075aabb7ce972
</pre>
</div>
</content>
</entry>
<entry>
<title>Add retries to fetching the zookeeper server version</title>
<updated>2015-02-16T04:07:22+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2015-02-14T01:34:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=a14adc3c62658228a12d45e0851ae443c8429b85'/>
<id>a14adc3c62658228a12d45e0851ae443c8429b85</id>
<content type='text'>
Apparently the execution of four-letter commands to
zookeeper is known to be flakey (and you may receive
partial results) so to avoid this use the retrying
library during fetching/parsing of the server version
and try up to 3 times to get a valid version from the
zookeeper server.

When the following merges (and is released) we can
likely remove this equivalent/similar code:

https://github.com/python-zk/kazoo/pull/280

Change-Id: I9191c463c7969df101541463a76fe20ff5ed06af
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Apparently the execution of four-letter commands to
zookeeper is known to be flakey (and you may receive
partial results) so to avoid this use the retrying
library during fetching/parsing of the server version
and try up to 3 times to get a valid version from the
zookeeper server.

When the following merges (and is released) we can
likely remove this equivalent/similar code:

https://github.com/python-zk/kazoo/pull/280

Change-Id: I9191c463c7969df101541463a76fe20ff5ed06af
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add a BFS tree iterator"</title>
<updated>2015-02-15T05:10:19+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-15T05:10:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=345afc037bf6b9f1eb23e54b598f2611eb3f390b'/>
<id>345afc037bf6b9f1eb23e54b598f2611eb3f390b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Improve upon/adjust/move around new optional example"</title>
<updated>2015-02-14T06:20:46+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-14T06:20:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=517dc1f4316a5bbca96df3714646f2fef0aff2eb'/>
<id>517dc1f4316a5bbca96df3714646f2fef0aff2eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "DFS in right order when not starting at the provided node"</title>
<updated>2015-02-12T07:08:35+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-12T07:08:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=c6d57a022793e9195dd3355bbfd35e8c96c6dd64'/>
<id>c6d57a022793e9195dd3355bbfd35e8c96c6dd64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Modify stop and add wait on conductor to prevent lockups"</title>
<updated>2015-02-12T07:08:09+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-02-12T07:08:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/taskflow.git/commit/?id=56edc108ab409d1648e8a715d2c6747869b83e08'/>
<id>56edc108ab409d1648e8a715d2c6747869b83e08</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
