aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcarey.xu <carey.xuhan@huawei.com>2016-01-11 15:47:14 +0800
committerJustin chi <chigang@huawei.com>2016-01-14 06:11:04 +0000
commit0524cb673fbd9ff31db79f885f4a319ec96e2cc3 (patch)
treefe047ecb4124c23aae7dace4abcd06ba2e5c6cdd
parent6456fdfaa584336bc9db43b1214c4fbff084292b (diff)
bugfix: mongodb's priority should consistent with keepalived for failover
JIRA: COMPASS-260 Change-Id: I29e6e21e514e6dab5643e5558c81b851a4442e54 Signed-off-by: carey.xu <carey.xuhan@huawei.com> (cherry picked from commit da39c5ca863f133f6bbf978dce10b9d21b6b5399)
-rw-r--r--deploy/adapters/ansible/roles/database/templates/replica.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/adapters/ansible/roles/database/templates/replica.js b/deploy/adapters/ansible/roles/database/templates/replica.js
index d19db50d..dd5fc575 100644
--- a/deploy/adapters/ansible/roles/database/templates/replica.js
+++ b/deploy/adapters/ansible/roles/database/templates/replica.js
@@ -1,7 +1,7 @@
config = { _id:"compass", members:[
{% for host in haproxy_hosts.values() %}
{% set pair = '%s:27017' % host %}
- {_id:{{ loop.index0 }},host:"{{ pair }}",priority:{{ haproxy_hosts|length - loop.index0 }}},
+ {_id:{{ loop.index0 }},host:"{{ pair }}",priority:{{ host_index[inventory_hostname] + 1 }}},
{% endfor %}
]
};