Commit d48c6993 authored by Aurel's avatar Aurel

do not send info about admin node to other node


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@554 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 7457be46
...@@ -337,6 +337,7 @@ class Application(object): ...@@ -337,6 +337,7 @@ class Application(object):
""" Send informations on all nodes through the given connection """ """ Send informations on all nodes through the given connection """
node_list = [] node_list = []
for n in self.nm.getNodeList(): for n in self.nm.getNodeList():
if n.getNodeType() != ADMIN_NODE_TYPE:
try: try:
ip_address, port = n.getServer() ip_address, port = n.getServer()
except TypeError: except TypeError:
......
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