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

Loading…
Cancel
Save