Update index.py

pull/561/head
Mr Chen 1 year ago
parent b270c1bfdc
commit 5ad4772c33
  1. 6
      plugins/mongodb/index.py

@ -1006,6 +1006,11 @@ def replSetNode():
arbiterOnly = args['arbiterOnly'].strip() arbiterOnly = args['arbiterOnly'].strip()
arbiterOnly = int(arbiterOnly) arbiterOnly = int(arbiterOnly)
votes = 1
if 'votes' in args:
votes = args['votes']
votes = int(votes)
is_have = False is_have = False
for x in nodes: for x in nodes:
if x['host'] == add_node: if x['host'] == add_node:
@ -1017,6 +1022,7 @@ def replSetNode():
t = {} t = {}
t['host'] = add_node t['host'] = add_node
t['priority'] = priority t['priority'] = priority
t['votes'] = votes
t['arbiterOnly'] = arbiterOnly t['arbiterOnly'] = arbiterOnly
nodes.append(t) nodes.append(t)

Loading…
Cancel
Save