summaryrefslogtreecommitdiff
path: root/jstests/sharding/csrs_upgrade_during_migrate.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/csrs_upgrade_during_migrate.js')
-rw-r--r--jstests/sharding/csrs_upgrade_during_migrate.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/sharding/csrs_upgrade_during_migrate.js b/jstests/sharding/csrs_upgrade_during_migrate.js
index 1f0da2dc34d..45177857ea7 100644
--- a/jstests/sharding/csrs_upgrade_during_migrate.js
+++ b/jstests/sharding/csrs_upgrade_during_migrate.js
@@ -34,10 +34,10 @@ var st;
};
var addSlaveDelay = function(rst) {
- var conf = rst.getMaster().getDB('local').system.replset.findOne();
+ var conf = rst.getPrimary().getDB('local').system.replset.findOne();
conf.version++;
var secondaryIndex = 0;
- if (conf.members[secondaryIndex].host === rst.getMaster().host) {
+ if (conf.members[secondaryIndex].host === rst.getPrimary().host) {
secondaryIndex = 1;
}
conf.members[secondaryIndex].priority = 0;