From 0524cb673fbd9ff31db79f885f4a319ec96e2cc3 Mon Sep 17 00:00:00 2001 From: "carey.xu" Date: Mon, 11 Jan 2016 15:47:14 +0800 Subject: bugfix: mongodb's priority should consistent with keepalived for failover JIRA: COMPASS-260 Change-Id: I29e6e21e514e6dab5643e5558c81b851a4442e54 Signed-off-by: carey.xu (cherry picked from commit da39c5ca863f133f6bbf978dce10b9d21b6b5399) --- deploy/adapters/ansible/roles/database/templates/replica.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} ] }; -- cgit 1.2.3-korg