<feed xmlns='http://www.w3.org/2005/Atom'>
<title>oslo.git/openstack/common/rpc, branch shared-key-msg</title>
<subtitle>OpenStack's oslo-incubator patches.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/'/>
<entry>
<title>Add support for retrieving group keys</title>
<updated>2013-08-19T18:47:21+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-06-26T19:00:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=e9019d311626a4c050150249df58b9bcb9592372'/>
<id>e9019d311626a4c050150249df58b9bcb9592372</id>
<content type='text'>
Group keys are keys used by all the hosts listening to a specific
topic. The unqualified topic name is the group name.
Example: conductor, scheduler, ...

Change-Id: Ia5bcdd140cef16e07d4d8ab4030d1ac5cb59212c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Group keys are keys used by all the hosts listening to a specific
topic. The unqualified topic name is the group name.
Example: conductor, scheduler, ...

Change-Id: Ia5bcdd140cef16e07d4d8ab4030d1ac5cb59212c
</pre>
</div>
</content>
</entry>
<entry>
<title>RPC: Add support for optional message signing</title>
<updated>2013-08-19T18:47:16+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-04-25T02:57:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=85b975284947a4fc478df3c691d764d0172733e9'/>
<id>85b975284947a4fc478df3c691d764d0172733e9</id>
<content type='text'>
Wires in SecureMessage so that signing can be optionally used.
Signing messages is always attempted but failing to create a signed message is
currently not fatal. In case of failure the message is sent unsigned.

Once all services has been converted to support signing, we can start switching
on mandatory signing.

Currently the service name needs to be a global due to the way services are
constructed.

Change-Id: Ie565bbaf61a69a4e526e78e723efecb5e2712877
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wires in SecureMessage so that signing can be optionally used.
Signing messages is always attempted but failing to create a signed message is
currently not fatal. In case of failure the message is sent unsigned.

Once all services has been converted to support signing, we can start switching
on mandatory signing.

Currently the service name needs to be a global due to the way services are
constructed.

Change-Id: Ie565bbaf61a69a4e526e78e723efecb5e2712877
</pre>
</div>
</content>
</entry>
<entry>
<title>Adjust KDS communication protocol</title>
<updated>2013-08-19T18:47:16+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-08-13T16:13:23+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=71a62b2cbc489470c96ac771392270b6058ddaa1'/>
<id>71a62b2cbc489470c96ac771392270b6058ddaa1</id>
<content type='text'>
The KDS review process has determined some changes to the API. This patch fixes
KDSClient to interoperate properly.

Change-Id: I888e8a41573f171048356a9d277de1d7610537ce
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The KDS review process has determined some changes to the API. This patch fixes
KDSClient to interoperate properly.

Change-Id: I888e8a41573f171048356a9d277de1d7610537ce
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Make ZeroMQ based RPC consumer threads more robust"</title>
<updated>2013-08-19T13:01:30+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-08-19T13:01:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=1a9966e52d7bf35774b9a009afe6412e6c5f014a'/>
<id>1a9966e52d7bf35774b9a009afe6412e6c5f014a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>exception: remove</title>
<updated>2013-08-16T04:04:18+00:00</updated>
<author>
<name>Julien Danjou</name>
<email>julien@danjou.info</email>
</author>
<published>2013-07-30T10:51:54+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=9721129f2c0c331e3b0428554d421ae670039f81'/>
<id>9721129f2c0c331e3b0428554d421ae670039f81</id>
<content type='text'>
This patch drops the obsolete openstack.common.exception module.

Most project should define their own exception based on their API and
the context they evolve in. Many projects don't use this, only neutron,
cinder and heat used it. I've copy pasted the few exceptions that they
were using, but that's still by far less code than this whole file.
Ultimately that will let them a chance to remove or shring their own
exception.py. I don't think most projects should have one anyway.

Change-Id: Ia8b2b29bd443233def324e97de7342c2634bccff
Closes-Bug: #1208734
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch drops the obsolete openstack.common.exception module.

Most project should define their own exception based on their API and
the context they evolve in. Many projects don't use this, only neutron,
cinder and heat used it. I've copy pasted the few exceptions that they
were using, but that's still by far less code than this whole file.
Ultimately that will let them a chance to remove or shring their own
exception.py. I don't think most projects should have one anyway.

Change-Id: Ia8b2b29bd443233def324e97de7342c2634bccff
Closes-Bug: #1208734
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes files with wrong bitmode</title>
<updated>2013-08-13T12:36:30+00:00</updated>
<author>
<name>Zhongyue Luo</name>
<email>zhongyue.nah@intel.com</email>
</author>
<published>2013-08-13T12:13:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=28395d9ce5951234c7e690cd4dbe7b2fce084297'/>
<id>28395d9ce5951234c7e690cd4dbe7b2fce084297</id>
<content type='text'>
Some modules have bitmode 755. Changed to 644

Change-Id: I2084779186fcbd5ee2010451531355a0c67897f5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some modules have bitmode 755. Changed to 644

Change-Id: I2084779186fcbd5ee2010451531355a0c67897f5
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix case error in qpid exchange type "direct"</title>
<updated>2013-08-12T14:09:20+00:00</updated>
<author>
<name>David Ripton</name>
<email>dripton@redhat.com</email>
</author>
<published>2013-08-12T14:09:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=bec54ac5fb6a190c98079537f63d2f0e17584d21'/>
<id>bec54ac5fb6a190c98079537f63d2f0e17584d21</id>
<content type='text'>
Most places correctly have "direct", but one place has "Direct"
instead, which is incorrect.

Fixes bug #1211338

Change-Id: I2516317ff7f6ff18ee0a99a60d0c058ed309d4da
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most places correctly have "direct", but one place has "Direct"
instead, which is incorrect.

Fixes bug #1211338

Change-Id: I2516317ff7f6ff18ee0a99a60d0c058ed309d4da
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure context type is handled when using to_dict</title>
<updated>2013-08-10T03:26:53+00:00</updated>
<author>
<name>Lance Bragstad</name>
<email>ldbragst@us.ibm.com</email>
</author>
<published>2013-08-06T20:27:18+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=61c4cdec304d79f43c8a549c2543c939492c4812'/>
<id>61c4cdec304d79f43c8a549c2543c939492c4812</id>
<content type='text'>
Handle the case where the context passed into def pack_context() is a
dictionary. If a dictionary is passed in, we don't need to call to_dict
before updating the msg.

fixes bug 1208971

Change-Id: I2ce0b28f97634e717868e0ee5525189338d4981c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Handle the case where the context passed into def pack_context() is a
dictionary. If a dictionary is passed in, we don't need to call to_dict
before updating the msg.

fixes bug 1208971

Change-Id: I2ce0b28f97634e717868e0ee5525189338d4981c
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Allow non-use of cfg.CONF in securemessage"</title>
<updated>2013-08-09T09:27:07+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-08-09T09:27:07+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=de0427f8f886f6be4c0777cfaccc336bef6aee7a'/>
<id>de0427f8f886f6be4c0777cfaccc336bef6aee7a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Some nitpicky securemessage cleanups"</title>
<updated>2013-08-07T15:14:46+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-08-07T15:14:46+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/oslo.git/commit/?id=3f620281f8529e699fd61371f913299bf94bc099'/>
<id>3f620281f8529e699fd61371f913299bf94bc099</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
