summaryrefslogtreecommitdiff
path: root/jstests/auth/security_token.js
diff options
context:
space:
mode:
authorjannaerin <golden.janna@gmail.com>2022-10-17 22:08:07 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-17 22:42:21 +0000
commit7b81482e9ca20b812d5642bf469af13cc8e18203 (patch)
tree2e2a4c973e39f4c966b1e07e2f01dbb4fb32eb99 /jstests/auth/security_token.js
parent78adcf8fb1a111a37b843bb62606418c307c8e13 (diff)
downloadmongo-7b81482e9ca20b812d5642bf469af13cc8e18203.tar.gz
SERVER-62395 Use tid field to create namespace on non-txn commands during oplog application
Diffstat (limited to 'jstests/auth/security_token.js')
-rw-r--r--jstests/auth/security_token.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/jstests/auth/security_token.js b/jstests/auth/security_token.js
index b41c175545a..7de1a5fbb2b 100644
--- a/jstests/auth/security_token.js
+++ b/jstests/auth/security_token.js
@@ -154,16 +154,13 @@ function runTests(enabled) {
MongoRunner.stopMongod(standalone);
}
- // TODO SERVER-62395: Uncomment this test once we use tid to construct namespace when applying
- // non-txn commands.
- /* {
+ {
const rst = new ReplSetTest({nodes: 2, nodeOptions: opts});
rst.startSet({keyFile: 'jstests/libs/key1'});
rst.initiate();
runTest(rst.getPrimary(), enabled, rst);
rst.stopSet();
}
- */
// Do not test sharding since mongos must have an authenticated connection to
// all mongod nodes, and this conflicts with proxying tokens which we'll be
// performing in mongoq.