summaryrefslogtreecommitdiff
path: root/jstests/ssl
diff options
context:
space:
mode:
authorShane Harvey <shane.harvey@mongodb.com>2016-04-14 13:44:53 -0400
committerShane Harvey <shane.harvey@mongodb.com>2016-04-18 14:11:13 -0400
commit8432d0bb4809e6547338771a365f3b5340b79024 (patch)
tree2e20ba57da8e3232647e3f19ee0d57b8fdfaaa81 /jstests/ssl
parente96fc394af9d694a86e6e5d5081bd3f9b4698bae (diff)
downloadmongo-8432d0bb4809e6547338771a365f3b5340b79024.tar.gz
SERVER-6823 Rename --tryClusterAuth to --transitionToAuth
Diffstat (limited to 'jstests/ssl')
-rw-r--r--jstests/ssl/upgrade_allowssl_noauth_to_x509_ssl.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/ssl/upgrade_allowssl_noauth_to_x509_ssl.js b/jstests/ssl/upgrade_allowssl_noauth_to_x509_ssl.js
index 4932014302f..e7ca25b7304 100644
--- a/jstests/ssl/upgrade_allowssl_noauth_to_x509_ssl.js
+++ b/jstests/ssl/upgrade_allowssl_noauth_to_x509_ssl.js
@@ -14,10 +14,10 @@ load('jstests/ssl/libs/ssl_helpers.js');
var noAuthAllowSSL = Object.merge(allowSSL, {noauth: ''});
// Undefine the flags we're replacing, otherwise upgradeSet will keep old values.
- var tryX509preferSSL =
- Object.merge(preferSSL, {noauth: undefined, tryClusterAuth: '', clusterAuthMode: 'x509'});
+ var tryX509preferSSL = Object.merge(
+ preferSSL, {noauth: undefined, transitionToAuth: '', clusterAuthMode: 'x509'});
var x509RequireSSL =
- Object.merge(requireSSL, {tryClusterAuth: undefined, clusterAuthMode: 'x509'});
+ Object.merge(requireSSL, {transitionToAuth: undefined, clusterAuthMode: 'x509'});
var rst = new ReplSetTest({name: 'noauthSet', nodes: 3, nodeOptions: noAuthAllowSSL});
rst.startSet();