Commit 460ef1b0 authored by Julien Muchembled's avatar Julien Muchembled

client: uid should be already set on storage connections when accepting identification

parent 064cef58
...@@ -52,7 +52,7 @@ class StorageBootstrapHandler(AnswerBaseHandler): ...@@ -52,7 +52,7 @@ class StorageBootstrapHandler(AnswerBaseHandler):
master_list): master_list):
assert primary == self.app.primary_master_node.getAddress(), ( assert primary == self.app.primary_master_node.getAddress(), (
primary, self.app.primary_master_node) primary, self.app.primary_master_node)
node.setUUID(uuid) assert uuid == node.getUUID(), (uuid, node.getUUID())
class StorageAnswersHandler(AnswerBaseHandler): class StorageAnswersHandler(AnswerBaseHandler):
""" Handle all messages related to ZODB operations """ """ Handle all messages related to ZODB operations """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment