summaryrefslogtreecommitdiff
path: root/jstests/ssl
diff options
context:
space:
mode:
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();