diff options
author | samantharitter <samantha.ritter@10gen.com> | 2017-10-06 15:12:40 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2017-10-11 00:52:09 -0400 |
commit | 45d35fe3fcefefe1282b8e0dfc8cd76cb247951d (patch) | |
tree | 6643f175807ae1c20902885846d29e888127f9a6 /jstests/sslSpecial/SERVER-26369.js | |
parent | 8b3694d704d4c472adba87e8fb0827372324c215 (diff) | |
download | mongo-45d35fe3fcefefe1282b8e0dfc8cd76cb247951d.tar.gz |
SERVER-31184 Make servers automatically set up config.system.sessions
Diffstat (limited to 'jstests/sslSpecial/SERVER-26369.js')
-rw-r--r-- | jstests/sslSpecial/SERVER-26369.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/jstests/sslSpecial/SERVER-26369.js b/jstests/sslSpecial/SERVER-26369.js index 96dd0d15183..065f646c3fc 100644 --- a/jstests/sslSpecial/SERVER-26369.js +++ b/jstests/sslSpecial/SERVER-26369.js @@ -1,11 +1,12 @@ -'use strict'; +// Checking UUID consistency involves talking to a shard node, which in this test is shutdown +TestData.skipCheckingUUIDsConsistentAcrossCluster = true; + (function() { + 'use strict'; + load("jstests/ssl/libs/ssl_helpers.js"); - var st = new ShardingTest({ - shards: {rs0: {nodes: 1}}, - mongos: 1, - }); + var st = new ShardingTest({shards: {rs0: {nodes: 1}}}); st.rs0.restart(0, { sslMode: "allowSSL", |