Commit a5c37f28 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Reduce indentation.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1503 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 18fb1a46
...@@ -184,18 +184,17 @@ class ClientElectionHandler(ElectionHandler): ...@@ -184,18 +184,17 @@ class ClientElectionHandler(ElectionHandler):
# I don't know such a node. Probably this information # I don't know such a node. Probably this information
# is old. So ignore it. # is old. So ignore it.
logging.warning('received an unknown primary node UUID') logging.warning('received an unknown primary node UUID')
else: elif primary_node.getUUID() == primary_uuid:
if primary_node.getUUID() == primary_uuid: # Whatever the situation is, I trust this master.
# Whatever the situation is, I trust this master. app.primary = False
app.primary = False app.primary_master_node = primary_node
app.primary_master_node = primary_node # Stop waiting for connections than primary master's to
# Stop waiting for connections than primary master's to # complete to exit election phase ASAP.
# complete to exit election phase ASAP. primary_server = primary_node.getAddress()
primary_server = primary_node.getAddress() app.unconnected_master_node_set.intersection_update(
app.unconnected_master_node_set.intersection_update( [primary_server])
[primary_server]) app.negotiating_master_node_set.intersection_update(
app.negotiating_master_node_set.intersection_update( [primary_server])
[primary_server])
# Request a node idenfitication. # Request a node idenfitication.
conn.ask(Packets.RequestIdentification( conn.ask(Packets.RequestIdentification(
......
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