Commit fd6f1513 authored by Aurel's avatar Aurel

uuid is defined on app not self


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@402 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 2227293f
...@@ -211,7 +211,7 @@ class VerificationEventHandler(StorageEventHandler): ...@@ -211,7 +211,7 @@ class VerificationEventHandler(StorageEventHandler):
node = nm.getNodeByUUID(uuid) node = nm.getNodeByUUID(uuid)
if node is None: if node is None:
node = StorageNode(uuid = uuid) node = StorageNode(uuid = uuid)
if uuid != self.uuid: if uuid != app.uuid:
node.setState(TEMPORARILY_DOWN_STATE) node.setState(TEMPORARILY_DOWN_STATE)
nm.add(node) nm.add(node)
......
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