2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-17 21:23:18 +00:00

Fix messaging about configuration

A mistake was made in the messaging layer consistency fixes.  This caused the attributes plugin to fail
with unexpected errors.
This commit is contained in:
Jarrod Johnson 2015-03-26 15:28:52 -04:00
parent 46b7550a41
commit d2f400d982

View File

@ -588,7 +588,7 @@ class ListAttributes(ConfluentMessage):
if self.notnode:
self.kvpairs = kv
else:
self.kvpairs = {node: kv}
self.kvpairs = {name: kv}
class CryptedAttributes(Attributes):
@ -611,5 +611,5 @@ class CryptedAttributes(Attributes):
self.kvpairs = nkv
else:
self.kvpairs = {
node: nkv
name: nkv
}