Files
mongo/jstests/sharding/kill_op_overflow.js
2016-07-26 12:45:54 -04:00

12 lines
385 B
JavaScript

/**
* This test asserts that an illegal OpID passed to mongos' implementation of killOp results in a
* failure being propagated back to the client.
*/
(function() {
"use strict";
var st = new ShardingTest({name: "shard1", shards: 1, mongos: 1});
assert.commandFailed(
st.s.getDB("admin").runCommand({killOp: 1, op: "shard0000:99999999999999999999999"}));
})();