Files
mongo/jstests/auth/bulk_write_sharded_cluster.js
seanzimm 65b881d228 SERVER-52419 Enable feature flag for bulkWrite (#18965)
GitOrigin-RevId: fbb748674d551c1d1745955f081445c1f28bfd51
2024-02-20 19:05:27 +00:00

14 lines
321 B
JavaScript

/*
* Auth test for the bulkWrite command on sharded clusters.
* @tags: [
* requires_sharding,
* requires_fcv_80
* ]
*/
import {runTest} from "jstests/auth/lib/bulk_write_base.js";
const st =
new ShardingTest({shards: 1, mongos: 1, config: 1, other: {keyFile: 'jstests/libs/key1'}});
runTest(st.s0);
st.stop();