Commit 986b3db0 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Set the uuid at node creation if supplied.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1412 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent f46ea8c5
......@@ -64,7 +64,7 @@ class PrimaryBootstrapHandler(AnswerBaseHandler):
for address, uuid in known_master_list:
n = app.nm.getByAddress(address)
if n is None:
n = app.nm.createMaster(address)
n = app.nm.createMaster(address=address, uuid=uuid)
if uuid is not None and n.getUUID() != uuid:
n.setUUID(uuid)
......
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