Use self.this_node everywhere

This commit is contained in:
Joshua Boniface 2019-06-18 13:25:16 -04:00
parent aee078f3eb
commit d076f9f4eb
1 changed files with 8 additions and 8 deletions

View File

@ -424,7 +424,7 @@ def run_command(zk_conn, data, d_osd):
# Adding a new OSD # Adding a new OSD
if command == 'osd_add': if command == 'osd_add':
node, device, weight = args.split(',') node, device, weight = args.split(',')
if node == this_node.name: if node == self.this_node.name:
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -446,7 +446,7 @@ def run_command(zk_conn, data, d_osd):
osd_id = args osd_id = args
# Verify osd_id is in the list # Verify osd_id is in the list
if d_osd[osd_id] and d_osd[osd_id].node == this_node.name: if d_osd[osd_id] and d_osd[osd_id].node == self.this_node.name:
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -468,7 +468,7 @@ def run_command(zk_conn, data, d_osd):
osd_id = args osd_id = args
# Verify osd_id is in the list # Verify osd_id is in the list
if d_osd[osd_id] and d_osd[osd_id].node == this_node.name: if d_osd[osd_id] and d_osd[osd_id].node == self.this_node.name:
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -490,7 +490,7 @@ def run_command(zk_conn, data, d_osd):
osd_id = args osd_id = args
# Verify osd_id is in the list # Verify osd_id is in the list
if d_osd[osd_id] and d_osd[osd_id].node == this_node.name: if d_osd[osd_id] and d_osd[osd_id].node == self.this_node.name:
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -511,7 +511,7 @@ def run_command(zk_conn, data, d_osd):
elif command == 'osd_set': elif command == 'osd_set':
option = args option = args
if this_node.router_state == 'primary': if self.this_node.router_state == 'primary':
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -532,7 +532,7 @@ def run_command(zk_conn, data, d_osd):
elif command == 'osd_unset': elif command == 'osd_unset':
option = args option = args
if this_node.router_state == 'primary': if self.this_node.router_state == 'primary':
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -553,7 +553,7 @@ def run_command(zk_conn, data, d_osd):
elif command == 'pool_add': elif command == 'pool_add':
name, pgs = args.split(',') name, pgs = args.split(',')
if this_node.router_state == 'primary': if self.this_node.router_state == 'primary':
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock:
@ -574,7 +574,7 @@ def run_command(zk_conn, data, d_osd):
elif command == 'pool_remove': elif command == 'pool_remove':
name = args name = args
if this_node.router_state == 'primary': if self.this_node.router_state == 'primary':
# Lock the command queue # Lock the command queue
zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd') zk_lock = zkhandler.writelock(zk_conn, '/ceph/cmd')
with zk_lock: with zk_lock: