Commit 34f64582 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Remove unused variables.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2122 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent fe222983
...@@ -253,9 +253,6 @@ class Application(object): ...@@ -253,9 +253,6 @@ class Application(object):
node_dict = {} node_dict = {}
# group modified nodes by destination node type # group modified nodes by destination node type
for node in node_list: for node in node_list:
address = node.getAddress()
uuid = node.getUUID()
state = node.getState()
node_info = node.asTuple() node_info = node.asTuple()
def assign_for_notification(node_type): def assign_for_notification(node_type):
# helper function # helper function
...@@ -319,7 +316,6 @@ class Application(object): ...@@ -319,7 +316,6 @@ class Application(object):
""" """
logging.info('provide service') logging.info('provide service')
em = self.em em = self.em
nm = self.nm
self.tm.reset() self.tm.reset()
self.changeClusterState(ClusterStates.RUNNING) self.changeClusterState(ClusterStates.RUNNING)
...@@ -429,7 +425,6 @@ class Application(object): ...@@ -429,7 +425,6 @@ class Application(object):
""" """
if self.cluster_state == state: if self.cluster_state == state:
return return
nm, em = self.nm, self.em
# select the storage handler # select the storage handler
client_handler = client.ClientServiceHandler(self) client_handler = client.ClientServiceHandler(self)
......
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